{"info":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","description":"<html><head></head><body><p>API In this document you will find all the API methods we provide along with explanations for parameters and response examples.</p>\n<p>API structure Endpoint:</p>\n<p><a href=\"https://api.businesscentral.dynamics.com/v2.0/tenant/environmentName/api/apiPublisher/entityName/apiVersion/companies(companyID)/endpoint\">https://api.businesscentral.dynamics.com/v2.0/tenant/environmentName/api/apiPublisher/entityName/apiVersion/companies(companyID)/endpoint</a></p>\n<p><strong>HTTPS:</strong> Our API requires HTTPS. We'll respond with an appropriate error if you're not using it.</p>\n<p><strong>Request Format:</strong> HTTP GET and POST (Content-Type: application/json)</p>\n<p><strong>Response Format:</strong> JSON</p>\n<h2 id=\"oauth20\">OAuth2.0</h2>\n<p>OAuth 2.0 is the industry-standard protocol for authorization. OAuth 2.0 focuses on client developer simplicity while providing specific authorization flows for web applications, desktop applications, mobile phones, and living room devices.</p>\n<p>OAuth 2.0 is a protocol that allows your application, after granted the correct authorization, to request (create/read/update/delete) This without getting and/or storing their password.</p>\n<h2 id=\"api-credentials\">API credentials</h2>\n<p>Description: To enable connection to our API and access to client data, as well as perform payment operations, the following credentials are required:</p>\n<ul>\n<li><p>Azure Directory ID of the client (<code>Tenant</code>):</p>\n<ul>\n<li><p>Description: Unique identifier of the client's Azure directory.</p>\n</li>\n<li><p>Format: Alphanumeric string.</p>\n</li>\n<li><p>Example: \"abcdefgh-1234-5678-ijkl-mnopqrstuvwx\"</p>\n</li>\n</ul>\n</li>\n<li><p>Application ID registered in the client's Azure (<code>app_id</code>):</p>\n<ul>\n<li><p>Description: Unique identifier of the application registered in the client's Azure directory.</p>\n</li>\n<li><p>Format: Alphanumeric string.</p>\n</li>\n<li><p>Example: \"12345678-abcd-efgh-ijkl-9876543210ab\"</p>\n</li>\n</ul>\n</li>\n<li><p>Value of the Azure application's secret (<code>secret_value</code>):</p>\n<ul>\n<li><p>Description: Secret key associated with the application registered in the client's Azure for authentication purposes.</p>\n</li>\n<li><p>Format: Alphanumeric string.</p>\n</li>\n<li><p>Example: \"s3cr3t0p4ssw0rd\"</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Note: These credentials are necessary to establish a connection with our API and access client data, as well as perform payment operations. Please ensure to keep these credentials confidential and do not share them with any other entities or individuals involved.</p>\n<h3 id=\"connecting-to-the-api\">Connecting to the API</h3>\n<p>You can authenticate requests using an OAuth access token.</p>\n<p>Description: To obtain the access token required for connecting to the API, two pieces of information are needed:</p>\n<ul>\n<li><p>Access Token URL:</p>\n<ul>\n<li><p>Description: The URL where the access token can be obtained.</p>\n</li>\n<li><p>Example: \"<a href=\"https://\">https://login.microsoftonline.com/tenant/oauth2/v2.0/token\"</a></p>\n</li>\n</ul>\n</li>\n<li><p>Scope:</p>\n<ul>\n<li><p>Description: The scope parameter defines the level of access requested for the API.</p>\n</li>\n<li><p>Example: \"<a href=\"https://\">https://api.businesscentral.dynamics.com/.default\"</a></p>\n</li>\n</ul>\n</li>\n</ul>\n<p>Note: To obtain the access token, you will need to make a request to the Access Token URL, providing the necessary credentials and specifying the desired scope. The Access Token URL contains the placeholder, which should be replaced with the actual tenant ID or directory ID of the client. The resulting URL will be used to retrieve the access token required for authentication and authorization when making API calls.</p>\n<p>HTTP methods The norayhtlBooking API accepts the standard HTTP methods: GET, POST, PATCH, PUT, and DELETE.</p>\n<p>Make a GET request to retrieve data. GET requests will never cause an update or change to your data because they’re safe and idempotent. Use a POST request to send data to the client to perform specific actions, such as recording payment lines. For example, make a POST request to the corresponding endpoint, providing the necessary data in the request body. This allows you to send the required information to the client program, prompting it to execute the desired action, such as recording payment lines, using the provided data.</p>\n<h3 id=\"standar-api-calls\">Standar API calls</h3>\n<p>Business central standar API calls are documented in: <a href=\"https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/\">https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/</a></p>\n<p>The documentation itself contains calls like <em><strong>Get company</strong></em>, that will be necessary to know the company ID (<em><strong>companyID</strong></em>) that is used in our API calls.</p>\n<h3 id=\"headers\">Headers</h3>\n<p>To always get English responses regardless of the client configuration, it is neccessary to add this header:<br><strong>Key</strong>: Accept-Language<br><strong>Value</strong>: en-US</p>\n<p>When the request is a POST the header needed is:</p>\n<p><strong>Key</strong>: Content-Type<br><strong>Value</strong>: application/json</p>\n<p>When the request is PATCH or DELETE the POST header is needed plus the header below:</p>\n<p><strong>Key</strong>: If-Match<br><strong>Value</strong>: *</p>\n<h3 id=\"webhooks\">Webhooks</h3>\n<p>Business central have webhooks integration, to know more about it the official microsoft documentation is in the link below:</p>\n<p><a href=\"https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/dynamics-subscriptions\">https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/dynamics-subscriptions</a></p>\n<p>The default Webhooks URL is: https://{businesscentralPrefix}/api/v2.0/subscriptions</p>\n<p>To implement Webhooks with our APIs, the default URL is: https://{businesscentralPrefix}/api/{APIPublisher}/{APIGroup}/{APIVersion}/subscriptions</p>\n<h3 id=\"things-to-take-into-account\"><strong>Things to take into account</strong></h3>\n<p>The tenant and environment name values vary according to the server, in a link like this:<br><a href=\"https://api.businesscentral.dynamics.com/v2.0/\">https://api.businesscentral.dynamics.com/v2.0/</a>12345678-90ab-cdef-1234-567890abcdef/ServerName/api/&lt; api publisher &gt;/<br>The <em><strong>tenant</strong></em> would be 12345678-90ab-cdef-1234-567890abcdefand <em><strong>environment name</strong></em> would be ServerName.</p>\n<p>The ID specified in the different functions like bookingStatus or checkout refers to the SystemID of the required data.</p>\n<p>For example:<br><a href=\"https://api.businesscentral.dynamics.com/v2.0/\">https://api.businesscentral.dynamics.com/v2.0/</a>&lt; tenant &gt;/&lt; environment name &gt;/api/&lt; api publisher &gt;/room/v1.0/companies(&lt; company ID &gt;)/lockRooms( &lt; Room ID &gt; )<br>The Room ID is the System ID of the selected Room.</p>\n<h3 id=\"api-filters\">API Filters</h3>\n<p>In the GET functions you can apply certain filters to access the information more accurately.</p>\n<p>The table below contains all the operators that can be use and the ones not supported:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Operator</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Example</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Comparison operators</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>eq</td>\n<td>Equal</td>\n<td>?$filter=no eq ‘RH02032B'</td>\n</tr>\n<tr>\n<td>ne</td>\n<td>Not equal</td>\n<td>?$filter=no ne 'RH02032B'</td>\n</tr>\n<tr>\n<td>gt</td>\n<td>Greater than</td>\n<td>?$filter=adults gt 1</td>\n</tr>\n<tr>\n<td>ge</td>\n<td>Greater than or equal</td>\n<td>?$filter=adults ge 1</td>\n</tr>\n<tr>\n<td>lt</td>\n<td>Less than</td>\n<td>?$filter=adults lt 3</td>\n</tr>\n<tr>\n<td>le</td>\n<td>Less than or equal</td>\n<td>?$filter=adults le 2</td>\n</tr>\n<tr>\n<td>Logical operators</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>and</td>\n<td>Logical and</td>\n<td>?$filter=no eq ‘RH02032B' and adults gt 1</td>\n</tr>\n<tr>\n<td>or</td>\n<td>Logical or</td>\n<td>?$filter=no eq ‘RH02032B' or no eq ‘RH02045C'</td>\n</tr>\n<tr>\n<td>not</td>\n<td>Logical negation</td>\n<td>Not supported</td>\n</tr>\n<tr>\n<td>Grouping</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>()</td>\n<td>Precedence grouping</td>\n<td>?$filter=(no eq ‘RH02032B' or name eq 'ClientName') and (adults gt 1 and children lt 2)</td>\n</tr>\n<tr>\n<td>Comparison operators</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>contains</td>\n<td>Search for substring</td>\n<td>?$filter=contains(name, ‘ues’)</td>\n</tr>\n<tr>\n<td>endswith</td>\n<td>Test if first string ends with second string</td>\n<td>?$filter=endswith(email,’guestmail.com’)</td>\n</tr>\n<tr>\n<td>startswith</td>\n<td>Test if first string starts with second string</td>\n<td>?$filter=startswith(email,'gue')</td>\n</tr>\n<tr>\n<td>concat</td>\n<td>Returns a string that appends the second parameter to the first.</td>\n<td>Not supported</td>\n</tr>\n</tbody>\n</table>\n</div><p>For more details you can visit the Microsoft filtering documentation</p>\n<p><a href=\"https://\">https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-connect-apps-filtering</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"29402044","collectionId":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","publishedId":"2s9YCAQ9rx","public":true,"customColor":{"top-bar":"6689CC","right-sidebar":"404040","highlight":"F4B237"},"publishDate":"2024-01-30T10:07:24.000Z"},"item":[{"name":"Noray Htl","item":[{"name":"booking","item":[{"name":"bookings","id":"aadcfb2c-fe12-4c8f-8b4d-b80fc6eedcf1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings","description":"<p>System table: Booking HTL<br />Page in Business Central: Bookings HTL  </p>\n<p>Returns the list of bookings with its associated data.</p>\n<p>It is possible to expand its content with the method $expand, with guests, rating(bookingValues), hotel item entries (hotelItemEntries) and room.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>Specifies the booking number.</td>\n</tr>\n<tr>\n<td>arrivalDate</td>\n<td>Date</td>\n<td>Specifies the arrival date of the booking.</td>\n</tr>\n<tr>\n<td>arrivalTime</td>\n<td>Date</td>\n<td>Specifies the arrival time of the booking.</td>\n</tr>\n<tr>\n<td>departureDate</td>\n<td>Date</td>\n<td>Specifies the departure date of the booking.</td>\n</tr>\n<tr>\n<td>departureTime</td>\n<td>Date</td>\n<td>Specifies the departure time of the booking.</td>\n</tr>\n<tr>\n<td>bookingDate</td>\n<td>Date</td>\n<td>Specifies the booking date of the booking.</td>\n</tr>\n<tr>\n<td>cancellationDate</td>\n<td>Date</td>\n<td>Specifies the cancellation date of the booking.</td>\n</tr>\n<tr>\n<td>cancellationTime</td>\n<td>Time</td>\n<td>Specifies the cancellation time of the booking.</td>\n</tr>\n<tr>\n<td>checkInDate</td>\n<td>Date</td>\n<td>Specifies the date on which the booking was check-in.</td>\n</tr>\n<tr>\n<td>checkInTime</td>\n<td>Date</td>\n<td>Specifies the time on which the booking was check-in.</td>\n</tr>\n<tr>\n<td>checkOutTime</td>\n<td>Date</td>\n<td>Specifies the time on which the booking was check-out.</td>\n</tr>\n<tr>\n<td>nights</td>\n<td>Decimal</td>\n<td>Specifies the number of nights of the booking.</td>\n</tr>\n<tr>\n<td>bookingToCustomerNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer code of the booking.</td>\n</tr>\n<tr>\n<td>billToCustomerNo</td>\n<td>Code[20]</td>\n<td>Specifies the name of the customer to whom the booking will be billed.</td>\n</tr>\n<tr>\n<td>voucher</td>\n<td>Code[50]</td>\n<td>Specifies the customer voucher number of the reservation. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>hotelVoucher</td>\n<td>Code[50]</td>\n<td>Specifies the channel voucher in origin. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the allotment code used in the booking.</td>\n</tr>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td>Specifies the rate code that applies to the booking.</td>\n</tr>\n<tr>\n<td>bookingGroupNo</td>\n<td>Code[20]</td>\n<td>Specifies the group booking code in case of belonging to one.</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room number assigned to the booking.</td>\n</tr>\n<tr>\n<td>roomCleanStatus</td>\n<td>Text</td>\n<td></td>\n</tr>\n<tr>\n<td>bookingStatus</td>\n<td>Option</td>\n<td>Specifies the booking status; Booking,Pencil Booking,Occupancy,Checkout,Cancelled,No-Show</td>\n</tr>\n<tr>\n<td>bookedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of booked room-</td>\n</tr>\n<tr>\n<td>assignedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of room assigned.</td>\n</tr>\n<tr>\n<td>roomTypeUpselling</td>\n<td>Code[10]</td>\n<td>Specifies the type of room billed. If the value of this field is different from the type of booking room it will indicate that there has been a UPGRADE, the upgrade charge must be managed by the user from additional services. (This field does not affect calculation prices).</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Specifies the number of adults in the booking.</td>\n</tr>\n<tr>\n<td>adultsInExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the number of adults in Additional Bed.</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Decimal</td>\n<td>Specifies the number of children in the booking.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the number of babies in the booking.</td>\n</tr>\n<tr>\n<td>boardBasis</td>\n<td>Code[10]</td>\n<td>Specifies the board basis type used by the booking.</td>\n</tr>\n<tr>\n<td>boardBasisUpselling</td>\n<td>Code[10]</td>\n<td>Specifies the type of upgraded board basis. If the value of this field is different from the type of booked board basisit will indicate that there has been a UPGRADE, the upgrade charge must be managed by the user from additional services. (This field does not affect calculation prices).</td>\n</tr>\n<tr>\n<td>invoicedBoardBasis</td>\n<td>Code[10]</td>\n<td>Specifies the board basis type used in invoice.</td>\n</tr>\n<tr>\n<td>contactBookingName</td>\n<td>Text[50]</td>\n<td>Specifies the name of the contact person for the booking.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Text[100]</td>\n<td>Specifies the name of the customer of the booking.</td>\n</tr>\n<tr>\n<td>name2</td>\n<td>Text[100]</td>\n<td>Specifies the contact name of the booking.</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Text[50]</td>\n<td>Specifies the contact postal address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>Text[50]</td>\n<td>Specifies a second address.</td>\n</tr>\n<tr>\n<td>county</td>\n<td>Text[30]</td>\n<td>Specifies the province.</td>\n</tr>\n<tr>\n<td>postCode</td>\n<td>Code[20]</td>\n<td>Specifies the postal code.</td>\n</tr>\n<tr>\n<td>countryRegion</td>\n<td>Text[30]</td>\n<td>Specifies the country/region.</td>\n</tr>\n<tr>\n<td>contactNo</td>\n<td>Code[20]</td>\n<td>Specifies how many bookings filtered by check out Rec.status have been done by the customer.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Text[30]</td>\n<td>Specifies the population.</td>\n</tr>\n<tr>\n<td>languageNo</td>\n<td>Code[10]</td>\n<td>Specifies the language code.</td>\n</tr>\n<tr>\n<td>originatingNo</td>\n<td>Code[10]</td>\n<td>Specifies the origin code of the booking.</td>\n</tr>\n<tr>\n<td>mobilePhoneNo</td>\n<td>Text[30]</td>\n<td>Specifies the contact mobile phone number.</td>\n</tr>\n<tr>\n<td>phoneNo</td>\n<td>Text[30]</td>\n<td>Specifies the contact phone number.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Text[80]</td>\n<td>Specifies the email address.</td>\n</tr>\n<tr>\n<td>stayTotalAmount</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the stay.</td>\n</tr>\n<tr>\n<td>totalAmountValue</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>totalAdditionalServices</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the additional services of the booking.</td>\n</tr>\n<tr>\n<td>totalPaxExclBabies</td>\n<td>Decimal</td>\n<td>Specifies the total number of people in the group, excluding babies.</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Code[20]</td>\n<td>Specifies the origin of the booking.</td>\n</tr>\n<tr>\n<td>market</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>meetUs</td>\n<td>Code[20]</td>\n<td>Specifies how the customer of the booking met us.</td>\n</tr>\n<tr>\n<td>salesChannel</td>\n<td>Code[20]</td>\n<td>Specifies the sales channel for which the booking was received.</td>\n</tr>\n<tr>\n<td>onlineBooking</td>\n<td>boolean</td>\n<td>Specifies if the booking is of OnLine origin.</td>\n</tr>\n<tr>\n<td>onlineBookingSync</td>\n<td>boolean</td>\n<td>Specifies if the booking is synchronized.</td>\n</tr>\n<tr>\n<td>onlineChannelIDBooking</td>\n<td>Code[20]</td>\n<td>Specifies the channel ID of the booking.</td>\n</tr>\n<tr>\n<td>onlineChannelIDRoom</td>\n<td>Code[20]</td>\n<td>Specifies the room ID of the booking.</td>\n</tr>\n<tr>\n<td>onlineBookingModifdate</td>\n<td>Date</td>\n<td>Specifies the date of modification of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingModifTime</td>\n<td>Date</td>\n<td>Specifies the time of modification of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingCancelDate</td>\n<td>Date</td>\n<td>Specifies the cancellation date of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingCancelTime</td>\n<td>Date</td>\n<td>Specifies the time of cancellation of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingPaymentNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>onlineBookingServiceNo</td>\n<td>Integer</td>\n<td>Specifies the ID of the online booking service.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"cad73bee-a06d-411b-96b5-608d7ced7a65","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d0fadb3b-4075-aaac-a2d3-b4fb81b450f0"},{"key":"mise-correlation-id","value":"732a95e5-205b-49e8-96ca-4dbb6e1730e9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f863d8e7-8887-4d71-8f07-c7e80abaa7e6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 10:58:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        }\n    ]\n}"},{"id":"85c52cc4-0955-40cf-80d3-6f199701e13e","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"1a74c886-8238-40e1-8a4a-b4160d5e9c8a","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"},{"id":"1adec70a-afe1-4789-a3a7-a3a9cb1c1845","name":"Expand room","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=room","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"room"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d5f55994-577d-ac5f-cdd9-9165e367f7f3"},{"key":"mise-correlation-id","value":"75428b58-d154-4b66-9034-913a2c2d3aa3"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"591d12da-93aa-43aa-9ead-932d90be0ce6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Mon, 31 Jul 2023 08:15:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"room\": {\n                \"@odata.etag\": \"W/\\\"JzE5OzgzNzQyNTk2NTgyMTgyMzQwMTgxOzAwOyc=\\\"\",\n                \"roomNo\": \"204\",\n                \"systemId\": \"cb1cdf09-2629-ed11-97e8-00224882e1a5\",\n                \"description\": \"204\",\n                \"roomType\": \"JSUITE\",\n                \"class\": \"real\",\n                \"status\": \"Undone\",\n                \"block\": \"\",\n                \"floorNo\": \"\",\n                \"excludedPlanning\": false,\n                \"latestRevisionDate\": \"2022-08-31\",\n                \"roomJoined\": \"\",\n                \"divertedValue\": \"Value in Source\",\n                \"detourCustomerTarget\": \"\",\n                \"detourDepositPaymentMethod\": \"\",\n                \"detourHotelName\": \"\",\n                \"detourSameVATRegistration\": false,\n                \"attribute1\": \"QUEEN SIZE\",\n                \"attribute2\": \"GRANDE \",\n                \"attribute3\": \"SI\",\n                \"attribute4\": \"SI\",\n                \"attribute5\": \"BAÑERA HIDROMASAJE\"\n            }\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"room\": {\n                \"@odata.etag\": \"W/\\\"JzE5OzYwMTU2OTc1NTgxODgwODQyMjgxOzAwOyc=\\\"\",\n                \"roomNo\": \"302\",\n                \"systemId\": \"8d59c8e6-2629-ed11-97e8-00224882e1a5\",\n                \"description\": \"302\",\n                \"roomType\": \"DBL\",\n                \"class\": \"real\",\n                \"status\": \"Undone\",\n                \"block\": \"\",\n                \"floorNo\": \"\",\n                \"excludedPlanning\": false,\n                \"latestRevisionDate\": \"0001-01-01\",\n                \"roomJoined\": \"\",\n                \"divertedValue\": \"Value in Source\",\n                \"detourCustomerTarget\": \"\",\n                \"detourDepositPaymentMethod\": \"\",\n                \"detourHotelName\": \"\",\n                \"detourSameVATRegistration\": false,\n                \"attribute1\": \"TWIN BED\",\n                \"attribute2\": \"SIN BALCÓN\",\n                \"attribute3\": \"NO\",\n                \"attribute4\": \"SI\",\n                \"attribute5\": \"PLATO DUCHA\"\n            }\n        }\n    ]\n}"},{"id":"a0832301-42df-4174-9be3-9055a71a3547","name":"Expand comments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings?$expand=Comments","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings"],"query":[{"key":"$expand","value":"Comments"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(af9287a9-c938-ed11-97e8-000d3a398287)/bookings\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDYzMjk0OTI0NDUxNDcxNzk0MTswMDsn\\\"\",\r\n            \"systemId\": \"adf55d11-7b9f-f011-b41a-7ced8d2bdafb\",\r\n            \"no\": \"RH0000578\",\r\n            \"bookingDate\": \"2022-08-14\",\r\n            \"arrivalDate\": \"2022-08-16\",\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureDate\": \"2022-08-17\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"checkInDate\": \"0001-01-01\",\r\n            \"checkInTime\": \"00:00:00\",\r\n            \"checkOutTime\": \"00:00:00\",\r\n            \"cancellationDate\": \"0001-01-01\",\r\n            \"cancellationTime\": \"00:00:00\",\r\n            \"nights\": 1,\r\n            \"bookingToCustomerNo\": \"JET2HOLIDAYS\",\r\n            \"billToCustomerNo\": \"JET2HOLIDAYS\",\r\n            \"voucher\": \"\",\r\n            \"hotelVoucher\": \"\",\r\n            \"allotmentNo\": \"JET2HOLIDAYS\",\r\n            \"rateNo\": \"JET2HOLIDAYS\",\r\n            \"bookingGroupNo\": \"\",\r\n            \"roomNo\": \"\",\r\n            \"roomCleanStatus\": \"Undone\",\r\n            \"bookingStatus\": \"Booking\",\r\n            \"bookedRoomType\": \"SUITE\",\r\n            \"assignedRoomType\": \"SUITE\",\r\n            \"roomTypeUpselling\": \"SUITE\",\r\n            \"adults\": 2,\r\n            \"adultsInExtraBed\": 0,\r\n            \"children\": 0,\r\n            \"babies\": 0,\r\n            \"boardBasis\": \"MP\",\r\n            \"boardBasisUpselling\": \"MP\",\r\n            \"invoicedBoardBasis\": \"MP\",\r\n            \"contactBookingName\": \"\",\r\n            \"name\": \"Juan Luis Alfonso\",\r\n            \"name2\": \"\",\r\n            \"address\": \"\",\r\n            \"address2\": \"\",\r\n            \"county\": \"\",\r\n            \"postCode\": \"\",\r\n            \"countryRegion\": \"\",\r\n            \"contactNo\": \"\",\r\n            \"city\": \"\",\r\n            \"languageNo\": \"\",\r\n            \"originatingNo\": \"\",\r\n            \"mobilePhoneNo\": \"\",\r\n            \"phoneNo\": \"\",\r\n            \"email\": \"\",\r\n            \"stayTotalAmount\": 200,\r\n            \"totalAmountValue\": 0,\r\n            \"totalAdditionalServices\": 0,\r\n            \"totalPaxExclBabies\": 2,\r\n            \"source\": \"\",\r\n            \"market\": \"\",\r\n            \"meetUs\": \"\",\r\n            \"salesChannel\": \"JET2\",\r\n            \"bookingNotes\": \"\",\r\n            \"bookingSegment\": \"\",\r\n            \"onlineBooking\": true,\r\n            \"onlineBookingSync\": false,\r\n            \"onlineChannelIDBooking\": \"\",\r\n            \"onlineChannelIDRoom\": \"\",\r\n            \"onlineBookingModifdate\": \"2025-10-02\",\r\n            \"onlineBookingModifTime\": \"12:33:03.823\",\r\n            \"onlineBookingCancelDate\": \"0001-01-01\",\r\n            \"onlineBookingCancelTime\": \"00:00:00\",\r\n            \"onlineBookingPaymentNo\": 1,\r\n            \"onlineBookingServiceNo\": 0,\r\n            \"systemCreatedAt\": \"2025-10-02T10:32:18.67Z\",\r\n            \"lastModifiedDateTime\": \"2025-10-09T09:15:51.497Z\",\r\n            \"secretCode\": \"\",\r\n            \"comments\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzIwOzE3NzgyOTM0MDk0NzU4NTc3NDM4MTswMDsn\\\"\",\r\n                    \"systemId\": \"6bd2a7a8-8baa-f011-bbd0-7c1e5234fd98\",\r\n                    \"documentType\": \"Booking\",\r\n                    \"no\": \"RH0000578\",\r\n                    \"lineNo\": 10000,\r\n                    \"commentLineDate\": \"2025-10-16\",\r\n                    \"commentLineNo\": \"\",\r\n                    \"comment\": \"Esto es un comentario de ejemplo para la reserva numero RH0000578 a nombre de Daniel\\npara verificar que esta disponible a través de la API\",\r\n                    \"orderNo\": 0,\r\n                    \"alarmType\": \"_x0020_\",\r\n                    \"recordID\": \"\",\r\n                    \"commentTime\": \"13:28:46.537\",\r\n                    \"fromDate\": \"0001-01-01\",\r\n                    \"toDate\": \"0001-01-01\",\r\n                    \"department\": \"\",\r\n                    \"employeeNo\": \"\",\r\n                    \"employeeName\": \"\",\r\n                    \"place\": \"\",\r\n                    \"commentAction\": \"\",\r\n                    \"statusAction\": \"Open\",\r\n                    \"targetDepartment\": \"\",\r\n                    \"notificationSent\": false,\r\n                    \"userID\": \"DCASTRO\",\r\n                    \"systemCreatedAt\": \"2025-10-16T12:28:46.563Z\",\r\n                    \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\r\n                    \"systemModifiedAt\": \"2025-10-16T12:28:46.563Z\",\r\n                    \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"1a656daf-1770-4d63-b5b6-350ed9744256","name":"Expand guests","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=guests","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"guests"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d0fadb3b-4075-aaac-a2d3-b4fb81b450f0"},{"key":"mise-correlation-id","value":"732a95e5-205b-49e8-96ca-4dbb6e1730e9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f863d8e7-8887-4d71-8f07-c7e80abaa7e6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 10:58:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"guests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ5ODkzNzEzNjY4NTg2ODg5MzExOzAwOyc=\\\"\",\n                    \"systemId\": \"a43df681-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000028\",\n                    \"name\": \"Client Name\",\n                    \"firstName\": \"Client\",\n                    \"middleName\": \"\",\n                    \"surname\": \"Name\",\n                    \"age\": 52,\n                    \"sex\": \"Male\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"123456789\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"12345678A\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"guest@guestmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"114\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"LC0000X\",\n                    \"loyaltyCardType\": \"SILVER\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"REP\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 1,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2022-10-14T11:00:59.617Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsGuests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzkxOTExODIyODAyOTg3NDgwMTswMDsn\\\"\",\n                    \"systemId\": \"5a1d93b6-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000029\",\n                    \"name\": \"Client Name Two\",\n                    \"firstName\": \"Client\",\n                    \"middleName\": \"Name\",\n                    \"surname\": \"Two\",\n                    \"age\": 52,\n                    \"sex\": \"Female\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"123456789\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"12345678B\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"guest@guestmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"111\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"\",\n                    \"loyaltyCardType\": \"\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 1,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2022-11-07T08:06:13.087Z\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"2af85b67-488f-4319-80b4-641fec767ab3","name":"Expand booking value","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=bookingValues","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"bookingValues"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"6da33d23-c355-16d4-1e8c-b71e670b279e"},{"key":"mise-correlation-id","value":"7ccbe0f3-97a2-4e2a-86c9-84574806549d"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"35257d9d-4a74-42b0-be34-e1faceab1655"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:30:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNjU2NjE5MjkwMzU0OTU1MTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"82f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 180,\n                    \"dailyGrossPriceWithoutTax\": 180,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 153,\n                    \"netWithoutTax\": 153,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 180,\n                    \"meanPriceWithoutTax\": 180,\n                    \"dailyPriceWithTax\": 180,\n                    \"dailyPriceWithoutTax\": 180,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 27,\n                    \"discountAmountWithoutTax\": 27,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 180,\n                    \"totalWithoutTax\": 180,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.393Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEzNzY2OTEyNjA1MzU5OTMxMzgzMTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"83f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 80,\n                    \"dailyGrossPriceWithoutTax\": 80,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 68,\n                    \"netWithoutTax\": 68,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 80,\n                    \"meanPriceWithoutTax\": 80,\n                    \"dailyPriceWithTax\": 80,\n                    \"dailyPriceWithoutTax\": 80,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 12,\n                    \"discountAmountWithoutTax\": 12,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 80,\n                    \"totalWithoutTax\": 80,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.41Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzUwNjgwNDA2ODQwMjAyMDE5OTUxOzAwOyc=\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"1cc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 70,\n                    \"dailyGrossPriceWithoutTax\": 70,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 59.5,\n                    \"netWithoutTax\": 59.5,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 70,\n                    \"meanPriceWithoutTax\": 70,\n                    \"dailyPriceWithTax\": 70,\n                    \"dailyPriceWithoutTax\": 70,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 10.5,\n                    \"discountAmountWithoutTax\": 10.5,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 70,\n                    \"totalWithoutTax\": 70,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.37Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzcyNjQwODgwNzU1MTMxNTQ0NzE7MDA7Jw==\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"1dc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 40,\n                    \"dailyGrossPriceWithoutTax\": 40,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 34,\n                    \"netWithoutTax\": 34,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 40,\n                    \"meanPriceWithoutTax\": 40,\n                    \"dailyPriceWithTax\": 40,\n                    \"dailyPriceWithoutTax\": 40,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 6,\n                    \"discountAmountWithoutTax\": 6,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 40,\n                    \"totalWithoutTax\": 40,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.417Z\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"414b015d-8fe1-4ee6-8610-fafc5bbaf00b","name":"Expand hotel Item Entries","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=hotelItemEntries","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"hotelItemEntries"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"6da33d23-c355-16d4-1e8c-b71e670b279e"},{"key":"mise-correlation-id","value":"7ccbe0f3-97a2-4e2a-86c9-84574806549d"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"35257d9d-4a74-42b0-be34-e1faceab1655"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:30:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTY4NjY3NjE2MDEzMDQ5MzMxOzAwOyc=\\\"\",\n            \"systemId\": \"ab787e77-6388-ee11-8178-6045bd962ddf\",\n            \"no\": \"No.1\",\n            \"arrivalDate\": \"2022-09-20\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-22\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"0001-01-01\",\n            \"checkInTime\": \"00:00:00\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 2,\n            \"bookingToCustomerNo\": \"9999997\",\n            \"billToCustomerNo\": \"9999997\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"1111111\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"101\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Booking\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"DBL\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"\",\n            \"contactNo\": \"\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"\",\n            \"email\": \"\",\n            \"stayTotalAmount\": 180,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"bookingNotes\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-11-21\",\n            \"onlineBookingModifTime\": \"11:51:05.42\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"lastModifiedDateTime\": \"2023-11-21T11:51:06.867Z\",\n            \"hotelItemEntries\": []\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA0Njk1MTUxMzIwNzY5ODIzMTswMDsn\\\"\",\n            \"systemId\": \"bd8a7c1f-2929-ed11-97e8-00224882e1a5\",\n            \"no\": \"No.2\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-25\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:18.763\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 25,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"202\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"FAM\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000026\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"113\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"\",\n            \"email\": \"client@mail.com\",\n            \"stayTotalAmount\": 136,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"bookingNotes\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-08-14\",\n            \"onlineBookingModifTime\": \"14:43:36.787\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"lastModifiedDateTime\": \"2023-08-14T13:43:36.787Z\",\n            \"hotelItemEntries\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzI2MTAwNTc2MDIyMjUxNTc3NTE7MDA7Jw==\\\"\",\n                    \"systemId\": \"d8dfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 16,\n                    \"postingDate\": \"2020-01-31\",\n                    \"documentNo\": \"HP0000003\",\n                    \"itemNo\": \"HAB\",\n                    \"itemGroup\": \"HAB\",\n                    \"additionalText\": \"\",\n                    \"unitPrice\": 80,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": 80,\n                    \"totalAmountExclTax\": 74.77,\n                    \"roomNo\": \"202\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.2\",\n                    \"guestFolioNo\": \"CH0000006\",\n                    \"guestFolioLineNo\": 10000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"FAM\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"113\",\n                    \"countryRegion\": \"ESP\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name\",\n                    \"itemDescription\": \"Habitación\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:16:07.78Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE2ODU4MzIwOTI4MzQ1MjY5NTA3MTswMDsn\\\"\",\n                    \"systemId\": \"d9dfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 17,\n                    \"postingDate\": \"2020-01-31\",\n                    \"documentNo\": \"HP0000003\",\n                    \"itemNo\": \"HAB\",\n                    \"itemGroup\": \"HAB\",\n                    \"additionalText\": \"Descuento total\",\n                    \"unitPrice\": -12,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": -12,\n                    \"totalAmountExclTax\": -11.22,\n                    \"roomNo\": \"202\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.2\",\n                    \"guestFolioNo\": \"CH0000006\",\n                    \"guestFolioLineNo\": 40000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"FAM\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"113\",\n                    \"countryRegion\": \"ESP\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name\",\n                    \"itemDescription\": \"Descuento total\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:16:07.84Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzEwMTA2ODU5MjQzNzgxMjA4NjgxOzAwOyc=\\\"\",\n                    \"systemId\": \"e6dfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 30,\n                    \"postingDate\": \"2020-01-31\",\n                    \"documentNo\": \"HP0000003\",\n                    \"itemNo\": \"PEN\",\n                    \"itemGroup\": \"PEN\",\n                    \"additionalText\": \"\",\n                    \"unitPrice\": 80,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": 80,\n                    \"totalAmountExclTax\": 74.76,\n                    \"roomNo\": \"202\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.2\",\n                    \"guestFolioNo\": \"CH0000006\",\n                    \"guestFolioLineNo\": 20000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"FAM\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"113\",\n                    \"countryRegion\": \"ESP\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name\",\n                    \"itemDescription\": \"PENSION\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:16:07.8Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzkxODQ5MTk1NzkyNDA4NzA5OTYxOzAwOyc=\\\"\",\n                    \"systemId\": \"e7dfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 31,\n                    \"postingDate\": \"2020-01-31\",\n                    \"documentNo\": \"HP0000003\",\n                    \"itemNo\": \"PEN\",\n                    \"itemGroup\": \"PEN\",\n                    \"additionalText\": \"Descuento total\",\n                    \"unitPrice\": -12,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": -12,\n                    \"totalAmountExclTax\": -11.21,\n                    \"roomNo\": \"202\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.2\",\n                    \"guestFolioNo\": \"CH0000006\",\n                    \"guestFolioLineNo\": 30000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"FAM\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"113\",\n                    \"countryRegion\": \"ESP\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name\",\n                    \"itemDescription\": \"Descuento total\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:16:07.817Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTM1NzU1MTkxMjY2ODMwMTQxOzAwOyc=\\\"\",\n            \"systemId\": \"54395a31-b22e-ed11-97e8-00224882e1a5\",\n            \"no\": \"No.3\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2023-09-06\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"08:55:22.207\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 371,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"102\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"DBL\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name 2\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"GBR\",\n            \"contactNo\": \"CO0000027\",\n            \"city\": \"\",\n            \"languageNo\": \"ENG\",\n            \"originatingNo\": \"GBR\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"client2@mail.com\",\n            \"stayTotalAmount\": 18819,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"bookingNotes\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-10-25\",\n            \"onlineBookingModifTime\": \"09:03:10.227\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"lastModifiedDateTime\": \"2023-10-25T08:03:10.227Z\",\n            \"hotelItemEntries\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzcyNzQwNTM2NjA0NjY3NjUzNzkxOzAwOyc=\\\"\",\n                    \"systemId\": \"cfdfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 7,\n                    \"postingDate\": \"2022-08-31\",\n                    \"documentNo\": \"HP0000002\",\n                    \"itemNo\": \"HAB\",\n                    \"itemGroup\": \"HAB\",\n                    \"additionalText\": \"\",\n                    \"unitPrice\": 100,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": 100,\n                    \"totalAmountExclTax\": 93.46,\n                    \"roomNo\": \"102\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.3\",\n                    \"guestFolioNo\": \"CH0000001\",\n                    \"guestFolioLineNo\": 10000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"DBL\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"GBR\",\n                    \"countryRegion\": \"GBR\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name 2\",\n                    \"itemDescription\": \"Habitación\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:12:16.143Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5Ozg0MjY1MDY3ODg2OTMyNzE3MjgxOzAwOyc=\\\"\",\n                    \"systemId\": \"d0dfd10e-963a-ee11-bdf5-000d3a3a6d84\",\n                    \"entryNo\": 8,\n                    \"postingDate\": \"2022-08-31\",\n                    \"documentNo\": \"HP0000003\",\n                    \"itemNo\": \"HAB\",\n                    \"itemGroup\": \"HAB\",\n                    \"additionalText\": \"Descuento total\",\n                    \"unitPrice\": -60,\n                    \"tax\": 7,\n                    \"lineDiscount\": 0,\n                    \"totalAmountInclTax\": -60,\n                    \"totalAmountExclTax\": -56.07,\n                    \"roomNo\": \"102\",\n                    \"employeeNo\": \"\",\n                    \"customerNo\": \"CL0000007\",\n                    \"bookingNo\": \"No.3\",\n                    \"guestFolioNo\": \"CH0000001\",\n                    \"guestFolioLineNo\": 100000,\n                    \"rateNo\": \"TAR1\",\n                    \"allotmentNo\": \"WEB\",\n                    \"bookedRoomType\": \"DBL\",\n                    \"assignedRoomType\": \"DBL\",\n                    \"boardBasisType\": \"Half Board\",\n                    \"adults\": 2,\n                    \"childrenRateA\": 0,\n                    \"childrenRateB\": 0,\n                    \"childrenRateC\": 0,\n                    \"children\": 0,\n                    \"babies\": 0,\n                    \"adultsInExtraBed\": 0,\n                    \"originatingNo\": \"GBR\",\n                    \"countryRegion\": \"GBR\",\n                    \"subagency\": \"\",\n                    \"bookingCompany\": \"\",\n                    \"postedExternalFinancial\": false,\n                    \"invoiceNo\": \"\",\n                    \"invoiceDate\": \"0001-01-01\",\n                    \"invoiceName\": \"Invoice Name 2\",\n                    \"itemDescription\": \"Descuento total\",\n                    \"taxIncluded\": true,\n                    \"lastModifiedDateTime\": \"2023-08-14T13:16:07.477Z\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"01c840db-d6aa-4392-9796-01e0ef751127","name":"Expand guest & booking values","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=guests,bookingValues","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"guests,bookingValues"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d0fadb3b-4075-aaac-a2d3-b4fb81b450f0"},{"key":"mise-correlation-id","value":"732a95e5-205b-49e8-96ca-4dbb6e1730e9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f863d8e7-8887-4d71-8f07-c7e80abaa7e6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 10:58:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsGuests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ5ODkzNzEzNjY4NTg2ODg5MzExOzAwOyc=\\\"\",\n                    \"systemId\": \"a43df681-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000028\",\n                    \"name\": \"Client Name\",\n                    \"firstName\": \"Client\",\n                    \"middleName\": \"\",\n                    \"surname\": \"Name\",\n                    \"age\": 52,\n                    \"sex\": \"Male\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"123456789\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"12345678A\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"guest@guestmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"114\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"LC0000X\",\n                    \"loyaltyCardType\": \"SILVER\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"REP\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 1,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2022-10-14T11:00:59.617Z\"\n                }\n            ],\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNjU2NjE5MjkwMzU0OTU1MTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"82f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 180,\n                    \"dailyGrossPriceWithoutTax\": 180,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 153,\n                    \"netWithoutTax\": 153,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 180,\n                    \"meanPriceWithoutTax\": 180,\n                    \"dailyPriceWithTax\": 180,\n                    \"dailyPriceWithoutTax\": 180,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 27,\n                    \"discountAmountWithoutTax\": 27,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 180,\n                    \"totalWithoutTax\": 180,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.393Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEzNzY2OTEyNjA1MzU5OTMxMzgzMTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"83f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 80,\n                    \"dailyGrossPriceWithoutTax\": 80,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 68,\n                    \"netWithoutTax\": 68,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 80,\n                    \"meanPriceWithoutTax\": 80,\n                    \"dailyPriceWithTax\": 80,\n                    \"dailyPriceWithoutTax\": 80,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 12,\n                    \"discountAmountWithoutTax\": 12,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 80,\n                    \"totalWithoutTax\": 80,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.41Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsGuests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzkxOTExODIyODAyOTg3NDgwMTswMDsn\\\"\",\n                    \"systemId\": \"5a1d93b6-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000029\",\n                    \"name\": \"Client Name Two\",\n                    \"firstName\": \"Client\",\n                    \"middleName\": \"Name\",\n                    \"surname\": \"Two\",\n                    \"age\": 52,\n                    \"sex\": \"Female\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"123456789\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"12345678B\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"guest@guestmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"111\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"\",\n                    \"loyaltyCardType\": \"\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 1,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2022-11-07T08:06:13.087Z\"\n                }\n            ],\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzUwNjgwNDA2ODQwMjAyMDE5OTUxOzAwOyc=\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"1cc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 70,\n                    \"dailyGrossPriceWithoutTax\": 70,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 59.5,\n                    \"netWithoutTax\": 59.5,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 70,\n                    \"meanPriceWithoutTax\": 70,\n                    \"dailyPriceWithTax\": 70,\n                    \"dailyPriceWithoutTax\": 70,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 10.5,\n                    \"discountAmountWithoutTax\": 10.5,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 70,\n                    \"totalWithoutTax\": 70,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.37Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzcyNjQwODgwNzU1MTMxNTQ0NzE7MDA7Jw==\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"1dc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 40,\n                    \"dailyGrossPriceWithoutTax\": 40,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 34,\n                    \"netWithoutTax\": 34,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 40,\n                    \"meanPriceWithoutTax\": 40,\n                    \"dailyPriceWithTax\": 40,\n                    \"dailyPriceWithoutTax\": 40,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 6,\n                    \"discountAmountWithoutTax\": 6,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 40,\n                    \"totalWithoutTax\": 40,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.417Z\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"101aa206-5cb3-46e1-a8d3-f35dedcaa005","name":"Expand guest & booking values & room","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=guests,bookingValues,room","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"guests,bookingValues,room"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d0fadb3b-4075-aaac-a2d3-b4fb81b450f0"},{"key":"mise-correlation-id","value":"732a95e5-205b-49e8-96ca-4dbb6e1730e9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f863d8e7-8887-4d71-8f07-c7e80abaa7e6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 10:58:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"room\": {\n                \"@odata.etag\": \"W/\\\"JzE5OzgzNzQyNTk2NTgyMTgyMzQwMTgxOzAwOyc=\\\"\",\n                \"roomNo\": \"204\",\n                \"systemId\": \"cb1cdf09-2629-ed11-97e8-00224882e1a5\",\n                \"description\": \"204\",\n                \"roomType\": \"JSUITE\",\n                \"class\": \"real\",\n                \"status\": \"Undone\",\n                \"block\": \"\",\n                \"floorNo\": \"\",\n                \"excludedPlanning\": false,\n                \"latestRevisionDate\": \"2022-08-31\",\n                \"roomJoined\": \"\",\n                \"divertedValue\": \"Value in Source\",\n                \"detourCustomerTarget\": \"\",\n                \"detourDepositPaymentMethod\": \"\",\n                \"detourHotelName\": \"\",\n                \"detourSameVATRegistration\": false,\n                \"attribute1\": \"QUEEN SIZE\",\n                \"attribute2\": \"GRANDE \",\n                \"attribute3\": \"SI\",\n                \"attribute4\": \"SI\",\n                \"attribute5\": \"BAÑERA HIDROMASAJE\"\n            },\n            \"guests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzYxMDQwMDc2MjQ1OTQwNzkyMzE7MDA7Jw==\\\"\",\n                    \"systemId\": \"a43df681-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000028\",\n                    \"name\": \"DDD GARCÍA GARCÍA\",\n                    \"firstName\": \"DDD\",\n                    \"middleName\": \"GARCÍA\",\n                    \"surname\": \"GARCÍA\",\n                    \"age\": 52,\n                    \"sex\": \"Male\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"616112233\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"43001001V\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"jgarcia@gmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"114\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"TD00002\",\n                    \"loyaltyCardType\": \"TD00002\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"REP\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 0,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2023-07-26T10:19:27.743Z\"\n                }\n            ],\n            \"bookingValues\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNjU2NjE5MjkwMzU0OTU1MTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"guestAccountNo\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"82f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 180,\n                    \"dailyGrossPriceWithoutTax\": 180,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 153,\n                    \"netWithoutTax\": 153,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 180,\n                    \"meanPriceWithoutTax\": 180,\n                    \"dailyPriceWithTax\": 180,\n                    \"dailyPriceWithoutTax\": 180,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 27,\n                    \"discountAmountWithoutTax\": 27,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 180,\n                    \"totalWithoutTax\": 180,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.393Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEzNzY2OTEyNjA1MzU5OTMxMzgzMTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"guestAccountNo\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"83f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 80,\n                    \"dailyGrossPriceWithoutTax\": 80,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 68,\n                    \"netWithoutTax\": 68,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 80,\n                    \"meanPriceWithoutTax\": 80,\n                    \"dailyPriceWithTax\": 80,\n                    \"dailyPriceWithoutTax\": 80,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 12,\n                    \"discountAmountWithoutTax\": 12,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 80,\n                    \"totalWithoutTax\": 80,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.41Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"room\": {\n                \"@odata.etag\": \"W/\\\"JzE5OzYwMTU2OTc1NTgxODgwODQyMjgxOzAwOyc=\\\"\",\n                \"roomNo\": \"302\",\n                \"systemId\": \"8d59c8e6-2629-ed11-97e8-00224882e1a5\",\n                \"description\": \"302\",\n                \"roomType\": \"DBL\",\n                \"class\": \"real\",\n                \"status\": \"Undone\",\n                \"block\": \"\",\n                \"floorNo\": \"\",\n                \"excludedPlanning\": false,\n                \"latestRevisionDate\": \"0001-01-01\",\n                \"roomJoined\": \"\",\n                \"divertedValue\": \"Value in Source\",\n                \"detourCustomerTarget\": \"\",\n                \"detourDepositPaymentMethod\": \"\",\n                \"detourHotelName\": \"\",\n                \"detourSameVATRegistration\": false,\n                \"attribute1\": \"TWIN BED\",\n                \"attribute2\": \"SIN BALCÓN\",\n                \"attribute3\": \"NO\",\n                \"attribute4\": \"SI\",\n                \"attribute5\": \"PLATO DUCHA\"\n            },\n            \"guests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzkxOTExODIyODAyOTg3NDgwMTswMDsn\\\"\",\n                    \"systemId\": \"5a1d93b6-4945-ed11-946f-000d3a25421c\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"lineNo\": 1,\n                    \"contactNo\": \"CO0000029\",\n                    \"name\": \"MARIA JOSÉ  GONZALEZ  PEREZ\",\n                    \"firstName\": \"MARIA JOSÉ \",\n                    \"middleName\": \"GONZALEZ \",\n                    \"surname\": \"PEREZ\",\n                    \"age\": 52,\n                    \"sex\": \"Female\",\n                    \"address\": \"\",\n                    \"postCode\": \"\",\n                    \"municipalityNo\": \"\",\n                    \"phone\": \"95122524\",\n                    \"documentType\": \"NIF/NIE\",\n                    \"documentNo\": \"41222333P\",\n                    \"dateIssued\": \"0001-01-01\",\n                    \"expirationDate\": \"0001-01-01\",\n                    \"familityRelationship\": \" \",\n                    \"email\": \"miglez@gmail.com\",\n                    \"groupNo\": \"\",\n                    \"nacionality\": \"ESP\",\n                    \"originatingNo\": \"111\",\n                    \"mobilePhoneNo\": \"\",\n                    \"loyaltyCardNo\": \"\",\n                    \"loyaltyCardType\": \"\",\n                    \"birthDate\": \"1970-01-01\",\n                    \"allowMailList\": false,\n                    \"categoryNo\": \"\",\n                    \"resident\": false,\n                    \"arrivalDate\": \"2022-08-31\",\n                    \"departureDate\": \"2022-09-01\",\n                    \"nights\": 1,\n                    \"invoicedBoardBasis\": \"MP\",\n                    \"totalStays\": 0,\n                    \"specialDate1\": \"0001-01-01\",\n                    \"specialDateDescription1\": \"\",\n                    \"specialDate2\": \"0001-01-01\",\n                    \"specialDateDescription2\": \"\",\n                    \"SystemModifiedAt\": \"2022-11-07T08:06:13.087Z\"\n                }\n            ],\n            \"bookingValues\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzUwNjgwNDA2ODQwMjAyMDE5OTUxOzAwOyc=\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"guestAccountNo\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"1cc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 70,\n                    \"dailyGrossPriceWithoutTax\": 70,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 59.5,\n                    \"netWithoutTax\": 59.5,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 70,\n                    \"meanPriceWithoutTax\": 70,\n                    \"dailyPriceWithTax\": 70,\n                    \"dailyPriceWithoutTax\": 70,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 10.5,\n                    \"discountAmountWithoutTax\": 10.5,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 70,\n                    \"totalWithoutTax\": 70,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.37Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzcyNjQwODgwNzU1MTMxNTQ0NzE7MDA7Jw==\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"guestAccountNo\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"1dc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 40,\n                    \"dailyGrossPriceWithoutTax\": 40,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 34,\n                    \"netWithoutTax\": 34,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 40,\n                    \"meanPriceWithoutTax\": 40,\n                    \"dailyPriceWithTax\": 40,\n                    \"dailyPriceWithoutTax\": 40,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 6,\n                    \"discountAmountWithoutTax\": 6,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 40,\n                    \"totalWithoutTax\": 40,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.417Z\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"b2c8278f-9720-46fb-9840-5d624666131a","name":"Filter eq (Equal)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$filter=bookingStatus eq 'Occupancy'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$filter","value":"bookingStatus eq 'Occupancy'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"8bc9d4c8-6691-bb2a-768b-b058a4402f22"},{"key":"mise-correlation-id","value":"d64083dd-2e98-4d35-8dc3-f2a03a2f13a0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"81e1c630-9850-405a-94d5-dafc11efd019"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 12:40:10 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        }\n    ]\n}"},{"id":"a540a2a6-0adb-43b7-9fe0-63057f77cbee","name":"Multiple filters","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$filter=email eq 'guest@guestmail.com' and nights eq 1  and arrivalDate eq 2022-08-31","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$filter","value":"email eq 'guest@guestmail.com' and nights eq 1  and arrivalDate eq 2022-08-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"b8ec546b-13c2-e5a0-d5b3-a81e51db51eb"},{"key":"mise-correlation-id","value":"1b2a5e0e-7a70-4a84-bedd-ff54a747902f"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"1c72d2b7-9d1a-4d71-bc95-f6db5dbdb19a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 12:46:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        }\n    ]\n}"},{"id":"29d32daf-736a-4186-be35-42d3ed7956d6","name":"Filter eq + Expand booking value","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings?$expand=bookingValue&$filter=no eq 'RH0000003'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","bookings"],"query":[{"key":"$expand","value":"bookingValue"},{"key":"$filter","value":"no eq 'RH0000003'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"3673fe29-a2e5-b5ff-6135-17d9b48412c4"},{"key":"mise-correlation-id","value":"82e5d953-0319-4cb2-94c8-5110a910d28b"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"ec8a9dfc-bf03-4a98-be72-2e139f36bc0e"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 12:42:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNjU2NjE5MjkwMzU0OTU1MTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"82f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 180,\n                    \"dailyGrossPriceWithoutTax\": 180,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 153,\n                    \"netWithoutTax\": 153,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 180,\n                    \"meanPriceWithoutTax\": 180,\n                    \"dailyPriceWithTax\": 180,\n                    \"dailyPriceWithoutTax\": 180,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 27,\n                    \"discountAmountWithoutTax\": 27,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 180,\n                    \"totalWithoutTax\": 180,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.393Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEzNzY2OTEyNjA1MzU5OTMxMzgzMTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"83f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 80,\n                    \"dailyGrossPriceWithoutTax\": 80,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 68,\n                    \"netWithoutTax\": 68,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 80,\n                    \"meanPriceWithoutTax\": 80,\n                    \"dailyPriceWithTax\": 80,\n                    \"dailyPriceWithoutTax\": 80,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 12,\n                    \"discountAmountWithoutTax\": 12,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 80,\n                    \"totalWithoutTax\": 80,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.41Z\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"aadcfb2c-fe12-4c8f-8b4d-b80fc6eedcf1"},{"name":"bookings","id":"372107ae-c6b7-42f9-a232-198744ef282b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<BookingID>)","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<BookingID>)"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"2076728e-50f2-46e8-9453-621e6e7512f4","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"bookingDate\": \"2022-03-05\",\r\n    \"arrivalTime\": \"00:00:00\",\r\n    \"departureDate\": \"2024-01-07\",\r\n    \"departureTime\": \"00:00:00\",\r\n    \"checkInDate\": \"0001-01-01\",\r\n    \"checkInTime\": \"00:00:00\",\r\n    \"checkOutTime\": \"00:00:00\",\r\n    \"cancellationDate\": \"0001-01-01\",\r\n    \"cancellationTime\": \"00:00:00\",\r\n    \"nights\": 15,\r\n    \"bookingToCustomerNo\": \"FREE\",\r\n    \"billToCustomerNo\": \"FREE\",\r\n    \"voucher\": \"\",\r\n    \"hotelVoucher\": \"\",\r\n    \"allotmentNo\": \"FREE\",\r\n    \"rateNo\": \"FREE\",\r\n    \"bookedRoomType\": \"A1\",\r\n    \"assignedRoomType\": \"A1VP\",\r\n    \"roomTypeUpselling\": \"A1\",\r\n    \"adults\": 2,\r\n    \"adultsInExtraBed\": 1,\r\n    \"babies\": 0,\r\n    \"boardBasis\": \"SA\",\r\n    \"boardBasisUpselling\": \"SA\",\r\n    \"invoicedBoardBasis\": \"SA\",\r\n    \"contactBookingName\": \"\",\r\n    \"name2\": \"\",\r\n    \"address\": \"\",\r\n    \"address2\": \"\",\r\n    \"county\": \"\",\r\n    \"postCode\": \"\",\r\n    \"city\": \"\",\r\n    \"languageNo\": \"\",\r\n    \"mobilePhoneNo\": \"\",\r\n    \"phoneNo\": \"\",\r\n    \"email\": \"\",\r\n    \"source\": \"ENUM\",\r\n    \"market\": \"ENUM\",\r\n    \"meetUs\": \"\",\r\n    \"salesChannel\": \"\",\r\n    \"bookingNotes\": \"Notes of the booking\",\r\n    \"bookingSegment\": \"\",\r\n    \"secretCode\": \"Code needed\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings(<BookingID>)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookings/$entity\",\n    \"@odata.etag\": \"W/\\\"JzE5Ozc2MTE5ODQ0NTU3ODg3NDA5OTYxOzAwOyc=\\\"\",\n    \"systemId\": \"bb2a2209-1ea1-ef11-bec6-6045bd8f25a4\",\n    \"no\": \"+\",\n    \"bookingDate\": \"2022-03-05\",\n    \"arrivalDate\": \"2030-05-01\",\n    \"arrivalTime\": \"00:00:00\",\n    \"departureDate\": \"2030-05-16\",\n    \"departureTime\": \"00:00:00\",\n    \"checkInDate\": \"0001-01-01\",\n    \"checkInTime\": \"00:00:00\",\n    \"checkOutTime\": \"00:00:00\",\n    \"cancellationDate\": \"0001-01-01\",\n    \"cancellationTime\": \"00:00:00\",\n    \"nights\": 15,\n    \"bookingToCustomerNo\": \"FREE\",\n    \"billToCustomerNo\": \"FREE\",\n    \"voucher\": \"\",\n    \"hotelVoucher\": \"\",\n    \"allotmentNo\": \"FREE\",\n    \"rateNo\": \"FREE\",\n    \"bookingGroupNo\": \"\",\n    \"roomNo\": \"\",\n    \"roomCleanStatus\": \"Undone\",\n    \"bookingStatus\": \"Cancelled\",\n    \"bookedRoomType\": \"A1\",\n    \"assignedRoomType\": \"A1VP\",\n    \"roomTypeUpselling\": \"A1\",\n    \"adults\": 2,\n    \"adultsInExtraBed\": 1,\n    \"children\": 0,\n    \"babies\": 0,\n    \"boardBasis\": \"SA\",\n    \"boardBasisUpselling\": \"SA\",\n    \"invoicedBoardBasis\": \"SA\",\n    \"contactBookingName\": \"\",\n    \"name\": \"\",\n    \"name2\": \"\",\n    \"address\": \"\",\n    \"address2\": \"\",\n    \"county\": \"\",\n    \"postCode\": \"\",\n    \"countryRegion\": \"\",\n    \"contactNo\": \"\",\n    \"city\": \"\",\n    \"languageNo\": \"\",\n    \"originatingNo\": \"\",\n    \"mobilePhoneNo\": \"\",\n    \"phoneNo\": \"\",\n    \"email\": \"\",\n    \"stayTotalAmount\": 0,\n    \"totalAmountValue\": 0,\n    \"totalAdditionalServices\": 0,\n    \"totalPaxExclBabies\": 3,\n    \"source\": \"\",\n    \"market\": \"RESTO\",\n    \"meetUs\": \"\",\n    \"salesChannel\": \"\",\n    \"bookingNotes\": \"Notes of the booking\",\n    \"bookingSegment\": \"\",\n    \"onlineBooking\": false,\n    \"onlineBookingSync\": false,\n    \"onlineChannelIDBooking\": \"\",\n    \"onlineChannelIDRoom\": \"\",\n    \"onlineBookingModifdate\": \"2025-05-06\",\n    \"onlineBookingModifTime\": \"10:58:39.32\",\n    \"onlineBookingCancelDate\": \"2022-06-27\",\n    \"onlineBookingCancelTime\": \"12:29:53.91\",\n    \"onlineBookingPaymentNo\": 1,\n    \"onlineBookingServiceNo\": 0,\n    \"systemCreatedAt\": \"0001-01-01T00:00:00Z\",\n    \"lastModifiedDateTime\": \"2025-05-06T10:58:39.58Z\",\n    \"secretCode\": \"\"\n}"}],"_postman_id":"372107ae-c6b7-42f9-a232-198744ef282b"},{"name":"bookingAddServices","id":"71450f29-ed1c-40f5-9130-1d71ede785c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingsAddServices","description":"<p>System table: Booking Additional Serv. HTL<br />Page in Business Central: Booking Additional Serv. HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingsAddServices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"3cb08536-e7b3-4dc3-b710-d331a73f7f6c","name":"200","originalRequest":{"method":"GET","header":[]},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookingsAddServices\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDI4MTE3NjcxNDUzMDc5NjkxOzAwOyc=\\\"\",\n            \"systemId\": \"6af3becd-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"discount\": 0,\n            \"tax\": 0,\n            \"accountGroup\": 1,\n            \"accountNo\": \"\",\n            \"bookingNo\": \"003\",\n            \"chargedUnits\": 0,\n            \"conceptType\": \"Room\",\n            \"description\": \"Desayuno\",\n            \"endService\": \"2020-10-05\",\n            \"hotelItemNo\": \"HINo1\",\n            \"lastCharge\": \"0001-01-01\",\n            \"lineNo\": 30000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"001\",\n            \"startService\": \"2020-10-01\",\n            \"totalAmount\": 264,\n            \"unitAmount\": 132,\n            \"units\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTUzMzc5OTk0NDU3OTQ4NTkxOzAwOyc=\\\"\",\n            \"systemId\": \"6bf3becd-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"discount\": 0,\n            \"tax\": 0,\n            \"accountGroup\": 1,\n            \"accountNo\": \"\",\n            \"bookingNo\": \"002\",\n            \"chargedUnits\": 0,\n            \"conceptType\": \"Room\",\n            \"description\": \"Desayuno\",\n            \"endService\": \"2020-12-08\",\n            \"hotelItemNo\": \"HINo2\",\n            \"lastCharge\": \"0001-01-01\",\n            \"lineNo\": 20000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"002\",\n            \"startService\": \"2020-12-07\",\n            \"totalAmount\": 44,\n            \"unitAmount\": 22,\n            \"units\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3NDM5MzY5MzQ4NzIxNTM5NDE7MDA7Jw==\\\"\",\n            \"systemId\": \"6ef3becd-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"discount\": 0,\n            \"tax\": 0,\n            \"accountGroup\": 1,\n            \"accountNo\": \"\",\n            \"bookingNo\": \"003\",\n            \"chargedUnits\": 0,\n            \"conceptType\": \"Room\",\n            \"description\": \"Tennis Court Rental\",\n            \"endService\": \"2020-01-31\",\n            \"hotelItemNo\": \"TCR\",\n            \"lastCharge\": \"0001-01-01\",\n            \"lineNo\": 60000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"TCRS\",\n            \"startService\": \"2020-01-02\",\n            \"totalAmount\": 100,\n            \"unitAmount\": 25,\n            \"units\": 1,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Nzg1OTE1ODY1MTE3NzcwODIxOzAwOyc=\\\"\",\n            \"systemId\": \"6ff3becd-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"discount\": 0,\n            \"tax\": 0,\n            \"accountGroup\": 1,\n            \"accountNo\": \"004\",\n            \"bookingNo\": \"004\",\n            \"chargedUnits\": 2,\n            \"conceptType\": \"Room\",\n            \"description\": \"DESAYUNO\",\n            \"endService\": \"2021-09-11\",\n            \"hotelItemNo\": \"HINo3\",\n            \"lastCharge\": \"2021-10-11\",\n            \"lineNo\": 10000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"DESA\",\n            \"startService\": \"2021-10-10\",\n            \"totalAmount\": 88,\n            \"unitAmount\": 22,\n            \"units\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"71450f29-ed1c-40f5-9130-1d71ede785c6"},{"name":"bookingStatus","id":"9c321092-f744-4f49-abcc-dce58229366e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.getBookingStatus","description":"<p>Returns the status of the selected booking.</p>\n<p>The status can be any of this values:</p>\n<ul>\n<li><p>Booking</p>\n</li>\n<li><p>Pencil Booking</p>\n</li>\n<li><p>Occupancy</p>\n</li>\n<li><p>Checkout</p>\n</li>\n<li><p>Cancelled</p>\n</li>\n<li><p>No-Show</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.getBookingStatus"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"c2c4b3b7-beb2-449d-b271-6be9641326a9","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.getBookingStatus"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0714025c-40a4-7799-bc26-b404be4fbf11"},{"key":"mise-correlation-id","value":"fd1f0750-c62e-46c2-9d4d-2576208b3f2b"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"375ce425-c3fa-4912-9ab5-cc78385bd2b0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:26:45 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Occupancy\"\n}"},{"id":"45c1a7e4-8936-45d8-89be-21e0e6c67167","name":"401","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.getBookingStatus"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"aafaca78-9d9e-e57d-a524-bdf08bb9a7bf"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:26:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"ce8a5827-a12b-4d44-a27a-44e120f77779","name":"404","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.getBookingStatus"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"fab0c840-f5bf-1bc8-39a8-f7428a58fddd"},{"key":"mise-correlation-id","value":"b90cad05-a8f9-4066-a0e4-261f9a968dc1"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"3d624ae8-b873-4abc-9237-2b10e37b65d9"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:27:18 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"BadRequest_ResourceNotFound\",\n        \"message\": \"Resource not found for the segment 'bookings'.  CorrelationId:  3d624ae8-b873-4abc-9237-2b10e37b65d9.\"\n    }\n}"}],"_postman_id":"9c321092-f744-4f49-abcc-dce58229366e"},{"name":"modifyBookingNotes","id":"3ea8dbe9-c32c-4961-b3ef-d69c6b5fbc48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"bookingNotes\": \"notes that will be in the booking\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.modifyBookingNotes","description":"<p>Modifies the value of bookingNotes in the selected booking.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingNotes</td>\n<td>Text</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.modifyBookingNotes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"29b5f34c-350a-4261-b1b6-db935598f74a","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"102\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.modifyBookingNotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"a982bf57-4835-2de4-14ab-a78601917eb0"},{"key":"mise-correlation-id","value":"6263a5bd-468b-4f02-9b47-ea4ab792ef64"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"cb8bdc3e-2eb2-4186-ab3e-5cead5217bf2"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:44:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Booking notes modified\"\n}"},{"id":"a192a2bf-b2bd-4ed9-ada5-9c6db055dc42","name":"401","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"102\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.modifyBookingNotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"09e964da-83b4-800c-0973-1390851ac479"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:43:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"}],"_postman_id":"3ea8dbe9-c32c-4961-b3ef-d69c6b5fbc48"},{"name":"municipalities","id":"8a7ccf06-7b30-4c94-92ca-229ec40de5f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/municipalities","description":"<p>System table: Municipality HTL<br />Page in Business Central: Municipality HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","municipalities"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"08c9085e-d461-4860-b1d6-99b5d24e9631","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/municipalities"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/municipalities\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk0NDY0MDEwMjQzMDIyODkyMTswMDsn\\\"\",\r\n            \"systemId\": \"dce5c179-48bd-ef11-b9d2-202b201de956\",\r\n            \"municipalityNo\": \"48916\",\r\n            \"name\": \"Usansolo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE0MjU2Mzk1NjUxNjQwMzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"e344e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01051\",\r\n            \"name\": \"Agurain/Salvatierra\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc5ODc4NDYxNTE5MzM2MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"e444e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01001\",\r\n            \"name\": \"Alegría-Dulantzi\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQxMjkzMTY5NjE5MjMxNDExMTswMDsn\\\"\",\r\n            \"systemId\": \"e544e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01002\",\r\n            \"name\": \"Amurrio\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk5ODI4MzE3NTM2ODM4NzYwMTswMDsn\\\"\",\r\n            \"systemId\": \"e644e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01049\",\r\n            \"name\": \"Añana\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY2MTU2NzczNjY1Njc2OTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"e744e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01003\",\r\n            \"name\": \"Aramaio\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc2NzI2Mzg0MDE4NDE5MDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"e844e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01006\",\r\n            \"name\": \"Armiñón\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAzODQ1OTM5MTY1NjcwODMzMTswMDsn\\\"\",\r\n            \"systemId\": \"e944e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01037\",\r\n            \"name\": \"Arraia-Maeztu\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY0Nzc5Njg1MjIwMjYyNTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"ea44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01008\",\r\n            \"name\": \"Arratzua-Ubarrundia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM1ODEyMjIxMTM2Njk2ODc4MTswMDsn\\\"\",\r\n            \"systemId\": \"eb44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01004\",\r\n            \"name\": \"Artziniega\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY4MjkzOTUyMjQyNzI1MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"ec44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01009\",\r\n            \"name\": \"Asparrena\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc4NzM0MTU5MDQxODIyMjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"ed44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01010\",\r\n            \"name\": \"Ayala/Aiara\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgwMjIxNzAwNDEyNTAxOTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"ee44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01011\",\r\n            \"name\": \"Baños de Ebro/Mañueta\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ5NjU0MTA5MDIxMDI4NTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"ef44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01013\",\r\n            \"name\": \"Barrundia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA4NTgyNjUzMjMxNDgyNTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"f044e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01014\",\r\n            \"name\": \"Berantevilla\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjgzNTI3NTM1MjUyNzY4MDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"f144e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01016\",\r\n            \"name\": \"Bernedo\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc2NjM4NzUwNTI0MjM5NTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"f244e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01017\",\r\n            \"name\": \"Campezo/Kanpezu\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQwNTA3NzYwOTI2Nzc5NjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"f344e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01021\",\r\n            \"name\": \"Elburgo/Burgelu\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEyNzM2Njk4OTUwODUxMTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"f444e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01022\",\r\n            \"name\": \"Elciego\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU0MTY1MjQ0NTI5NDA4MDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"f544e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01023\",\r\n            \"name\": \"Elvillar/Bilar\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk5MDQxNDAyNTI0NTgyMTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"f644e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01047\",\r\n            \"name\": \"Erriberabeitia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIyNjcyMzI2NjYyOTE3OTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"f744e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01046\",\r\n            \"name\": \"Erriberagoitia/Ribera Alta\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU4MjAxMDI0MzM1MjU4NzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"f844e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01056\",\r\n            \"name\": \"Harana/Valle de Arana\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzkzODcwNTczNTM0NjUzMzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"f944e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01901\",\r\n            \"name\": \"Iruña Oka/Iruña de Oca\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY1MjgyNTkwNDU1MDI2Mzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"fa44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01027\",\r\n            \"name\": \"Iruraiz-Gauna\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5Mzk3NTUyMjk3ODQ0NTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"fb44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01019\",\r\n            \"name\": \"Kripan\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUyODkwODA0NTEzMzY3OTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"fc44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01020\",\r\n            \"name\": \"Kuartango\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU2NjM1Nzc4Mjk5MTk1MzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"fd44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01028\",\r\n            \"name\": \"Labastida/Bastida\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDMzNzU5MzU3MDEyMjAxNDUzMTswMDsn\\\"\",\r\n            \"systemId\": \"fe44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01030\",\r\n            \"name\": \"Lagrán\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQyNDAzNzY2MzMwMjU0MDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"ff44e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01031\",\r\n            \"name\": \"Laguardia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIwNjE3Mjc2MTk3Nzg4ODY1MTswMDsn\\\"\",\r\n            \"systemId\": \"0045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01032\",\r\n            \"name\": \"Lanciego/Lantziego\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM4NDgyNzk1MjkxOTY0NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"0145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01902\",\r\n            \"name\": \"Lantarón\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYxODAyMjI0ODU4NjE3MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"0245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01033\",\r\n            \"name\": \"Lapuebla de Labarca\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg2OTIzMTYzMDQwNjE0MjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"0345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01036\",\r\n            \"name\": \"Laudio/Llodio\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgxNjE5MzYzOTA3NDUwMTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"0445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01058\",\r\n            \"name\": \"Legutio\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI3Mzc3MzgzNjc0ODkxODkwMTswMDsn\\\"\",\r\n            \"systemId\": \"0545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01034\",\r\n            \"name\": \"Leza\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg3MTkxMTQ2NjYxNDc2NjU0MTswMDsn\\\"\",\r\n            \"systemId\": \"0645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01039\",\r\n            \"name\": \"Moreda de Álava/Moreda Araba\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA5NDU0NjY0Nzg4Mjg4NDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"0745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01041\",\r\n            \"name\": \"Navaridas\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjgwODIxOTA2MDY1NTA4NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"0845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01042\",\r\n            \"name\": \"Okondo\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE3NDc3NTgxMzE0NDExNTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"0945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01043\",\r\n            \"name\": \"Oyón-Oion\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI5MjE4MjA3NTIwMDE0NDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"0a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01044\",\r\n            \"name\": \"Peñacerrada-Urizaharra\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI2MTQyNzA3MTA2NjYxNTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"0b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01052\",\r\n            \"name\": \"Samaniego\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwMzc0NTY3MDM5OTk1ODI1MTswMDsn\\\"\",\r\n            \"systemId\": \"0c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01053\",\r\n            \"name\": \"San Millán/Donemiliaga\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU3MDA3NDEwODQyMjQyNzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"0d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01054\",\r\n            \"name\": \"Urkabustaiz\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA0OTk4Mjk4NTY4ODU0NjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"0e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01055\",\r\n            \"name\": \"Valdegovía/Gaubea\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA2Nzk4MDE1ODUzMDU0Nzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"0f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01057\",\r\n            \"name\": \"Villabuena de Álava/Eskuernaga\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE0NDk5MTYzNTU2ODEzNTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"1045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01059\",\r\n            \"name\": \"Vitoria-Gasteiz\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY4Mjg3NDA4Mjk0NTA3OTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"1145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01060\",\r\n            \"name\": \"Yécora/Iekora\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzUxODczNTgwODA3Mzg3NDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"1245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01061\",\r\n            \"name\": \"Zalduondo\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODAyNDg2NDE3ODE3NzE0MDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"1345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01062\",\r\n            \"name\": \"Zambrana\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkyNjg5NjYwODA4MTY5ODA0MTswMDsn\\\"\",\r\n            \"systemId\": \"1445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01018\",\r\n            \"name\": \"Zigoitia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMyODMzNTY1NjU0NDIxMzI5MTswMDsn\\\"\",\r\n            \"systemId\": \"1545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"01063\",\r\n            \"name\": \"Zuia\",\r\n            \"provinceNo\": 1,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg3NjAyMTYzNTE4ODc3ODc1MTswMDsn\\\"\",\r\n            \"systemId\": \"1645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02001\",\r\n            \"name\": \"Abengibre\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk4NDM0NjEzMjY1MDEzNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"1745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02002\",\r\n            \"name\": \"Alatoz\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA0OTc2ODUwNDk4MjczODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"1845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02003\",\r\n            \"name\": \"Albacete\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE0NDM3OTU0MTQzNDA4MDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"1945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02004\",\r\n            \"name\": \"Albatana\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI2Mjg3OTI4MjU3NDQ0ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02005\",\r\n            \"name\": \"Alborea\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQzOTM3ODgxMjgxMzgxNjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"1b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02006\",\r\n            \"name\": \"Alcadozo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI3NTM4MDI5MzA5NDE0MDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"1c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02007\",\r\n            \"name\": \"Alcalá del Júcar\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI5ODAzNzI5MDk0NTg2OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02008\",\r\n            \"name\": \"Alcaraz\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk0NzE0MDE1NzI2MzM0NzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"1e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02009\",\r\n            \"name\": \"Almansa\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM1MTQwMDgyMzUwODUyNzQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"1f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02010\",\r\n            \"name\": \"Alpera\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEyMjQ3ODk2NTA4MDg5NDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"2045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02011\",\r\n            \"name\": \"Ayna\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI5OTM3NTU2OTUzMjQ1NTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"2145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02012\",\r\n            \"name\": \"Balazote\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU5MzI1ODc0NDMzMTE0ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"2245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02014\",\r\n            \"name\": \"Ballestero, El\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUyNjgyMzY4MzI2Nzc5NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"2345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02013\",\r\n            \"name\": \"Balsa de Ves\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODEyMTcyMTc5MTE4MTUxMzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"2445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02015\",\r\n            \"name\": \"Barrax\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzk1OTA2OTMyODc4NTM4MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"2545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02016\",\r\n            \"name\": \"Bienservida\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU0NzExNzc0NjgyNzc4MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"2645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02017\",\r\n            \"name\": \"Bogarra\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYxMDkyODQyMjkwMDQ2MzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"2745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02018\",\r\n            \"name\": \"Bonete\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIxMTc3ODgwMTkxNzcyMTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"2845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02019\",\r\n            \"name\": \"Bonillo, El\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc5ODc2MTA3Njg1MjU5OTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"2945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02020\",\r\n            \"name\": \"Carcelén\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ0MTE3MDQ2NzQ5ODc1Njg4MTswMDsn\\\"\",\r\n            \"systemId\": \"2a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02021\",\r\n            \"name\": \"Casas de Juan Núñez\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY2MTg5ODIxMzAzMDA0NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"2b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02022\",\r\n            \"name\": \"Casas de Lázaro\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTEwMDE0NTk0MDU2NzkyNzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"2c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02023\",\r\n            \"name\": \"Casas de Ves\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY5OTY5MDIxODU1MDcyNjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"2d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02024\",\r\n            \"name\": \"Casas-Ibáñez\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU1MTA1Mjc4Mjg2NzE3MDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"2e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02025\",\r\n            \"name\": \"Caudete\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTEwNTQ5NTIyOTM2ODgwNTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"2f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02026\",\r\n            \"name\": \"Cenizate\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA1NDE1MTkxOTgxODI0NzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"3045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02029\",\r\n            \"name\": \"Chinchilla de Monte-Aragón\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE5MzI5MzY1ODM4OTcyOTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"3145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02027\",\r\n            \"name\": \"Corral-Rubio\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAxMDEyNTk2ODYyODQwODc0MTswMDsn\\\"\",\r\n            \"systemId\": \"3245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02028\",\r\n            \"name\": \"Cotillas\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYyNzQ4Mzk0NTI2MzQ3MDY4MTswMDsn\\\"\",\r\n            \"systemId\": \"3345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02030\",\r\n            \"name\": \"Elche de la Sierra\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg0MDY1NDg2MTI0NTY0OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"3445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02031\",\r\n            \"name\": \"Férez\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc5MTAwNDY1MjQ0NDIyODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02032\",\r\n            \"name\": \"Fuensanta\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI3NjA4MDIwMzkxNjI4NjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"3645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02033\",\r\n            \"name\": \"Fuente-Álamo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY2NTcwNjU1MzQ3OTcxNTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"3745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02034\",\r\n            \"name\": \"Fuentealbilla\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI5NjM2MzEwNDI3ODA2ODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02035\",\r\n            \"name\": \"Gineta, La\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE0NDU1MDg3ODE1NzA0NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"3945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02036\",\r\n            \"name\": \"Golosalvo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTIzMDExOTkwMzM2ODYzNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"3a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02037\",\r\n            \"name\": \"Hellín\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTEzODEyMjAyNTMwOTk3ODE4MTswMDsn\\\"\",\r\n            \"systemId\": \"3b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02038\",\r\n            \"name\": \"Herrera, La\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE4NTE4MTI4NTc1ODI2Mjg0MTswMDsn\\\"\",\r\n            \"systemId\": \"3c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02039\",\r\n            \"name\": \"Higueruela\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc0MTY2OTI4Njc3NzUzNjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"3d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02040\",\r\n            \"name\": \"Hoya-Gonzalo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc1NjE0MzQwOTk2MDkxMDM0MTswMDsn\\\"\",\r\n            \"systemId\": \"3e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02041\",\r\n            \"name\": \"Jorquera\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE4OTUzOTU3NjI2MzkwMjI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02042\",\r\n            \"name\": \"Letur\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIxODExMzE4OTQ0NTI5NzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"4045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02043\",\r\n            \"name\": \"Lezuza\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM5MTExNzExNTE5MDkwNTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"4145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02044\",\r\n            \"name\": \"Liétor\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU4ODY5NTg0Mjk1NDUyMzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"4245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02045\",\r\n            \"name\": \"Madrigueras\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxODU5NDE1MDk0Mzg2NzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"4345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02046\",\r\n            \"name\": \"Mahora\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYwMTg5OTE0NTcxNTAzMzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"4445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02047\",\r\n            \"name\": \"Masegoso\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE0MDc4MjM5NjU4NzYyNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"4545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02048\",\r\n            \"name\": \"Minaya\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMwNTEwNjc1ODA5MDc3NjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"4645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02049\",\r\n            \"name\": \"Molinicos\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM1Mjc3MjQ2MzM1MjIzOTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"4745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02050\",\r\n            \"name\": \"Montalvos\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQyNTkyOTY1NTI2NTQwMzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"4845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02051\",\r\n            \"name\": \"Montealegre del Castillo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk2OTc4MDYxNDk5OTA0NTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"4945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02052\",\r\n            \"name\": \"Motilleja\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk5MjUzMjY1Njc5MzU5OTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"4a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02053\",\r\n            \"name\": \"Munera\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM2MDYwNDExMDA3Mjg3ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"4b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02054\",\r\n            \"name\": \"Navas de Jorquera\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI1MzMyNzE4MDg3Njg1NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02055\",\r\n            \"name\": \"Nerpio\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk5MjA0NDc3MDUxMzc1MjM1MTswMDsn\\\"\",\r\n            \"systemId\": \"4d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02056\",\r\n            \"name\": \"Ontur\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEyMjI3NzM2MDkyMjk5MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"4e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02057\",\r\n            \"name\": \"Ossa de Montiel\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE2NDUzMjkzNTM3OTkyMTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"4f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02058\",\r\n            \"name\": \"Paterna del Madera\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA5NjE5NTM1OTI2ODA2ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"5045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02060\",\r\n            \"name\": \"Peñas de San Pedro\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU0NTUyNjU4Nzg0OTEwNTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"5145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02059\",\r\n            \"name\": \"Peñascosa\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU3MDczODEyMTY4MjEzOTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"5245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02061\",\r\n            \"name\": \"Pétrola\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA1NTI5MDc3MjA2Nzc3OTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"5345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02062\",\r\n            \"name\": \"Povedilla\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYyNDQzMDU2MjYwODE3ODkxMTswMDsn\\\"\",\r\n            \"systemId\": \"5445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02901\",\r\n            \"name\": \"Pozo Cañada\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI1MTEwMTIxMjkwMjk4NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"5545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02063\",\r\n            \"name\": \"Pozohondo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA0MzU2Mzc0MzIxMTE0NTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"5645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02064\",\r\n            \"name\": \"Pozo-Lorente\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY3MDI4MTM2MTM2OTUyNzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"5745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02065\",\r\n            \"name\": \"Pozuelo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ0MjU0ODQ5NjExNTM1MjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"5845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02066\",\r\n            \"name\": \"Recueja, La\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ5NDEzMjI3MzQ0MDAzMjg3MTswMDsn\\\"\",\r\n            \"systemId\": \"5945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02067\",\r\n            \"name\": \"Riópar\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTIwMjgwOTEwODEzMDU2MjAwMTswMDsn\\\"\",\r\n            \"systemId\": \"5a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02068\",\r\n            \"name\": \"Robledo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ1Mzc2NDMyMzEyMzQ1MjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"5b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02069\",\r\n            \"name\": \"Roda, La\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA3NjUyNDY3MTEyMDU3MTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"5c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02070\",\r\n            \"name\": \"Salobre\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjEzOTQ3MTg0NzIyMzEzOTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"5d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02071\",\r\n            \"name\": \"San Pedro\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY1MTMzNDA4NDA1NzY4ODI1MTswMDsn\\\"\",\r\n            \"systemId\": \"5e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02072\",\r\n            \"name\": \"Socovos\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg3NTg0NzgyOTA3Mjg4NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"5f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02073\",\r\n            \"name\": \"Tarazona de la Mancha\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ4ODkyMjMxNTUzNzYxMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"6045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02074\",\r\n            \"name\": \"Tobarra\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI2OTU2MDYzMDA3NDg5NzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"6145e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02075\",\r\n            \"name\": \"Valdeganga\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI4MTM3MDI3NDIzMzg1NTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"6245e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02076\",\r\n            \"name\": \"Vianos\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgxNTQ4Nzc5NDc3NjYwMDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"6345e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02077\",\r\n            \"name\": \"Villa de Ves\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMzNjM3NzE3MDA5OTY4MzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"6445e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02078\",\r\n            \"name\": \"Villalgordo del Júcar\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg2MTM2NjQyMjE2Njg5MTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"6545e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02079\",\r\n            \"name\": \"Villamalea\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk1MTkyODU5ODM1MDk1MDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"6645e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02080\",\r\n            \"name\": \"Villapalacios\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE4MDU0OTI5NjI3OTY3MTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"6745e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02081\",\r\n            \"name\": \"Villarrobledo\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI5OTExNTk3NTg4MDE4NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"6845e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02082\",\r\n            \"name\": \"Villatoya\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc0MTg1MzkzNTU1MTkxNTM0MTswMDsn\\\"\",\r\n            \"systemId\": \"6945e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02083\",\r\n            \"name\": \"Villavaliente\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI1NzA0NDQzOTAwMjE0OTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"6a45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02084\",\r\n            \"name\": \"Villaverde de Guadalimar\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc4NDY4MTEzODUwMzg4MzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"6b45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02085\",\r\n            \"name\": \"Viveros\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEyODA2OTQ3NDg0MjA5ODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"6c45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"02086\",\r\n            \"name\": \"Yeste\",\r\n            \"provinceNo\": 2,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQwNjk4NjIxMTEzNTIwNzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"6d45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"03002\",\r\n            \"name\": \"Agost\",\r\n            \"provinceNo\": 3,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwMTEzNDI5NDA5NDUyMzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"6e45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"03003\",\r\n            \"name\": \"Agres\",\r\n            \"provinceNo\": 3,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkxMTA1MzEyMTMyODg5NTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"6f45e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"03004\",\r\n            \"name\": \"Aigües\",\r\n            \"provinceNo\": 3,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEyNjk2MjQ3ODY4MzA1MTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"7045e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"03005\",\r\n            \"name\": \"Albatera\",\r\n            \"provinceNo\": 3,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM4NDA2NDE0MzQwOTU5MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"1646e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"04029\",\r\n            \"name\": \"Berja\",\r\n            \"provinceNo\": 4,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg1MDcxODkyMTk3NjQ4MzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"1746e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"04030\",\r\n            \"name\": \"Canjáyar\",\r\n            \"provinceNo\": 4,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY0NjIwMTcwNTE2NTU3NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"1846e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"04031\",\r\n            \"name\": \"Cantoria\",\r\n            \"provinceNo\": 4,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk5NDI1NDIyMTk0NzA4MTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"1946e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"04032\",\r\n            \"name\": \"Carboneras\",\r\n            \"provinceNo\": 4,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:14.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYzMTAzNjIxNDU2ODg4MTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"6e47e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"06022\",\r\n            \"name\": \"Burguillos del Cerro\",\r\n            \"provinceNo\": 6,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk4NTc4MzU4MjE4NjQ5MDczMTswMDsn\\\"\",\r\n            \"systemId\": \"6f47e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"06023\",\r\n            \"name\": \"Cabeza del Buey\",\r\n            \"provinceNo\": 6,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk4NjQ3MjU1NDQ3MzYxOTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"7047e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"06024\",\r\n            \"name\": \"Cabeza la Vaca\",\r\n            \"provinceNo\": 6,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjM5NjE0OTkzMjYxNTUxNzI1MTswMDsn\\\"\",\r\n            \"systemId\": \"7147e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"06025\",\r\n            \"name\": \"Calamonte\",\r\n            \"provinceNo\": 6,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY4ODAwNjcxNDM0MjI4MTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"7247e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"06026\",\r\n            \"name\": \"Calera de León\",\r\n            \"provinceNo\": 6,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ0NjU0ODQ2ODc2MzMwMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"1548e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"07021\",\r\n            \"name\": \"Estellencs\",\r\n            \"provinceNo\": 7,\r\n            \"autonomousCommunityNo\": 4,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY4OTAxMDYzNTY3MDYwNDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"1648e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"07022\",\r\n            \"name\": \"Felanitx\",\r\n            \"provinceNo\": 7,\r\n            \"autonomousCommunityNo\": 4,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk4MDE3MDU5OTM3MzY0NzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"1748e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"07023\",\r\n            \"name\": \"Ferreries\",\r\n            \"provinceNo\": 7,\r\n            \"autonomousCommunityNo\": 4,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ2NzYyNjQ5NDcxNjQ0NjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"1848e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"07024\",\r\n            \"name\": \"Formentera\",\r\n            \"provinceNo\": 7,\r\n            \"autonomousCommunityNo\": 4,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI3MjU0NDI2NTY4MDEwNDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"2e4be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"10067\",\r\n            \"name\": \"Coria\",\r\n            \"provinceNo\": 10,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQwOTMwMTI5Mzc1NjA2NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"2f4be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"10068\",\r\n            \"name\": \"Cuacos de Yuste\",\r\n            \"provinceNo\": 10,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM2OTczMDQ4NDMzMTMxNjk3MTswMDsn\\\"\",\r\n            \"systemId\": \"304be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"10069\",\r\n            \"name\": \"Cumbre, La\",\r\n            \"provinceNo\": 10,\r\n            \"autonomousCommunityNo\": 11,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA5OTMzMzg1MjM2ODI0NjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"324ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"16188\",\r\n            \"name\": \"Salmeroncillos\",\r\n            \"provinceNo\": 16,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk4MzA1NzEzODA1OTk3MjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"334ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"16189\",\r\n            \"name\": \"Salvacañete\",\r\n            \"provinceNo\": 16,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc3NDY4NjQ2NDY1MDQxNDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"8451e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"21006\",\r\n            \"name\": \"Alosno\",\r\n            \"provinceNo\": 21,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODM2NTYzMjM2MzMwMDk4MTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"8551e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"21007\",\r\n            \"name\": \"Aracena\",\r\n            \"provinceNo\": 21,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ0OTU4ODg1MzE5NjA2MDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"1d53e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"24038\",\r\n            \"name\": \"Carracedelo\",\r\n            \"provinceNo\": 24,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgxMjg3NTQyMjk3MDA5ODE3MTswMDsn\\\"\",\r\n            \"systemId\": \"1e53e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"24039\",\r\n            \"name\": \"Carrizo\",\r\n            \"provinceNo\": 24,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:15.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY0MzQyMjE5ODA0NjA5NDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"6e54e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"25181\",\r\n            \"name\": \"Puigverd d'Agramunt\",\r\n            \"provinceNo\": 25,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc4MDY3OTQ4NjQ3MTM2Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"eb54e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26056\",\r\n            \"name\": \"Cuzcurrita de Río Tirón\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc3MTgwODU4ODI3NDM5MzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"5955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26174\",\r\n            \"name\": \"Villarta-Quintana\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ3NzIwMzk2OTIwNDM3OTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"5a55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26175\",\r\n            \"name\": \"Villavelayo\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA2NTE0Njk1NDYyMDI2NzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"5b55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26176\",\r\n            \"name\": \"Villaverde de Rioja\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk1NjI5Nzk5Njc1MjIxMDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"5c55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26177\",\r\n            \"name\": \"Villoslada de Cameros\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxNTE5NTIzNzA1MTQyMjg4MTswMDsn\\\"\",\r\n            \"systemId\": \"5d55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26178\",\r\n            \"name\": \"Viniegra de Abajo\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgwNTI3NzUyNzQwOTIxODQwMTswMDsn\\\"\",\r\n            \"systemId\": \"5e55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26179\",\r\n            \"name\": \"Viniegra de Arriba\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI4MTc0MTY2NzY2Nzk1MTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"5f55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26180\",\r\n            \"name\": \"Zarratón\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU5MzQ0NzY0NDkyMzE4MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"6055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26181\",\r\n            \"name\": \"Zarzosa\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk1NzM2MDgwMjcwOTYxNzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"6155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"26183\",\r\n            \"name\": \"Zorraquín\",\r\n            \"provinceNo\": 26,\r\n            \"autonomousCommunityNo\": 17,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ0NTgzMTU2NzI3NzM1NDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"6255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27001\",\r\n            \"name\": \"Abadín\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM3NTIxMjc5MjQ3NDkzNTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"6355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27002\",\r\n            \"name\": \"Alfoz\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTIxOTQ2MTc0OTAyNzk0NDk5MTswMDsn\\\"\",\r\n            \"systemId\": \"6455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27003\",\r\n            \"name\": \"Antas de Ulla\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg4MTgxNTIzNjQzMTkzNDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27004\",\r\n            \"name\": \"Baleira\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA4MjU5Njk2MDk2OTE0NjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"6655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27901\",\r\n            \"name\": \"Baralla\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQzNzc0MzkwNzMyMjMwNTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"6755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27005\",\r\n            \"name\": \"Barreiros\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM4MjYwODQzOTQ1ODczMDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"6855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27006\",\r\n            \"name\": \"Becerreá\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc4MTE2NjA1MDI4OTA4NDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"6955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27007\",\r\n            \"name\": \"Begonte\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg5MTQwNTAyNDAxMDY5NDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"6a55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27008\",\r\n            \"name\": \"Bóveda\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc5MzYyMzQyNDQ2MzUxNDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"6b55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27902\",\r\n            \"name\": \"Burela\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTExNTE2Njg1NzEyODM1NzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"6c55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27009\",\r\n            \"name\": \"Carballedo\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM1NzQzNTEwNjg5OTkyNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"6d55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27010\",\r\n            \"name\": \"Castro de Rei\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ4ODc4NzEyMTk3NzMwNDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"6e55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27011\",\r\n            \"name\": \"Castroverde\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAwMzMxOTUxMzAxNDkyOTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"6f55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27012\",\r\n            \"name\": \"Cervantes\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI0NzgwNzc0Njg3NDkxNjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"7055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27013\",\r\n            \"name\": \"Cervo\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg5NTMzNjc1NDQzMTExODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"7155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27016\",\r\n            \"name\": \"Chantada\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg2NjE5NTEwNDE4Mzg5MTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"7255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27014\",\r\n            \"name\": \"Corgo, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgxNTYxNzI5NDIwOTA4ODU1MTswMDsn\\\"\",\r\n            \"systemId\": \"7355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27015\",\r\n            \"name\": \"Cospeito\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMzOTM2ODIzMDYzMzc4MDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"7455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27017\",\r\n            \"name\": \"Folgoso do Courel\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ5NTc2MjI3NjQ0NjY3MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"7555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27018\",\r\n            \"name\": \"Fonsagrada, A\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkwNDc5OTA4NzM2NzUzNDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"7655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27019\",\r\n            \"name\": \"Foz\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEyMTA4ODQ1NzgxNTA2NTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"7755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27020\",\r\n            \"name\": \"Friol\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI0NzM0MjI4MjgwODMwODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"7855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27022\",\r\n            \"name\": \"Guitiriz\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgyNjEwNzAzMjM0NjgwNzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"7955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27023\",\r\n            \"name\": \"Guntín\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI3Mjg5NTc3ODAxMjIyMTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"7a55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27024\",\r\n            \"name\": \"Incio, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAzODU1NzEwNjExNzkyNDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"7b55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27026\",\r\n            \"name\": \"Láncara\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMwNjczMjg3Mzc0MjgwNjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"7c55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27027\",\r\n            \"name\": \"Lourenzá\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMzMjczNjAzOTcxNTQxMDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"7d55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27028\",\r\n            \"name\": \"Lugo\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzcxOTM5NDcyODUzNzQwMTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"7e55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27029\",\r\n            \"name\": \"Meira\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE4OTI1MDc4MzE0MTI0MTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"7f55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27030\",\r\n            \"name\": \"Mondoñedo\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQxNDk2MDU2Njc4Njc5NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"8055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27031\",\r\n            \"name\": \"Monforte de Lemos\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU1ODU0MjQwOTU2NDI3NzEzMTswMDsn\\\"\",\r\n            \"systemId\": \"8155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27032\",\r\n            \"name\": \"Monterroso\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQxODIxNzQ0NzYxNzIzNDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"8255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27033\",\r\n            \"name\": \"Muras\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU2OTA3MzU3NDY5NDUyMzYxMTswMDsn\\\"\",\r\n            \"systemId\": \"8355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27034\",\r\n            \"name\": \"Navia de Suarna\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ1MjA1NjU1NTIzNDk1MjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"8455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27035\",\r\n            \"name\": \"Negueira de Muñiz\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg2NTIyODg1MjY4NTgzOTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"8555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27037\",\r\n            \"name\": \"Nogais, As\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1NTY4NTUxMzE1MjE3MTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"8655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27038\",\r\n            \"name\": \"Ourol\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMwMjA4MTI0MjU1MjEzMDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"8755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27039\",\r\n            \"name\": \"Outeiro de Rei\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODgzNjUwMDg3NDIxMTU5MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"8855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27040\",\r\n            \"name\": \"Palas de Rei\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAwNDQ3MzEzOTc5MDc0ODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"8955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27041\",\r\n            \"name\": \"Pantón\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY5MTgyMjgwNjY2ODU1OTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"8a55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27042\",\r\n            \"name\": \"Paradela\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA4NTU0MDUyNjYxNTAyNDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"8b55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27043\",\r\n            \"name\": \"Páramo, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU2NDkyNTgwMjA1MTk5NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"8c55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27044\",\r\n            \"name\": \"Pastoriza, A\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg3MDQ5NDQ5NjA2NjExNTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"8d55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27045\",\r\n            \"name\": \"Pedrafita do Cebreiro\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM2MzMxNTMzODU3NjY5ODc4MTswMDsn\\\"\",\r\n            \"systemId\": \"8e55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27047\",\r\n            \"name\": \"Pobra do Brollón, A\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTczODgyNjA0NTczNzYxNTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"8f55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27046\",\r\n            \"name\": \"Pol\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg5Nzk4NzAzNzA3MDU1NDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"9055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27048\",\r\n            \"name\": \"Pontenova, A\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDYwMTU0NTY0ODIwMjU3ODY3MTswMDsn\\\"\",\r\n            \"systemId\": \"9155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27049\",\r\n            \"name\": \"Portomarín\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM5Mjc3OTYzNTgxNDQ0MTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"9255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27050\",\r\n            \"name\": \"Quiroga\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDYyNTM3MzI4ODM4OTY2OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"9355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27056\",\r\n            \"name\": \"Rábade\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYzMDA0ODQxMjQxODEwMTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"9455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27051\",\r\n            \"name\": \"Ribadeo\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkxOTE2NjY3Mjc1Njc3MjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"9555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27052\",\r\n            \"name\": \"Ribas de Sil\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQyMjgxOTYzNTgwNzE4NjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"9655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27053\",\r\n            \"name\": \"Ribeira de Piquín\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA0MDA0OTY2OTE1ODE2MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"9755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27054\",\r\n            \"name\": \"Riotorto\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjM2MjY5MDQwMTY4NDU4NTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"9855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27055\",\r\n            \"name\": \"Samos\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU0Mzg0NzM5ODYyMDYyNjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"9955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27057\",\r\n            \"name\": \"Sarria\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk0NzU2NTYxNDkwMDc2MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"9a55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27058\",\r\n            \"name\": \"Saviñao, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjM0NTk5NTc5OTYzMTA1MjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"9b55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27059\",\r\n            \"name\": \"Sober\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2NzkwMzUzMzkxODg2NjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"9c55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27060\",\r\n            \"name\": \"Taboada\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEwOTI0Nzg4MDAzMzQyNTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"9d55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27061\",\r\n            \"name\": \"Trabada\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUwOTAxMDk0MjE4ODM4Mjc1MTswMDsn\\\"\",\r\n            \"systemId\": \"9e55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27062\",\r\n            \"name\": \"Triacastela\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg0MTUyOTk2ODkyNzEyOTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"9f55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27063\",\r\n            \"name\": \"Valadouro, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ5MDE5NTQyMDk0NzQ4Nzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"a055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27064\",\r\n            \"name\": \"Vicedo, O\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ1Njk3NDIyOTM4MDY3MTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"a155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27065\",\r\n            \"name\": \"Vilalba\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkwMTMxMzQ4ODA5Nzk0NjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"a255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27066\",\r\n            \"name\": \"Viveiro\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQwMDA2NTQ3OTUyODU4Njc0MTswMDsn\\\"\",\r\n            \"systemId\": \"a355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27021\",\r\n            \"name\": \"Xermade\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAyNjA0NDAwMjIwMjI3NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"a455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"27025\",\r\n            \"name\": \"Xove\",\r\n            \"provinceNo\": 27,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDgxODEzMTc0ODAxNTk3MTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"a555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28001\",\r\n            \"name\": \"Acebeda, La\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAyODY3MTE4Nzk4OTE3NTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"a655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28002\",\r\n            \"name\": \"Ajalvir\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQxNTE3NDM5Mzc5Mjk1MzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"a755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28003\",\r\n            \"name\": \"Alameda del Valle\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkxOTM5OTU1NTE3MjUzOTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"a855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28004\",\r\n            \"name\": \"Álamo, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk0NDM5NTk0MDIyMTMyNTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"a955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28005\",\r\n            \"name\": \"Alcalá de Henares\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY4NDQyNDIzNTMwNDU2NDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"aa55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28006\",\r\n            \"name\": \"Alcobendas\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY0MzkxMTA0MTQyMTQ2MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"ab55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28007\",\r\n            \"name\": \"Alcorcón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTcyNjc0ODI3MTYyODMzODE3MTswMDsn\\\"\",\r\n            \"systemId\": \"ac55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28008\",\r\n            \"name\": \"Aldea del Fresno\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA3NTQ3MTg5MDMwMTE0MTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"ad55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28009\",\r\n            \"name\": \"Algete\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI5NDcxMDY2NDYwMzEwNzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"ae55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28010\",\r\n            \"name\": \"Alpedrete\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYwMDAyNjQ0MTE5NzA5ODYyMTswMDsn\\\"\",\r\n            \"systemId\": \"af55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28011\",\r\n            \"name\": \"Ambite\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU2OTcxMDUwMTYxNjA2NzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"b055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28012\",\r\n            \"name\": \"Anchuelo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc4OTExMzc1NDkzODg1OTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"b155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28013\",\r\n            \"name\": \"Aranjuez\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI1MDkzNjgxODY0MjExMTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"b255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28014\",\r\n            \"name\": \"Arganda del Rey\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcwNzA5MjUxODkyMDIyOTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"b355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28015\",\r\n            \"name\": \"Arroyomolinos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQzNjU4NjU2NTU4NjMwMDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"b455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28016\",\r\n            \"name\": \"Atazar, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMyMzYyOTc3OTE2ODMyODI2MTswMDsn\\\"\",\r\n            \"systemId\": \"b555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28017\",\r\n            \"name\": \"Batres\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTEzMjUzNjU0NjAwMzIzNzM0MTswMDsn\\\"\",\r\n            \"systemId\": \"b655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28018\",\r\n            \"name\": \"Becerril de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDg4OTYzMTgxMjc0OTY5OTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"b755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28019\",\r\n            \"name\": \"Belmonte de Tajo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE1MzU3NDg5MjIwMDIwMDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"b855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28021\",\r\n            \"name\": \"Berrueco, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ1NzQzNDAyMTc1NjUxNjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"b955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28020\",\r\n            \"name\": \"Berzosa del Lozoya\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY2NDI2NjU1Nzc0MTAyMDYyMTswMDsn\\\"\",\r\n            \"systemId\": \"ba55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28022\",\r\n            \"name\": \"Boadilla del Monte\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU1OTQzMjY4NTIxMDIzMjA1MTswMDsn\\\"\",\r\n            \"systemId\": \"bb55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28023\",\r\n            \"name\": \"Boalo, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcwNDcxMjYyMjAzMDgwOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"bc55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28024\",\r\n            \"name\": \"Braojos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkwMTc1MTk1MDE5NzQ5NzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"bd55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28025\",\r\n            \"name\": \"Brea de Tajo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM1NDI1NzM2MzE1ODc4NjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"be55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28026\",\r\n            \"name\": \"Brunete\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMxMzg0Mjk0OTU4MzA1ODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"bf55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28027\",\r\n            \"name\": \"Buitrago del Lozoya\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY3Njg3NTUwMDQyNjY4MDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"c055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28028\",\r\n            \"name\": \"Bustarviejo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM4ODQyMjMwMDU4NjQyMzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"c155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28029\",\r\n            \"name\": \"Cabanillas de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE3NzU4MTA5NzY2NDUwNjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"c255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28030\",\r\n            \"name\": \"Cabrera, La\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTEzMTM0NzkwNDE3Mzk5MTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"c355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28031\",\r\n            \"name\": \"Cadalso de los Vidrios\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg2NTQxMDc1NzUxMDkzNDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"c455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28032\",\r\n            \"name\": \"Camarma de Esteruelas\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM4MjA5ODc5MDI4MjYwMzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"c555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28033\",\r\n            \"name\": \"Campo Real\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk0MzM1MjAxMjQxNTg4Nzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"c655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28034\",\r\n            \"name\": \"Canencia\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA1OTUzMjg3MDIzOTk4NzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"c755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28035\",\r\n            \"name\": \"Carabaña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTEzNjcyMTE1Nzk5NzU2OTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"c855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28036\",\r\n            \"name\": \"Casarrubuelos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg3MzQwODYzODg5NDA1MTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"c955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28037\",\r\n            \"name\": \"Cenicientos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ4MTA5MjI4NjcwMzQ1MjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"ca55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28038\",\r\n            \"name\": \"Cercedilla\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA0NjQyMjAxMDYxMzQwOTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"cb55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28039\",\r\n            \"name\": \"Cervera de Buitrago\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU4ODg3OTk0MDg5MzU4NzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"cc55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28051\",\r\n            \"name\": \"Chapinería\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk4NTU1MjA3NTY0OTQzOTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"cd55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28052\",\r\n            \"name\": \"Chinchón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA4NjQwOTkzOTg5NTIzNzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"ce55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28040\",\r\n            \"name\": \"Ciempozuelos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTUwODI3NDE3ODQxNzQwNzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"cf55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28041\",\r\n            \"name\": \"Cobeña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjgwODkyNTE1MDk2NTE0MTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"d055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28046\",\r\n            \"name\": \"Collado Mediano\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUyMjA2MDM4OTUzMzgzMzk3MTswMDsn\\\"\",\r\n            \"systemId\": \"d155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28047\",\r\n            \"name\": \"Collado Villalba\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgxODY0ODQzMzI1MjU1OTExMTswMDsn\\\"\",\r\n            \"systemId\": \"d255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28043\",\r\n            \"name\": \"Colmenar de Oreja\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY2NzgyNjA4ODM2NTExMzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"d355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28042\",\r\n            \"name\": \"Colmenar del Arroyo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM2NjkyNjE3MDI3Njg2NjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"d455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28045\",\r\n            \"name\": \"Colmenar Viejo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI0MjgxMTA0NDkxNzA4OTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"d555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28044\",\r\n            \"name\": \"Colmenarejo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA3OTI3MzgzNjA3MzQ3OTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"d655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28048\",\r\n            \"name\": \"Corpa\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAwMDA3MjI4ODkxNTYzMjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"d755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28049\",\r\n            \"name\": \"Coslada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg5NzA1NDMzMzg0OTg4NTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"d855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28050\",\r\n            \"name\": \"Cubas de la Sagra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI4MTc4MTk2OTkxMjY2MjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"d955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28053\",\r\n            \"name\": \"Daganzo de Arriba\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQxMDYwNTUyODY5NzEwNjA0MTswMDsn\\\"\",\r\n            \"systemId\": \"da55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28054\",\r\n            \"name\": \"Escorial, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzYxNjk4Nzc3MDA4MzA0MjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"db55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28055\",\r\n            \"name\": \"Estremera\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODgyMjg4NDc5NTA4MDAyNDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"dc55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28056\",\r\n            \"name\": \"Fresnedillas de la Oliva\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU3NTIxODQ1MDcwNTA4MzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"dd55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28057\",\r\n            \"name\": \"Fresno de Torote\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMzNzU1MTU4MjcyMDk0NDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"de55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28058\",\r\n            \"name\": \"Fuenlabrada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQzMzQwNDYyNDc4MDk3MjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"df55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28059\",\r\n            \"name\": \"Fuente el Saz de Jarama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIxNzQ4MjA4OTM3NzI2NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"e055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28060\",\r\n            \"name\": \"Fuentidueña de Tajo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTYyMjM4NTkxNjcwNTEyNjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"e155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28061\",\r\n            \"name\": \"Galapagar\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg2NDYwNjgzNDYzMDkzNzg1MTswMDsn\\\"\",\r\n            \"systemId\": \"e255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28062\",\r\n            \"name\": \"Garganta de los Montes\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ2NzEzNzIzNzQ2MzEyNjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"e355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28063\",\r\n            \"name\": \"Gargantilla del Lozoya y Pinilla de Buitrago\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjE5NDkyMDg4NTA4OTAyNzczMTswMDsn\\\"\",\r\n            \"systemId\": \"e455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28064\",\r\n            \"name\": \"Gascones\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU3MzExNTQ5MDYxOTg2NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"e555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28065\",\r\n            \"name\": \"Getafe\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA1MjI2Mzc1MTc5MTM4OTExMTswMDsn\\\"\",\r\n            \"systemId\": \"e655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28066\",\r\n            \"name\": \"Griñón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTUzOTEyNDA4MzY3NTUzMzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"e755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28067\",\r\n            \"name\": \"Guadalix de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE0MzA5ODI2MDQxOTI2NTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"e855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28068\",\r\n            \"name\": \"Guadarrama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg3NjA0NDMyNDI3MjkwOTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"e955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28069\",\r\n            \"name\": \"Hiruela, La\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjczNjQxMzQyNzcyMjQxMjM5MTswMDsn\\\"\",\r\n            \"systemId\": \"ea55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28070\",\r\n            \"name\": \"Horcajo de la Sierra-Aoslos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM5OTI3OTI0MDM4MzM1OTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"eb55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28071\",\r\n            \"name\": \"Horcajuelo de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgyMzM5NjIxMjIzNjg5ODkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ec55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28072\",\r\n            \"name\": \"Hoyo de Manzanares\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk0ODgwNzczNTkzMzc1Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"ed55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28073\",\r\n            \"name\": \"Humanes de Madrid\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI0MTE3MzQyNjQ4NTU5Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"ee55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28074\",\r\n            \"name\": \"Leganés\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMzNTYwNDcwNzI4MzA0ODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"ef55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28075\",\r\n            \"name\": \"Loeches\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ3MzgyMzgwNTYzMzczNDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"f055e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28076\",\r\n            \"name\": \"Lozoya\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUyMzc5NDQ3OTI2Mzc3MjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"f155e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28901\",\r\n            \"name\": \"Lozoyuela-Navas-Sieteiglesias\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIwMTkwMDE4MDYyNTc4OTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"f255e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28078\",\r\n            \"name\": \"Madarcos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM0NjA1MDMyODIwNzA2MjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"f355e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28079\",\r\n            \"name\": \"Madrid\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAxMjEyNjkzNTIxODk0NDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"f455e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28080\",\r\n            \"name\": \"Majadahonda\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUyMDE5MTY0MTg1Nzg4MDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"f555e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28082\",\r\n            \"name\": \"Manzanares el Real\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAyNTUxMzkyNjIzMTc3MTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"f655e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28083\",\r\n            \"name\": \"Meco\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcwNTAyOTk4NDczMjcyMzU4MTswMDsn\\\"\",\r\n            \"systemId\": \"f755e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28084\",\r\n            \"name\": \"Mejorada del Campo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAyODEwMTIzNzc3MzI0MDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"f855e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28085\",\r\n            \"name\": \"Miraflores de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI5MTQwNDI1MzExMzc0NjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"f955e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28086\",\r\n            \"name\": \"Molar, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM3NzAwODcwODE2MDAwODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"fa55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28087\",\r\n            \"name\": \"Molinos, Los\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM0MjEwMjAxMzY3OTI5NjM1MTswMDsn\\\"\",\r\n            \"systemId\": \"fb55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28088\",\r\n            \"name\": \"Montejo de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc0MzAzNTUwMjAzNjM4Njk1MTswMDsn\\\"\",\r\n            \"systemId\": \"fc55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28089\",\r\n            \"name\": \"Moraleja de Enmedio\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY4Nzc5NTA3MDg1NzMxNzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"fd55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28090\",\r\n            \"name\": \"Moralzarzal\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDMyMDc5NTEzNDQ3MjQzNTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"fe55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28091\",\r\n            \"name\": \"Morata de Tajuña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDczMTgxNzY0NzQyOTA4Nzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"ff55e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28092\",\r\n            \"name\": \"Móstoles\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk4Nzk2NDg3ODkyNzMyNzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"0056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28093\",\r\n            \"name\": \"Navacerrada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIxMDI5ODk2MTI5MjE4MDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"0156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28094\",\r\n            \"name\": \"Navalafuente\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk3MzIyNDU5NTQzNDQ1MDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"0256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28095\",\r\n            \"name\": \"Navalagamella\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE4MDcxMzMyNTY5NjkxOTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"0356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28096\",\r\n            \"name\": \"Navalcarnero\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg3NDk5MjM4MzE1MjAyNTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"0456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28097\",\r\n            \"name\": \"Navarredonda y San Mamés\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkzNTI5Mzk0NjUwODk3NTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"0556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28099\",\r\n            \"name\": \"Navas del Rey\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIyNzA1ODIzMjk3Mjk5NjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"0656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28100\",\r\n            \"name\": \"Nuevo Baztán\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTczMTY4NDY2MjkzNjMwMDc5MTswMDsn\\\"\",\r\n            \"systemId\": \"0756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28101\",\r\n            \"name\": \"Olmeda de las Fuentes\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg5OTE5MTcxMjc2MjYyMTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"0856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28102\",\r\n            \"name\": \"Orusco de Tajuña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg0MTIwMTQzMTU0MzY0NDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"0956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28104\",\r\n            \"name\": \"Paracuellos de Jarama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE0MTAwNTY2MzM5NDM1MjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"0a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28106\",\r\n            \"name\": \"Parla\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI4NTY4NTc3NTcwNjQyNDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"0b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28107\",\r\n            \"name\": \"Patones\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM0NTEyOTc5OTUxNDEwMjc5MTswMDsn\\\"\",\r\n            \"systemId\": \"0c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28108\",\r\n            \"name\": \"Pedrezuela\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUzMjY5NTU1ODgyNzMzMjg3MTswMDsn\\\"\",\r\n            \"systemId\": \"0d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28109\",\r\n            \"name\": \"Pelayos de la Presa\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzAwNjkwMjY3MTMzMTE5Mzg1MTswMDsn\\\"\",\r\n            \"systemId\": \"0e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28110\",\r\n            \"name\": \"Perales de Tajuña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjk0Mzk0NjQzMjg3MTc5MTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"0f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28111\",\r\n            \"name\": \"Pezuela de las Torres\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM0ODI0ODQ2ODgyMTA3ODA0MTswMDsn\\\"\",\r\n            \"systemId\": \"1056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28112\",\r\n            \"name\": \"Pinilla del Valle\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQyODM2ODM4MjcxNjQxMjA0MTswMDsn\\\"\",\r\n            \"systemId\": \"1156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28113\",\r\n            \"name\": \"Pinto\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgxMjU1ODQwMzUzODkwMDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"1256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28114\",\r\n            \"name\": \"Piñuécar-Gandullas\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg0MTEzNDQwNjM1MjI2OTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"1356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28115\",\r\n            \"name\": \"Pozuelo de Alarcón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIyMTQxMjA5Mjg4MzQ2NDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"1456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28116\",\r\n            \"name\": \"Pozuelo del Rey\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkzMjc4NDgyNzE3MjA4Nzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"1556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28117\",\r\n            \"name\": \"Prádena del Rincón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ1MjEyODQ2NDQ2MzMwMTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"1656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28118\",\r\n            \"name\": \"Puebla de la Sierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYzMDU3MDk5MzU0MzI0NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"1756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28902\",\r\n            \"name\": \"Puentes Viejas\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM4MDQzODgxNjM5NzM0MTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"1856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28119\",\r\n            \"name\": \"Quijorna\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg2MzExMTk2Mzk1OTI5MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"1956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28120\",\r\n            \"name\": \"Rascafría\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzMzg4MjcxNjMyNzg4NzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"1a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28121\",\r\n            \"name\": \"Redueña\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY0ODQyMjIyOTUyNjY1NjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"1b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28122\",\r\n            \"name\": \"Ribatejada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc3MzE1NjU3NDE3NzYwNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"1c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28123\",\r\n            \"name\": \"Rivas-Vaciamadrid\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY3ODMzMDUxMDAyMTg3NTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"1d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28124\",\r\n            \"name\": \"Robledillo de la Jara\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgzNDcwMTc3NDg2MTA5MzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"1e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28125\",\r\n            \"name\": \"Robledo de Chavela\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM3NDI4MzM3NDMyNjY4MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"1f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28126\",\r\n            \"name\": \"Robregordo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQyOTQ2ODY3Njk2NDQ3OTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"2056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28127\",\r\n            \"name\": \"Rozas de Madrid, Las\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzIxNDAzNTAwMTA3MDU3MjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"2156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28128\",\r\n            \"name\": \"Rozas de Puerto Real\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY4NzI0NjkyMjcwOTM4NDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"2256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28129\",\r\n            \"name\": \"San Agustín del Guadalix\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzIwOTg2MDY4NTAzMDA4MzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"2356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28130\",\r\n            \"name\": \"San Fernando de Henares\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYxODI5NTE5MjMwNzIzNjE4MTswMDsn\\\"\",\r\n            \"systemId\": \"2456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28131\",\r\n            \"name\": \"San Lorenzo de El Escorial\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY1Nzc5ODA1MjMzMzMxMDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"2556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28132\",\r\n            \"name\": \"San Martín de la Vega\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMxOTM2NjI0NTAzMzE3OTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"2656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28133\",\r\n            \"name\": \"San Martín de Valdeiglesias\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQ1Mzc3MDM0MDkwMjk4NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"2756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28134\",\r\n            \"name\": \"San Sebastián de los Reyes\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYyMzg4MjgxMDEzMjIwODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"2856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28135\",\r\n            \"name\": \"Santa María de la Alameda\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ0MzA1MjMzMjQ5NjYyMTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"2956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28136\",\r\n            \"name\": \"Santorcaz\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE4NjE3Njc1NjAzNjEwODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"2a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28137\",\r\n            \"name\": \"Santos de la Humosa, Los\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM4MjQ5ODYxMzIzMTYxMzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"2b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28138\",\r\n            \"name\": \"Serna del Monte, La\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA4MDY5MzgwMTcxODQ3OTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"2c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28140\",\r\n            \"name\": \"Serranillos del Valle\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ3NTc0NTA4MjczODAzMjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"2d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28141\",\r\n            \"name\": \"Sevilla la Nueva\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU1NjM5NzI0MDQyNTgyMjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"2e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28143\",\r\n            \"name\": \"Somosierra\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE5NTU5OTc3MjQ1MTUxNTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"2f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28144\",\r\n            \"name\": \"Soto del Real\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI4MTI3NDQwODUxNzQ0Mzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"3056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28145\",\r\n            \"name\": \"Talamanca de Jarama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA3NDA1MzIyMDU4NjYwOTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"3156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28146\",\r\n            \"name\": \"Tielmes\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg5MTI0Mjg4NTQ2NTkwMDUzMTswMDsn\\\"\",\r\n            \"systemId\": \"3256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28147\",\r\n            \"name\": \"Titulcia\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgyMzQ2MjcxNzMwOTM4MzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"3356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28148\",\r\n            \"name\": \"Torrejón de Ardoz\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3NjYzODUwMjQzNjgzMDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"3456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28149\",\r\n            \"name\": \"Torrejón de la Calzada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI5MjU1MjYxODQxNjYzMTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"3556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28150\",\r\n            \"name\": \"Torrejón de Velasco\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc5MTYwNTExNTk4NjcyMjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"3656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28151\",\r\n            \"name\": \"Torrelaguna\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDYyNTY1MDM0MjQxODQ5NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"3756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28152\",\r\n            \"name\": \"Torrelodones\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ0NjUxODE5MjQ4Mzg4MDQwMTswMDsn\\\"\",\r\n            \"systemId\": \"3856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28153\",\r\n            \"name\": \"Torremocha de Jarama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY1MDEyNTE4NDA1NjgwOTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"3956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28154\",\r\n            \"name\": \"Torres de la Alameda\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ2NTM2NjQ0NzYxNDEwNzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28903\",\r\n            \"name\": \"Tres Cantos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ1MDQ0NzgxOTEyODY5MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"3b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28155\",\r\n            \"name\": \"Valdaracete\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI1MzM3MjU4NzA2NDAxNzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"3c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28156\",\r\n            \"name\": \"Valdeavero\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYzOTcwNjE5NzIwMjY5NzM0MTswMDsn\\\"\",\r\n            \"systemId\": \"3d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28157\",\r\n            \"name\": \"Valdelaguna\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMxNTg1OTY5OTQwNjYxMjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"3e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28158\",\r\n            \"name\": \"Valdemanco\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQyMDg1ODgwMTM2MDQ5NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"3f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28159\",\r\n            \"name\": \"Valdemaqueda\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIzNDczMDUzNTg3MjczNTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"4056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28160\",\r\n            \"name\": \"Valdemorillo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc5Mjc4NTM1NzczMDM5NjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"4156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28161\",\r\n            \"name\": \"Valdemoro\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUzNzQxODYzNDY2NTU0NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"4256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28162\",\r\n            \"name\": \"Valdeolmos-Alalpardo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU2MjY5OTI2OTYxNzk4NzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"4356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28163\",\r\n            \"name\": \"Valdepiélagos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY3NTQ4MTUzNTgyNjAxNzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"4456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28164\",\r\n            \"name\": \"Valdetorres de Jarama\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAyNjc2NzExMzM3MjYzNDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"4556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28165\",\r\n            \"name\": \"Valdilecha\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI4NTgyMzQwNjY2MjAzNTczMTswMDsn\\\"\",\r\n            \"systemId\": \"4656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28166\",\r\n            \"name\": \"Valverde de Alcalá\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY1NTA1Njg1MTU2MjI0ODYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28167\",\r\n            \"name\": \"Velilla de San Antonio\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ3NTk2MTE4NDA5Mzk2NTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"4856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28168\",\r\n            \"name\": \"Vellón, El\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU0OTE4ODUzNzc2NjY2NTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"4956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28169\",\r\n            \"name\": \"Venturada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkyMDQyOTc2ODY1MjA2NjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"4a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28171\",\r\n            \"name\": \"Villa del Prado\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM3NDQ0Nzc1ODc2OTkzMjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"4b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28170\",\r\n            \"name\": \"Villaconejos\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMwODMyNzA2NzAyNTEwNTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"4c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28172\",\r\n            \"name\": \"Villalbilla\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE3NDIyMTE4NDYxMzc1NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"4d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28173\",\r\n            \"name\": \"Villamanrique de Tajo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEzMTIwNjUxMzE1MzAyNzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"4e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28174\",\r\n            \"name\": \"Villamanta\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEwMTg3Nzc4MzkwMDk3NTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"4f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28175\",\r\n            \"name\": \"Villamantilla\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg2MDg5MDc3ODEzODg0NTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"5056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28176\",\r\n            \"name\": \"Villanueva de la Cañada\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg2MjkxNjY0MjA4ODgwODk3MTswMDsn\\\"\",\r\n            \"systemId\": \"5156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28178\",\r\n            \"name\": \"Villanueva de Perales\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5OTcxNjk2MTIxNjk1MzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"5256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28177\",\r\n            \"name\": \"Villanueva del Pardillo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk5ODI1MDA2MDc0MDMzOTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"5356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28179\",\r\n            \"name\": \"Villar del Olmo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkwNTE2MTE0MzA4OTc3NTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"5456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28180\",\r\n            \"name\": \"Villarejo de Salvanés\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY4NDQ4OTY3MTUzMDI2ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"5556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28181\",\r\n            \"name\": \"Villaviciosa de Odón\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ4NTU1MzE4OTYwNTA3NTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"5656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28182\",\r\n            \"name\": \"Villavieja del Lozoya\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQwMTE5NDc1NzUzOTgxMzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"5756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"28183\",\r\n            \"name\": \"Zarzalejo\",\r\n            \"provinceNo\": 28,\r\n            \"autonomousCommunityNo\": 13,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI4MTg1MTg3NjIwODcwNDczMTswMDsn\\\"\",\r\n            \"systemId\": \"5856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29001\",\r\n            \"name\": \"Alameda\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ5NjI0OTM4NDM4NDM3OTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"5956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29002\",\r\n            \"name\": \"Alcaucín\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI0ODg5ODI3Mzk4MjUzNjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"5a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29003\",\r\n            \"name\": \"Alfarnate\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk2NzgzNDI4ODQ5Mzk0MjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"5b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29004\",\r\n            \"name\": \"Alfarnatejo\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk2NTc5OTI3NTExODM3OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"5c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29005\",\r\n            \"name\": \"Algarrobo\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUzODYxNTYwMTA4MzgzOTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"5d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29006\",\r\n            \"name\": \"Algatocín\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjIxNTAwMDEwMzIyNzQ1OTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"5e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29007\",\r\n            \"name\": \"Alhaurín de la Torre\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAxOTE2MTg3NDY5MTA2ODc0MTswMDsn\\\"\",\r\n            \"systemId\": \"5f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29008\",\r\n            \"name\": \"Alhaurín el Grande\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEwODIwNDc5NDU0NzM3NjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29009\",\r\n            \"name\": \"Almáchar\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwMDc1Nzc5NDAyMjUyOTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"6156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29010\",\r\n            \"name\": \"Almargen\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODExNzQ3MTQ2MDE0MDE2MDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"6256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29011\",\r\n            \"name\": \"Almogía\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQzNjk1MzkwNDkzNTYwOTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"6356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29012\",\r\n            \"name\": \"Álora\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI1MjY1NDA1NDE5MzIyNTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29013\",\r\n            \"name\": \"Alozaina\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDEwMDQ4NjAwMTMzODU2NzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"6556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29014\",\r\n            \"name\": \"Alpandeire\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk5NzA0ODgwMTE2OTAxODc3MTswMDsn\\\"\",\r\n            \"systemId\": \"6656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29015\",\r\n            \"name\": \"Antequera\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwNDEzOTgwODM0MzYzNDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29016\",\r\n            \"name\": \"Árchez\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDEzMDQ0OTI5NjkwNDA4NjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"6856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29017\",\r\n            \"name\": \"Archidona\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwNTc2ODQ1ODY0NzQyODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"6956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29018\",\r\n            \"name\": \"Ardales\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg3ODM5ODU3NDU5MTExMDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"6a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29019\",\r\n            \"name\": \"Arenas\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA3MTk2MDc0MTgzMjQ0NzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29020\",\r\n            \"name\": \"Arriate\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTE4MjY0OTc2MjUzODE2MzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"6c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29021\",\r\n            \"name\": \"Atajate\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk4OTMwODAyNTc2MjIzMDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"6d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29022\",\r\n            \"name\": \"Benadalid\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk2NjkwOTMyMjA3Mjc1NjExMTswMDsn\\\"\",\r\n            \"systemId\": \"6e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29023\",\r\n            \"name\": \"Benahavís\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc2NTY3ODUxMzkwNjY3ODMzMTswMDsn\\\"\",\r\n            \"systemId\": \"6f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29024\",\r\n            \"name\": \"Benalauría\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEwMjIwNTEzNjEzMTc3NzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"7056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29025\",\r\n            \"name\": \"Benalmádena\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg5ODg4Mjk1NTI3OTIxODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"7156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29026\",\r\n            \"name\": \"Benamargosa\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQyNTAxNTU1MTQ0Mzk3NzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"7256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29027\",\r\n            \"name\": \"Benamocarra\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA4MTEyMzgwMDU0MTQ2OTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"7356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29028\",\r\n            \"name\": \"Benaoján\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk0MDA5ODQyMjYzNTk3MzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"7456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29029\",\r\n            \"name\": \"Benarrabá\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ2Nzk0NDMzNTY1MTcxMDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"7556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29030\",\r\n            \"name\": \"Borge, El\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU4NDg4MjE3NjQwODE0OTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"7656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29031\",\r\n            \"name\": \"Burgo, El\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMwODc0NjkzNzk2NTQ2NTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"7756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29032\",\r\n            \"name\": \"Campillos\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI2NTQ0MTE5MDE3NTAxNTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"7856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29033\",\r\n            \"name\": \"Canillas de Aceituno\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ3MzQ0NDM5Njg4Mzg5NzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"7956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29034\",\r\n            \"name\": \"Canillas de Albaida\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjcxNjM3NTE0MTcxNzk3NDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"7a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29035\",\r\n            \"name\": \"Cañete la Real\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk4NjQyMzM2MTM1NjQ4NzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"7b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29036\",\r\n            \"name\": \"Carratraca\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODIzMjMxNjE3MzU5ODcyMTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"7c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29037\",\r\n            \"name\": \"Cartajima\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUwMDIxNTE1NjY0ODM5MTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"7d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29038\",\r\n            \"name\": \"Cártama\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU4MDgwMDgzNzgyODYzMTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"7e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29039\",\r\n            \"name\": \"Casabermeja\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI3MzI4MTcxNjI3ODcwOTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"7f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29040\",\r\n            \"name\": \"Casarabonela\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3ODU3NDY0NzI4ODAwNDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"8056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29041\",\r\n            \"name\": \"Casares\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYyNDQ5NjI4MDk3OTA4NjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29042\",\r\n            \"name\": \"Coín\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ5MTA0Mjc2NDczNjE1ODAzMTswMDsn\\\"\",\r\n            \"systemId\": \"8256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29043\",\r\n            \"name\": \"Colmenar\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYwMjIzMzcwMzU4NjQ2MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"8356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29044\",\r\n            \"name\": \"Comares\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ3ODM4MDI4ODEzNTI5NDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"8456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29045\",\r\n            \"name\": \"Cómpeta\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ5NTgxMjM0NzE0MzM4OTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"8556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29046\",\r\n            \"name\": \"Cortes de la Frontera\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcwMDM3MDAzMjc5MjM4MDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"8656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29047\",\r\n            \"name\": \"Cuevas Bajas\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE3MDQxODU4MjQ2NjE3NzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"8756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29049\",\r\n            \"name\": \"Cuevas de San Marcos\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAyNzU4MzkxMTk1ODA5MDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"8856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29048\",\r\n            \"name\": \"Cuevas del Becerro\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk5NzQyODUwMjYwOTA0NDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"8956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29050\",\r\n            \"name\": \"Cútar\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA5NjYzOTY4NTA5NDc2MDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"8a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29051\",\r\n            \"name\": \"Estepona\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAzMTcwMjQyMDIyNDk1MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"8b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29052\",\r\n            \"name\": \"Faraján\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAxNDE5NDcyMjYzNjcxNjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"8c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29053\",\r\n            \"name\": \"Frigiliana\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE2NzI2OTkyOTA1MDgyMDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"8d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29054\",\r\n            \"name\": \"Fuengirola\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg3MjgzNTA0OTM5OTg4MDEyMTswMDsn\\\"\",\r\n            \"systemId\": \"8e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29055\",\r\n            \"name\": \"Fuente de Piedra\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAzNzQxMDMzOTE5OTkyNTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29056\",\r\n            \"name\": \"Gaucín\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk0NjY1OTMyMzE4NDI0Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"9056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29057\",\r\n            \"name\": \"Genalguacil\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgwNTM2NzE3OTM0NDM3MTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"9156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29058\",\r\n            \"name\": \"Guaro\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDA3OTM4NzYzNzY2MjYzMDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"9256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29059\",\r\n            \"name\": \"Humilladero\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU0ODQ2MjY0OTExMzY4MDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"9356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29060\",\r\n            \"name\": \"Igualeja\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY5Nzg0MDQ4NDcwODU2ODE3MTswMDsn\\\"\",\r\n            \"systemId\": \"9456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29061\",\r\n            \"name\": \"Istán\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgwNjg2MjU0MjI5MzA3NTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"9556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29062\",\r\n            \"name\": \"Iznate\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQxNzg4MzYzMDg0NDc1NTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"9656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29063\",\r\n            \"name\": \"Jimera de Líbar\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE1NTI5NzkyODY0ODI0MzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"9756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29064\",\r\n            \"name\": \"Jubrique\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU3MTQ4NzE0NTUxMDE2MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"9856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29065\",\r\n            \"name\": \"Júzcar\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUxMDk2ODcyMDgxMDg1MTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"9956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29066\",\r\n            \"name\": \"Macharaviaya\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg1Nzk0MDk5MDczNjk5MDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"9a56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29067\",\r\n            \"name\": \"Málaga\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY5NzcwMzA4NjQ1Njc5NzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"9b56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29068\",\r\n            \"name\": \"Manilva\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEwNzkyMjgyMjI3NjY0Njk2MTswMDsn\\\"\",\r\n            \"systemId\": \"9c56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29069\",\r\n            \"name\": \"Marbella\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEyNTU0MjM3MzEwMTM4MDEyMTswMDsn\\\"\",\r\n            \"systemId\": \"9d56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29070\",\r\n            \"name\": \"Mijas\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgyMTgzMzAzMzQzNTQwNjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"9e56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29071\",\r\n            \"name\": \"Moclinejo\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgwODQ0ODQ4NTU0NjYwNTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"9f56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29072\",\r\n            \"name\": \"Mollina\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQyNTQ0NDQ3MzI2NTg1MTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"a056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29073\",\r\n            \"name\": \"Monda\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA1ODkwNDc5OTU0NTEzMDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"a156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29903\",\r\n            \"name\": \"Montecorto\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM2NjY0OTI2MTE2NDcyNTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"a256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29074\",\r\n            \"name\": \"Montejaque\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYzOTc4Mjc0ODE3MjI0NjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"a356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29075\",\r\n            \"name\": \"Nerja\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk5Mzc2NTY0MTM0Mzc3MDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"a456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29076\",\r\n            \"name\": \"Ojén\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDMwMTgwNDkyOTQ1MTE2NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"a556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29077\",\r\n            \"name\": \"Parauta\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDExMjc2MDg3MTE1MDIzMzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"a656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29079\",\r\n            \"name\": \"Periana\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzgxOTI3Mzc4OTQ4ODU3NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"a756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29080\",\r\n            \"name\": \"Pizarra\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTAzNTY1MDE5ODc1NTA5NDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"a856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29081\",\r\n            \"name\": \"Pujerra\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEyNTkzODYxODk4NTUzODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"a956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29082\",\r\n            \"name\": \"Rincón de la Victoria\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY5OTE2NDI2MTczMzk4OTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"aa56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29083\",\r\n            \"name\": \"Riogordo\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg2ODI5MzM4MzMxOTcyODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"ab56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29084\",\r\n            \"name\": \"Ronda\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYwNjMzOTMzMzM3ODEyNjA0MTswMDsn\\\"\",\r\n            \"systemId\": \"ac56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29085\",\r\n            \"name\": \"Salares\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA5MjIxNzc1MTkyODU1OTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"ad56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29086\",\r\n            \"name\": \"Sayalonga\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQyODU1NzA4NDgyNTQ1Nzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"ae56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29087\",\r\n            \"name\": \"Sedella\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM5MzU0ODYyMjQ2NTg3NDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"af56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29904\",\r\n            \"name\": \"Serrato\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ1NDczNzc3MDA2ODA3MDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"b056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29088\",\r\n            \"name\": \"Sierra de Yeguas\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA1NzIxNzg1ODkzMzU1Mzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"b156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29089\",\r\n            \"name\": \"Teba\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEzNzIwODEwNjkzNzE5MTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"b256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29090\",\r\n            \"name\": \"Tolox\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI1MzYxNDk1NTk4MDM0NjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"b356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29901\",\r\n            \"name\": \"Torremolinos\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTEyNjc0OTYzMDc1NTkxNzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"b456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29091\",\r\n            \"name\": \"Torrox\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTgwNzk0MTk5OTkxNjE0NTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"b556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29092\",\r\n            \"name\": \"Totalán\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMwOTM1MTExOTM5MjM4NTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"b656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29093\",\r\n            \"name\": \"Valle de Abdalajís\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ1ODEzNDYxNDUyOTUwNzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"b756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29094\",\r\n            \"name\": \"Vélez-Málaga\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQzNDYyODU2ODAxODg1ODE0MTswMDsn\\\"\",\r\n            \"systemId\": \"b856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29095\",\r\n            \"name\": \"Villanueva de Algaidas\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM2NzIxNDYwMTQ1MTMyNTExMTswMDsn\\\"\",\r\n            \"systemId\": \"b956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29902\",\r\n            \"name\": \"Villanueva de la Concepción\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY0MzYyOTg2MTI5OTg5MTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"ba56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29098\",\r\n            \"name\": \"Villanueva de Tapia\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjAzMDUzMjk1MTcxNDM1MjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"bb56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29096\",\r\n            \"name\": \"Villanueva del Rosario\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkxNTEyODM3Nzc3NzU2NTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"bc56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29097\",\r\n            \"name\": \"Villanueva del Trabuco\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI3MjIxMDMwNjk0MDg5NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"bd56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29099\",\r\n            \"name\": \"Viñuela\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI2MTkxNTE0NTE3NDA4OTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"be56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"29100\",\r\n            \"name\": \"Yunquera\",\r\n            \"provinceNo\": 29,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM4NDE1NzI3MzQyOTc5NzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"bf56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30001\",\r\n            \"name\": \"Abanilla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTc3MjAyODE2OTQ0ODE1OTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"c056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30002\",\r\n            \"name\": \"Abarán\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkwNzMwMTEwMjYxNzI4NTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"c156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30003\",\r\n            \"name\": \"Águilas\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM2ODgxODIzMzY3NjQ4MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"c256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30004\",\r\n            \"name\": \"Albudeite\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk0MDM3MTYzNjM1Njk0ODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"c356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30005\",\r\n            \"name\": \"Alcantarilla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI2MDE1Mjg1MzA1MTc1OTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"c456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30902\",\r\n            \"name\": \"Alcázares, Los\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA0NzQ5MjQ2NzMwMzI1NjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"c556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30006\",\r\n            \"name\": \"Aledo\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgzOTAyMjc4NTMyMzY4NjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"c656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30007\",\r\n            \"name\": \"Alguazas\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE5ODE0MTM1MjU1MzI4OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"c756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30008\",\r\n            \"name\": \"Alhama de Murcia\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc2NzU1NjUyOTUxNjM3Mjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"c856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30009\",\r\n            \"name\": \"Archena\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA0MzYyNDAxNTkxMDczMDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"c956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30010\",\r\n            \"name\": \"Beniel\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDUzODAxMjYyMTc5NDU2NjU0MTswMDsn\\\"\",\r\n            \"systemId\": \"ca56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30011\",\r\n            \"name\": \"Blanca\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAxNTMxOTExNDA1MzI3NDcyMTswMDsn\\\"\",\r\n            \"systemId\": \"cb56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30012\",\r\n            \"name\": \"Bullas\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkzMDE5NjM3MTAxOTc5NTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"cc56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30013\",\r\n            \"name\": \"Calasparra\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY4NzczNzI1Njk1NjU2NDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"cd56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30014\",\r\n            \"name\": \"Campos del Río\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA0MzU1NDUwMzAxNTE5MDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"ce56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30015\",\r\n            \"name\": \"Caravaca de la Cruz\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM5MDQxNzUyMjQ2ODMxODMwMTswMDsn\\\"\",\r\n            \"systemId\": \"cf56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30016\",\r\n            \"name\": \"Cartagena\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU4NDcyMzU4MjU3ODk4MzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"d056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30017\",\r\n            \"name\": \"Cehegín\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc1Mzc4MDU2ODE2NTE2OTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"d156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30018\",\r\n            \"name\": \"Ceutí\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM0OTI1NzAyMzE0ODI0MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"d256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30019\",\r\n            \"name\": \"Cieza\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ0NDk3MzMxNjczODYzNDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"d356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30020\",\r\n            \"name\": \"Fortuna\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzExNzI4NTQwNTczNDY5OTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"d456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30021\",\r\n            \"name\": \"Fuente Álamo de Murcia\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM4ODQ4MTU5MTA5MjIwNTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"d556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30022\",\r\n            \"name\": \"Jumilla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE0MDQ5ODA5Mjk2ODE0MzI5MTswMDsn\\\"\",\r\n            \"systemId\": \"d656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30023\",\r\n            \"name\": \"Librilla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzExNjQyNzUyNjk5NjUzODgzMTswMDsn\\\"\",\r\n            \"systemId\": \"d756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30024\",\r\n            \"name\": \"Lorca\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkzOTU3OTQ0ODYyNzYxNjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"d856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30025\",\r\n            \"name\": \"Lorquí\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQyMzIxOTMwOTQzNTE1NjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"d956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30026\",\r\n            \"name\": \"Mazarrón\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM2OTAwOTAwNjg3MDkxMDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"da56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30027\",\r\n            \"name\": \"Molina de Segura\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA5MzQ4NTYzMTI2NzY0Mjk2MTswMDsn\\\"\",\r\n            \"systemId\": \"db56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30028\",\r\n            \"name\": \"Moratalla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODczMzMxMjA1MTI1NjAyMTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"dc56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30029\",\r\n            \"name\": \"Mula\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkxMTE5NTEyNTMyOTEyODEzMTswMDsn\\\"\",\r\n            \"systemId\": \"dd56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30030\",\r\n            \"name\": \"Murcia\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI1OTMzMjAwODczNDcyMzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"de56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30031\",\r\n            \"name\": \"Ojós\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODcxNjQyMjA5ODA4Mjk1MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"df56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30032\",\r\n            \"name\": \"Pliego\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk1OTc3Njc3NTE5MzExNTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"e056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30033\",\r\n            \"name\": \"Puerto Lumbreras\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIwODQyMjYwOTYwMDI3MjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"e156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30034\",\r\n            \"name\": \"Ricote\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYxNjU0MDEyNDc4Mjc0NzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"e256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30035\",\r\n            \"name\": \"San Javier\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI4ODk4MzE5NDc1MDQ1MjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"e356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30036\",\r\n            \"name\": \"San Pedro del Pinatar\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc1NTA3NDE5MzM3NTE2Mjc1MTswMDsn\\\"\",\r\n            \"systemId\": \"e456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30901\",\r\n            \"name\": \"Santomera\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAzMTM1MjY4MDMyNTk0MjA1MTswMDsn\\\"\",\r\n            \"systemId\": \"e556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30037\",\r\n            \"name\": \"Torre-Pacheco\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTYyNzIwODkyODkwNTQ3OTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"e656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30038\",\r\n            \"name\": \"Torres de Cotillas, Las\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg1MTYxNjI1Mzc0NDIxMzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"e756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30039\",\r\n            \"name\": \"Totana\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjYxNTM5MTQwNjE5ODc2MTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"e856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30040\",\r\n            \"name\": \"Ulea\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg1NjI2ODI1NDkxNTcyMzI5MTswMDsn\\\"\",\r\n            \"systemId\": \"e956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30041\",\r\n            \"name\": \"Unión, La\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ3NTMxNzA3NTA2Njg1OTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"ea56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30042\",\r\n            \"name\": \"Villanueva del Río Segura\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY4MDI4MDE3MTA4OTAyMTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"eb56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"30043\",\r\n            \"name\": \"Yecla\",\r\n            \"provinceNo\": 30,\r\n            \"autonomousCommunityNo\": 14,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcwMjgzODY2OTIwNjg3Mzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"ec56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31001\",\r\n            \"name\": \"Abáigar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ1NzgyMTUxMjE3MjI1OTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"ed56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31002\",\r\n            \"name\": \"Abárzuza/Abartzuza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMwODcxNzMyODEzNjAxODcwMTswMDsn\\\"\",\r\n            \"systemId\": \"ee56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31003\",\r\n            \"name\": \"Abaurregaina/Abaurrea Alta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU1ODQ0NzQ5OTE4ODYzMDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"ef56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31004\",\r\n            \"name\": \"Abaurrepea/Abaurrea Baja\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY2MTYyOTE4MzczOTA4NTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"f056e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31005\",\r\n            \"name\": \"Aberin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg4NDg5NjczMzc0OTc0NzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"f156e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31006\",\r\n            \"name\": \"Ablitas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg4MjgwODQyMDc4MjAwNTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"f256e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31007\",\r\n            \"name\": \"Adiós\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ4NTYzNTM1MjgzNTA0MDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"f356e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31008\",\r\n            \"name\": \"Aguilar de Codés\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI5MDM3Njg1NDg3ODAzMTczMTswMDsn\\\"\",\r\n            \"systemId\": \"f456e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31009\",\r\n            \"name\": \"Aibar/Oibar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU2NzkwNDU0NjM1NDUwMzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"f556e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31011\",\r\n            \"name\": \"Allín/Allin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk0MDg0NTMzOTk5Njk1OTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"f656e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31012\",\r\n            \"name\": \"Allo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY0MjcxMzk2NjQ5NTQ4ODIwMTswMDsn\\\"\",\r\n            \"systemId\": \"f756e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31010\",\r\n            \"name\": \"Altsasu/Alsasua\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDExNzIyMjY3MDY1MjU2OTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"f856e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31013\",\r\n            \"name\": \"Améscoa Baja\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM3MTkzOTU4NjE5OTU5MDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"f956e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31014\",\r\n            \"name\": \"Ancín/Antzin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg0MjU1MzQ3MzM1NzE3NDYwMTswMDsn\\\"\",\r\n            \"systemId\": \"fa56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31015\",\r\n            \"name\": \"Andosilla\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM3NjkzODkwMDU4NjQzNDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"fb56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31016\",\r\n            \"name\": \"Ansoáin/Antsoain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDcxOTk0MDg1MDI3NjkxOTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"fc56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31017\",\r\n            \"name\": \"Anue\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYxNTYwMzc5MzAyMjM3ODE4MTswMDsn\\\"\",\r\n            \"systemId\": \"fd56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31018\",\r\n            \"name\": \"Añorbe\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI1MTM0MjkwODMwODY0Mzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"fe56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31019\",\r\n            \"name\": \"Aoiz/Agoitz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE1NjU5MDE4NTA3Mjc3NTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"ff56e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31020\",\r\n            \"name\": \"Araitz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA4ODU3MTM0MjczNzQyMzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"0057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31025\",\r\n            \"name\": \"Arakil\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE3MTM5OTUwOTE4MzI4NTM1MTswMDsn\\\"\",\r\n            \"systemId\": \"0157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31021\",\r\n            \"name\": \"Aranarache/Aranaratxe\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgyMDE2NTkxNjkyMzYyNjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"0257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31023\",\r\n            \"name\": \"Aranguren\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY2OTg3MTQ1MTc0MzkyNjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"0357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31024\",\r\n            \"name\": \"Arano\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcyNDU3MzY4Njc4MTcyODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"0457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31022\",\r\n            \"name\": \"Arantza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk3NjkyNTQxNDQ2NzkyMjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"0557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31026\",\r\n            \"name\": \"Aras\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU4ODczMjQ4ODQ2MjMzNjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"0657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31027\",\r\n            \"name\": \"Arbizu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTczNDU2MDk1ODAyMDM1NjM5MTswMDsn\\\"\",\r\n            \"systemId\": \"0757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31028\",\r\n            \"name\": \"Arce/Artzi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjczNTEwNzI4NzIwNTA3MjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"0857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31029\",\r\n            \"name\": \"Arcos, Los\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjcxNDQ5MDg3ODQxNTMxNjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"0957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31030\",\r\n            \"name\": \"Arellano\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUzNDI3ODMwNjkxOTcwMDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"0a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31031\",\r\n            \"name\": \"Areso\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU2MDU0NTYyNjI5NjUxMjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"0b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31032\",\r\n            \"name\": \"Arguedas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ5NDA3Mjg2MDgxODMzMTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"0c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31033\",\r\n            \"name\": \"Aria\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYyNDg3MDE4NTk4NTMyNTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31034\",\r\n            \"name\": \"Aribe\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkxOTc0MTc0MzczMzkyNjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"0e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31035\",\r\n            \"name\": \"Armañanzas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkwNDg1NzI1NTQxMzAyNjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"0f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31036\",\r\n            \"name\": \"Arróniz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE2MjMxMzQ3NDE2NzQyMTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"1057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31037\",\r\n            \"name\": \"Arruazu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY3NzkzMDQ4NDQyMTc4Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"1157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31038\",\r\n            \"name\": \"Artajona\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE2MzY4NDU4MDY2MzgyMzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"1257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31039\",\r\n            \"name\": \"Artazu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE4MTI5MTQzMDg5NDE2ODY3MTswMDsn\\\"\",\r\n            \"systemId\": \"1357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31040\",\r\n            \"name\": \"Atez/Atetz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc0ODEyMTAyOTk5Mjg1MDI2MTswMDsn\\\"\",\r\n            \"systemId\": \"1457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31058\",\r\n            \"name\": \"Auritz/Burguete\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA1OTExMzUxMTg3OTQ0NDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"1557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31041\",\r\n            \"name\": \"Ayegui/Aiegi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI2MjcwNTkzODgzNTc3MTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"1657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31042\",\r\n            \"name\": \"Azagra\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAwOTU3NDU3MTA1NzcyNjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"1757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31043\",\r\n            \"name\": \"Azuelo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTYwNDkyMDI2MTMwMjg0NTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"1857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31044\",\r\n            \"name\": \"Bakaiku\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc4MDI3NTcwMjM5NDI1MDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"1957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31901\",\r\n            \"name\": \"Barañáin/Barañain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcwMzQ4ODA4OTk1OTQxOTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31045\",\r\n            \"name\": \"Barásoain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMwNjgxNjAxOTE1MDA2MzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31046\",\r\n            \"name\": \"Barbarin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgzODI2MTg1Njc5ODk1NTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"1c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31047\",\r\n            \"name\": \"Bargota\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU3MDU1OTQzOTcxMzg5Njc2MTswMDsn\\\"\",\r\n            \"systemId\": \"1d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31048\",\r\n            \"name\": \"Barillas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA3NTI5MDYzNjM2MTkxNTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"1e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31049\",\r\n            \"name\": \"Basaburua\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk0OTIzNTM0NDU3NjY4MDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"1f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31050\",\r\n            \"name\": \"Baztan\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMwOTExNTkxMzA5MjE0MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"2057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31137\",\r\n            \"name\": \"Beintza-Labaien\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE4NjU5MjA0OTMwMDA2NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"2157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31051\",\r\n            \"name\": \"Beire\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYwMTYxNDAyMjY5NTk5NDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"2257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31052\",\r\n            \"name\": \"Belascoáin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzExNzc0NDMwNjUxMDEzOTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"2357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31250\",\r\n            \"name\": \"Bera\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc4NDMzMDI5MzY1NTM1NDExMTswMDsn\\\"\",\r\n            \"systemId\": \"2457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31053\",\r\n            \"name\": \"Berbinzana\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI4MzY4MzUwMjY1NTAyODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"2557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31905\",\r\n            \"name\": \"Beriáin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYyMTg1MTU1ODM3OTM5ODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"2657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31902\",\r\n            \"name\": \"Berrioplano/Berriobeiti\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzk4MTkyMTQ1MjAyNTE3NTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"2757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31903\",\r\n            \"name\": \"Berriozar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg2ODE1MDUxMjg1MTQwODAxMTswMDsn\\\"\",\r\n            \"systemId\": \"2857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31054\",\r\n            \"name\": \"Bertizarana\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ3MDA5ODQ1NzMxMzY2MzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"2957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31055\",\r\n            \"name\": \"Betelu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ0NTg2MTI3MTM0ODk3ODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"2a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31253\",\r\n            \"name\": \"Bidaurreta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ2ODc5NDA2MTMxMjU2OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"2b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31056\",\r\n            \"name\": \"Biurrun-Olcoz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM4MTUzNTUzNTk2NzQ4NDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"2c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31057\",\r\n            \"name\": \"Buñuel\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU1NzI3MDExMjA5NTgzODczMTswMDsn\\\"\",\r\n            \"systemId\": \"2d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31059\",\r\n            \"name\": \"Burgui/Burgi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTEyNzI0MjA3NzI5MDg0MTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"2e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31060\",\r\n            \"name\": \"Burlada/Burlata\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxMDk4ODQ4NzYwMTc2OTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31061\",\r\n            \"name\": \"Busto, El\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ3MTgyNDIyNzE2MjU2MTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"3057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31062\",\r\n            \"name\": \"Cabanillas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAzNTIzMjI4NDMxNTAwMDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"3157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31063\",\r\n            \"name\": \"Cabredo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzcwODAwMjY2Mjc5MTc2ODM5MTswMDsn\\\"\",\r\n            \"systemId\": \"3257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31064\",\r\n            \"name\": \"Cadreita\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE4ODQyMjk0MzQ0NDYxMjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"3357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31065\",\r\n            \"name\": \"Caparroso\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY0NTY0ODUxMTg3NTg2OTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"3457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31066\",\r\n            \"name\": \"Cárcar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc4NTkxNjg5MTM2NDQ0NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31067\",\r\n            \"name\": \"Carcastillo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY1Mjg5MDI2NzI2NDQ4MzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"3657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31068\",\r\n            \"name\": \"Cascante\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ5NTY2ODE5NjExMjExNTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"3757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31069\",\r\n            \"name\": \"Cáseda\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgwMTIwNjY1NDA3MDgwODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"3857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31070\",\r\n            \"name\": \"Castejón\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc1MDczNDY5NjAwMjkzMDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"3957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31071\",\r\n            \"name\": \"Castillonuevo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ3NDU4NDM4MDgyMzMxNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"3a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31193\",\r\n            \"name\": \"Cendea de Olza/Oltza Zendea\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTUxMTk5MDMxMDk2NjQ3NjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"3b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31072\",\r\n            \"name\": \"Cintruénigo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ0NDQ0MDQ0NDM4OTUzOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"3c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31074\",\r\n            \"name\": \"Cirauqui/Zirauki\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUzNjMzNzE2NTY4OTc5NjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31075\",\r\n            \"name\": \"Ciriza/Ziritza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY3OTU1ODg0NjQwOTk2ODQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"3e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31076\",\r\n            \"name\": \"Cizur\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM5Mjc5ODYxMTQ3NDI2NDYwMTswMDsn\\\"\",\r\n            \"systemId\": \"3f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31077\",\r\n            \"name\": \"Corella\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY4ODU5NjU5MDAyMzcxMDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"4057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31078\",\r\n            \"name\": \"Cortes\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgyNzY4ODU4NzU1Mjc4Nzg1MTswMDsn\\\"\",\r\n            \"systemId\": \"4157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31079\",\r\n            \"name\": \"Desojo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxMjA1MDQ5ODkzNDYxOTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"4257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31080\",\r\n            \"name\": \"Dicastillo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxMzAwNTQ0NjU5OTAwNDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"4357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31081\",\r\n            \"name\": \"Donamaria\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU0OTc4MDAwNTQ2ODMwOTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"4457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31221\",\r\n            \"name\": \"Doneztebe/Santesteban\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYxODkyNzQ2NTk1ODA1ODk0MTswMDsn\\\"\",\r\n            \"systemId\": \"4557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31083\",\r\n            \"name\": \"Echarri/Etxarri\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk4NzU2MjU1ODYyNzg3MzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"4657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31087\",\r\n            \"name\": \"Elgorriaga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE0MjcyNTEyNjQ4ODkzMDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"4757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31089\",\r\n            \"name\": \"Enériz/Eneritz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDEwNTEzOTUyMzc3NTUxMjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"4857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31090\",\r\n            \"name\": \"Eratsun\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU3MDUxODY5Mjg0MDEyNTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"4957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31091\",\r\n            \"name\": \"Ergoiena\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzcwMTYxODMzMjMxMDQwOTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"4a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31092\",\r\n            \"name\": \"Erro\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUyMDU4MTIzNDk1NDQ4NTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"4b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31094\",\r\n            \"name\": \"Eslava\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk0MjUyNzQ3Nzk1Mjk0NTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"4c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31095\",\r\n            \"name\": \"Esparza de Salazar/Espartza Zaraitzu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU3MjcxOTI3NjM0MDc4NjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"4d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31096\",\r\n            \"name\": \"Espronceda\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY2OTE2ODgxOTIzNDg2OTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"4e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31097\",\r\n            \"name\": \"Estella-Lizarra\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk2ODk3NTIxNDgyODM0OTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"4f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31098\",\r\n            \"name\": \"Esteribar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc0NDk2ODU3NzY0MjMwMjYzMTswMDsn\\\"\",\r\n            \"systemId\": \"5057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31099\",\r\n            \"name\": \"Etayo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg4OTMwNDcwNDkzMzU0MDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"5157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31082\",\r\n            \"name\": \"Etxalar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg0NjI4NjI0NzQ0MzczMjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"5257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31084\",\r\n            \"name\": \"Etxarri Aranatz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg2NzM1NDM5NDA4Mjk0NDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"5357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31085\",\r\n            \"name\": \"Etxauri\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY4MTI1NjY4NDExNzU3MTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"5457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31100\",\r\n            \"name\": \"Eulate\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk2NDI1ODAxNjQ0ODM0OTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"5557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31101\",\r\n            \"name\": \"Ezcabarte\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM5NjIzMDM0NjYxNjYzMzczMTswMDsn\\\"\",\r\n            \"systemId\": \"5657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31093\",\r\n            \"name\": \"Ezcároz/Ezkaroze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQwNzU4NzQ4NjIxMTYwODgyMTswMDsn\\\"\",\r\n            \"systemId\": \"5757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31102\",\r\n            \"name\": \"Ezkurra\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI4MjQ2OTM4ODY0NDM5ODY3MTswMDsn\\\"\",\r\n            \"systemId\": \"5857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31103\",\r\n            \"name\": \"Ezprogui\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ1ODIyOTc0NTEzNzQ0NTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"5957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31104\",\r\n            \"name\": \"Falces\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDgyMjYxNDkzMzU0NzE1NjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"5a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31105\",\r\n            \"name\": \"Fitero\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU2MDI3NzY3MTY3MDg3NDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"5b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31106\",\r\n            \"name\": \"Fontellas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk2MjIwOTQ3Njc2NTI2Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"5c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31107\",\r\n            \"name\": \"Funes\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI1NDIxMTkxMTkzMzM3MTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"5d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31108\",\r\n            \"name\": \"Fustiñana\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTYyNzExODUzNTk2MTQ4NjM1MTswMDsn\\\"\",\r\n            \"systemId\": \"5e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31109\",\r\n            \"name\": \"Galar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA4MDM5NDA2MDMxMjI5MTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"5f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31110\",\r\n            \"name\": \"Gallipienzo/Galipentzu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAzNDU0MTMzODM5MjM2MjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"6057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31111\",\r\n            \"name\": \"Gallués/Galoze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTIxMTQ1MjY0NDk1Nzk1OTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"6157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31112\",\r\n            \"name\": \"Garaioa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ1MTU2OTg0MjI1NTA0NTczMTswMDsn\\\"\",\r\n            \"systemId\": \"6257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31113\",\r\n            \"name\": \"Garde\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgwMDYyMTIwMTEyNTk0NTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"6357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31114\",\r\n            \"name\": \"Garínoain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY1NDg0ODE0ODg1NTIyODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"6457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31115\",\r\n            \"name\": \"Garralda\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA0MjA1ODg2NjkyMjMzODcwMTswMDsn\\\"\",\r\n            \"systemId\": \"6557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31116\",\r\n            \"name\": \"Genevilla\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkwNzg1ODI3Mzg0OTY2NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"6657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31117\",\r\n            \"name\": \"Goizueta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI5ODU5NTA5Nzg4MDYyNTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"6757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31118\",\r\n            \"name\": \"Goñi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMxMjU2MTc3MjA5NTE0MjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"6857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31119\",\r\n            \"name\": \"Güesa/Gorza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc4NDAwMzg0OTM3MTM3MTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"6957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31120\",\r\n            \"name\": \"Guesálaz/Gesalatz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA2ODg4MTY0MDM4NTUwMjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"6a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31121\",\r\n            \"name\": \"Guirguillano\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk5NDcwODI4NTIxNTUxMTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"6b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31256\",\r\n            \"name\": \"Hiriberri/Villanueva de Aezkoa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcwOTc1NjQzMDgxOTM1NTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31122\",\r\n            \"name\": \"Huarte/Uharte\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIxODA3OTI0NTQ1OTYyMzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31124\",\r\n            \"name\": \"Ibargoiti\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ5Njk1MTczMjk3NzA2NDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"6e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31259\",\r\n            \"name\": \"Igantzi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk2Mjc4NjY3MzU4NjIyMjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"6f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31125\",\r\n            \"name\": \"Igúzquiza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc2NTk1MjgyMTc5OTk3NTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"7057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31126\",\r\n            \"name\": \"Imotz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc5MTUzNzYyMzc3ODg1NjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"7157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31127\",\r\n            \"name\": \"Irañeta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM1MzE3ODE1ODcyOTczODYyMTswMDsn\\\"\",\r\n            \"systemId\": \"7257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31904\",\r\n            \"name\": \"Irurtzun\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTUzNDg1NjE3NDg1ODgxMDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"7357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31128\",\r\n            \"name\": \"Isaba/Izaba\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU4NzMyMjIxMTAwMTA5MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"7457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31129\",\r\n            \"name\": \"Ituren\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjcyOTYxNTIzOTgyMDI0MjczMTswMDsn\\\"\",\r\n            \"systemId\": \"7557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31130\",\r\n            \"name\": \"Iturmendi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAwOTA3NTMzMTM1NTg3NzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"7657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31131\",\r\n            \"name\": \"Iza/Itza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE2Mzc2OTA3OTkyNzM4MjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"7757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31132\",\r\n            \"name\": \"Izagaondoa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMwMDM3MzY5NDA2MzEyNTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"7857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31133\",\r\n            \"name\": \"Izalzu/Itzaltzu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY5NzM2MTY2MTc1Mzc5ODcyMTswMDsn\\\"\",\r\n            \"systemId\": \"7957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31134\",\r\n            \"name\": \"Jaurrieta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY5NTA4ODg2ODYyNTUyODg0MTswMDsn\\\"\",\r\n            \"systemId\": \"7a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31135\",\r\n            \"name\": \"Javier\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE4Nzk1NzE2MzE1MTM3ODYxMTswMDsn\\\"\",\r\n            \"systemId\": \"7b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31136\",\r\n            \"name\": \"Juslapeña\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA2ODI0OTc4NTQ5NDYzNTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"7c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31138\",\r\n            \"name\": \"Lakuntza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM5MDI0MTk5MDA4NDYyMzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"7d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31139\",\r\n            \"name\": \"Lana\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU3OTU3MjkwNDgyMDg1MDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"7e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31140\",\r\n            \"name\": \"Lantz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA0ODI0MTY1OTc2NzY4MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"7f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31141\",\r\n            \"name\": \"Lapoblación\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM3NTM1OTE1NDY5MzIyNzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"8057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31142\",\r\n            \"name\": \"Larraga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3NjQzMTA4NTMxMTE4NzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"8157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31143\",\r\n            \"name\": \"Larraona\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzAzMzMwODA0MDgyNjAwMjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"8257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31144\",\r\n            \"name\": \"Larraun\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI5MDg0OTcwNTQ2OTI2NjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"8357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31145\",\r\n            \"name\": \"Lazagurría\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4OTkzNTc2NzgzNzU5MjM1MTswMDsn\\\"\",\r\n            \"systemId\": \"8457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31146\",\r\n            \"name\": \"Leache/Leatxe\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc1MDA0ODQyODQ3NTI5NjA1MTswMDsn\\\"\",\r\n            \"systemId\": \"8557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31147\",\r\n            \"name\": \"Legarda\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI0MjY3NjU2Nzg3MzY2ODI1MTswMDsn\\\"\",\r\n            \"systemId\": \"8657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31148\",\r\n            \"name\": \"Legaria\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE4NTEyNjMwMTUzOTkxNDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"8757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31149\",\r\n            \"name\": \"Leitza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA2OTAyMTMwODA0MDQ4MDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"8857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31908\",\r\n            \"name\": \"Lekunberri\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA1MDk2NzQxNzAyNzUyNzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"8957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31150\",\r\n            \"name\": \"Leoz/Leotz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk1MjQyNTU0OTIxODAwNjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31151\",\r\n            \"name\": \"Lerga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE5NDQzOTA4OTk0NjE5MzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"8b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31152\",\r\n            \"name\": \"Lerín\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY0NTQyNTYwMDc1ODk0ODIwMTswMDsn\\\"\",\r\n            \"systemId\": \"8c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31153\",\r\n            \"name\": \"Lesaka\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA5NTExNjk5NTQ2MTI1ODA5MTswMDsn\\\"\",\r\n            \"systemId\": \"8d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31154\",\r\n            \"name\": \"Lezaun\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI5NDY2NzIzNzI2Nzg0OTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"8e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31155\",\r\n            \"name\": \"Liédena\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQwMTU2MzAyNzQ5NTM5NjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"8f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31156\",\r\n            \"name\": \"Lizoáin-Arriasgoiti\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY3MjY3Nzc3MzU1MTUyNDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"9057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31157\",\r\n            \"name\": \"Lodosa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc3MTc2MDgzMDkwNzUwMTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"9157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31158\",\r\n            \"name\": \"Lónguida/Longida\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDcxMjA0OTYyMjI4OTYzOTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"9257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31159\",\r\n            \"name\": \"Lumbier\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgwODYxMzQ5MzA0ODAwNzYxMTswMDsn\\\"\",\r\n            \"systemId\": \"9357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31160\",\r\n            \"name\": \"Luquin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQyNzM5MDE5NTY2OTg1ODk0MTswMDsn\\\"\",\r\n            \"systemId\": \"9457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31248\",\r\n            \"name\": \"Luzaide/Valcarlos\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTcxNzk2NDQ0NTkwNDQzODE2MTswMDsn\\\"\",\r\n            \"systemId\": \"9557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31161\",\r\n            \"name\": \"Mañeru\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc1MTMzNzc0NTQ0NzA3NTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"9657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31162\",\r\n            \"name\": \"Marañón\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUwOTkyMjkyMDM4MDY0MDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"9757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31163\",\r\n            \"name\": \"Marcilla\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIyNzUwNDUwMDg0ODE4NDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"9857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31164\",\r\n            \"name\": \"Mélida\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQyMzYwMTg3OTgxMTU5Njk0MTswMDsn\\\"\",\r\n            \"systemId\": \"9957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31165\",\r\n            \"name\": \"Mendavia\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg4MDQxNTg2ODM5OTcxNjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"9a57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31166\",\r\n            \"name\": \"Mendaza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjExOTI0Njc0MDg5MTgyMTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"9b57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31167\",\r\n            \"name\": \"Mendigorria\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE4NjMxMjg4ODA0MTExMDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"9c57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31168\",\r\n            \"name\": \"Metauten\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg1MTYxMjI0Njk1MzExMTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"9d57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31169\",\r\n            \"name\": \"Milagro\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ5NDgwMDM2Njc2NDg5MDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"9e57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31170\",\r\n            \"name\": \"Mirafuentes\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQzMTAzODkzNDM4NDMyMTczMTswMDsn\\\"\",\r\n            \"systemId\": \"9f57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31171\",\r\n            \"name\": \"Miranda de Arga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQyODI2NTg2NzM5NjE0OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"a057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31172\",\r\n            \"name\": \"Monreal/Elo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ4NDMwOTc0NTI1NDY0MzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"a157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31173\",\r\n            \"name\": \"Monteagudo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI5Nzg3OTMxMDE0NTIxODQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"a257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31174\",\r\n            \"name\": \"Morentin\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUyMDU5MTIzOTY4MDQwMzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"a357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31175\",\r\n            \"name\": \"Mues\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5NjM5OTA2OTA3MzA2NTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"a457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31176\",\r\n            \"name\": \"Murchante\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU2NzE2NTUwMzY2MjExMTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"a557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31177\",\r\n            \"name\": \"Murieta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU3MzIzODY5MzE3MzE1NDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"a657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31178\",\r\n            \"name\": \"Murillo el Cuende\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM5OTQ1MzEwNjM3Nzc2NTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"a757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31179\",\r\n            \"name\": \"Murillo el Fruto\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTIwMDcxMjM5MTA0NjI4OTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"a857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31180\",\r\n            \"name\": \"Muruzábal\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUxODc3MTkzMjkwMjUxMDMyMTswMDsn\\\"\",\r\n            \"systemId\": \"a957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31181\",\r\n            \"name\": \"Navascués/Nabaskoze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQzMDIxMzQ2MzUzOTc4NjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"aa57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31182\",\r\n            \"name\": \"Nazar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTExNzcxODE1MzUzNjkxNTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"ab57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31088\",\r\n            \"name\": \"Noáin (Valle de Elorz)/Noain (Elortzibar)\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkxMzcxODgyMzExOTE2NTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"ac57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31183\",\r\n            \"name\": \"Obanos\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgyNzg1MTE0ODkzNzMzNjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"ad57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31185\",\r\n            \"name\": \"Ochagavía/Otsagabia\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTExNjIxNjM1MzExOTM3NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"ae57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31184\",\r\n            \"name\": \"Oco\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc4NjkyMTMyNzQ2MDkwNTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"af57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31186\",\r\n            \"name\": \"Odieta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk5MjYyNzQ1NTU5NzMyNzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"b057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31187\",\r\n            \"name\": \"Oiz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc5Njc3MjY4NDg3MTgzNDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"b157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31188\",\r\n            \"name\": \"Olaibar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE1Mjk0NDM5NTc4ODg4NjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"b257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31189\",\r\n            \"name\": \"Olazti/Olazagutía\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQwMDMwMDE3MTQyNDIxNTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"b357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31190\",\r\n            \"name\": \"Olejua\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExODk1NTA0Nzc5NzgwOTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"b457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31191\",\r\n            \"name\": \"Olite/Erriberri\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM1Njg5NTg5MTQ4MTY4ODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"b557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31192\",\r\n            \"name\": \"Olóriz/Oloritz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI0NTA1MjM2OTAxNDgzNjYzMTswMDsn\\\"\",\r\n            \"systemId\": \"b657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31195\",\r\n            \"name\": \"Orbaizeta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ5NDMwODg1NTg0MzY0OTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"b757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31196\",\r\n            \"name\": \"Orbara\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA4ODAzMzY1ODk4NjgyNzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"b857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31197\",\r\n            \"name\": \"Orísoain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ1NzI1NDYxNzc5NjQyNTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"b957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31906\",\r\n            \"name\": \"Orkoien\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY2NjE2MjQ2MTY3NDUyNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ba57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31198\",\r\n            \"name\": \"Oronz/Orontze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA3MDEzMzU3MjI2NzgzNTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"bb57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31199\",\r\n            \"name\": \"Oroz-Betelu/Orotz-Betelu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE2NzcyNDg0NzkzOTAxMDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"bc57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31211\",\r\n            \"name\": \"Orreaga/Roncesvalles\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI5MTE2NzQwMDMzNjE3MjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"bd57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31200\",\r\n            \"name\": \"Oteiza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY0Nzg5MDkyMzkzMDYwMDA2MTswMDsn\\\"\",\r\n            \"systemId\": \"be57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31201\",\r\n            \"name\": \"Pamplona/Iruña\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU1MzU3MDIwMDY0OTIyNTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"bf57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31202\",\r\n            \"name\": \"Peralta/Azkoien\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU3MDM2NDE2MjE1NzY1MzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"c057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31203\",\r\n            \"name\": \"Petilla de Aragón\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ4NzEyMTkwMzAyOTg3Njg4MTswMDsn\\\"\",\r\n            \"systemId\": \"c157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31204\",\r\n            \"name\": \"Piedramillera\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI3NzEyNTE4NzA4NTc0OTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"c257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31205\",\r\n            \"name\": \"Pitillas\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU1ODAzNTM4MjY4NzQ5ODc0MTswMDsn\\\"\",\r\n            \"systemId\": \"c357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31206\",\r\n            \"name\": \"Puente la Reina/Gares\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgxMTk3MTU4NTc4MDE0Mjk2MTswMDsn\\\"\",\r\n            \"systemId\": \"c457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31207\",\r\n            \"name\": \"Pueyo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI0Nzc4OTM1Mzg1OTQ0MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"c557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31208\",\r\n            \"name\": \"Ribaforada\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkwNjY4NzAxNTEyNDM4MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"c657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31209\",\r\n            \"name\": \"Romanzado\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkyNDE5MDI3MTY5MTY1NDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"c757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31210\",\r\n            \"name\": \"Roncal/Erronkari\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.367Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE1MzU2OTc5ODE1MDgxODg3MTswMDsn\\\"\",\r\n            \"systemId\": \"c857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31212\",\r\n            \"name\": \"Sada\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQzNjUxNzY5MTkxMTM2MDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"c957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31213\",\r\n            \"name\": \"Saldías\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE5ODEzNTMwODM4Nzg4OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"ca57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31214\",\r\n            \"name\": \"Salinas de Oro/Jaitz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ2MzYwMDgyNjk0MzA3Mjk1MTswMDsn\\\"\",\r\n            \"systemId\": \"cb57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31215\",\r\n            \"name\": \"San Adrián\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMxNTAwOTU4NTY5ODE3ODM0MTswMDsn\\\"\",\r\n            \"systemId\": \"cc57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31217\",\r\n            \"name\": \"San Martín de Unx\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc3MjQyNzE1NDg3MDE0MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"cd57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31216\",\r\n            \"name\": \"Sangüesa/Zangoza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTUyMDI5NjEzNTE2MjY4Nzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"ce57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31219\",\r\n            \"name\": \"Sansol\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTcxNDMxNzU5MDcyNzQ3ODQzMTswMDsn\\\"\",\r\n            \"systemId\": \"cf57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31220\",\r\n            \"name\": \"Santacara\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc0Nzk1OTkzNjU2OTE0NzczMTswMDsn\\\"\",\r\n            \"systemId\": \"d057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31222\",\r\n            \"name\": \"Sarriés/Sartze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.37Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUzOTMyOTg3MzEzMTgxNDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"d157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31223\",\r\n            \"name\": \"Sartaguda\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM3OTQ2MTI1MjU5OTY0NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"d257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31224\",\r\n            \"name\": \"Sesma\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE0MjI4OTcxNjA0NDQ1NDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31225\",\r\n            \"name\": \"Sorlada\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg5Njg4MzUyMTAyNTUzNTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31226\",\r\n            \"name\": \"Sunbilla\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzcwNTY0Mzk3MTE4NjA2NjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"d557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31227\",\r\n            \"name\": \"Tafalla\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEwMTAxMzM5MTczMDk5OTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"d657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31228\",\r\n            \"name\": \"Tiebas-Muruarte de Reta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQxODM5Njg1Mjc5MDUzNDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"d757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31229\",\r\n            \"name\": \"Tirapu\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE0NDE1ODk5MjMwMDg0ODI0MTswMDsn\\\"\",\r\n            \"systemId\": \"d857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31230\",\r\n            \"name\": \"Torralba del Río\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQxMjk3NTYyODM5OTIxMDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31231\",\r\n            \"name\": \"Torres del Río\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY3ODM4NTg2NjY1NDY5OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"da57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31232\",\r\n            \"name\": \"Tudela\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.373Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzYwMDA0MjY3OTY3MDQ2NTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"db57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31233\",\r\n            \"name\": \"Tulebras\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc5NDY3MDExMzI5MDk0MzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"dc57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31234\",\r\n            \"name\": \"Ucar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTAzNTI1OTQxMDQzNTMzMjc1MTswMDsn\\\"\",\r\n            \"systemId\": \"dd57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31123\",\r\n            \"name\": \"Uharte Arakil\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA3OTUxNDU0NzI5MTA0NDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"de57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31235\",\r\n            \"name\": \"Ujué/Uxue\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODgyMzUzNDgyNTMwNTE5MjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"df57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31236\",\r\n            \"name\": \"Ultzama\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ4MDU5NDYzNDYxODgzMDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"e057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31237\",\r\n            \"name\": \"Unciti\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIyNTM0NjA1NjE0Mjg4MjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"e157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31238\",\r\n            \"name\": \"Unzué/Untzue\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc1ODY5ODU2NjM1NzQ0OTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"e257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31239\",\r\n            \"name\": \"Urdazubi/Urdax\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk1MTUxNDk4NjAzNTUzODA5MTswMDsn\\\"\",\r\n            \"systemId\": \"e357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31240\",\r\n            \"name\": \"Urdiain\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTkyMDcwMzg1NDU1MDI4NTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"e457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31241\",\r\n            \"name\": \"Urraul Alto\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ0NDIwNDk1NzcwNTcyMjc5MTswMDsn\\\"\",\r\n            \"systemId\": \"e557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31242\",\r\n            \"name\": \"Urraul Bajo\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ4NTExMTY5MTI3NzY3MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"e657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31244\",\r\n            \"name\": \"Urroz\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTkwNDAzMTE4MTg4ODU3NTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"e757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31243\",\r\n            \"name\": \"Urroz-Villa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ3ODEyNTgwMjI1MTU5MTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"e857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31245\",\r\n            \"name\": \"Urzainqui/Urzainki\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg4NDE4MDUyMDc3OTM1MTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"e957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31246\",\r\n            \"name\": \"Uterga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM2NDk0ODE3NDY2NTI5NTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"ea57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31247\",\r\n            \"name\": \"Uztárroz/Uztarroze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM1NTY0NDY1ODI2MDU4NDExMTswMDsn\\\"\",\r\n            \"systemId\": \"eb57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31086\",\r\n            \"name\": \"Valle de Egüés/Eguesibar\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMzNTgwODI3NDc3MjU5NTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"ec57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31194\",\r\n            \"name\": \"Valle de Ollo/Ollaran\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzM4NjY5NDg0MzEyNjEwNzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"ed57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31260\",\r\n            \"name\": \"Valle de Yerri/Deierri\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkzNDIwMDEzMjI1MTcxNTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"ee57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31249\",\r\n            \"name\": \"Valtierra\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.377Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA4OTY3ODAyOTM2MTQ1OTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"ef57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31251\",\r\n            \"name\": \"Viana\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYxNjk3Nzg2NjEyODg0NTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"f057e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31252\",\r\n            \"name\": \"Vidángoz/Bidankoze\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcwMDc1NjE2MTE1NDgyMzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"f157e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31254\",\r\n            \"name\": \"Villafranca\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1OTE3NDI2MjQ2ODYxODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"f257e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31255\",\r\n            \"name\": \"Villamayor de Monjardín\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM0NTc1OTY0OTExODIwMjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"f357e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31257\",\r\n            \"name\": \"Villatuerta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEwMDM1OTcwNTcyNTE4NDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"f457e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31258\",\r\n            \"name\": \"Villava/Atarrabia\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.38Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAyOTc5NTA1MzgxNzQ3NTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"f557e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31261\",\r\n            \"name\": \"Yesa\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcyNTc0ODQxOTkyNTcxOTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"f657e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31262\",\r\n            \"name\": \"Zabalza/Zabaltza\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYxMzM1MTE0NTYxMTE3NTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"f757e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31073\",\r\n            \"name\": \"Ziordia\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg3NDEyMzgyNzA3MzkyOTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"f857e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31907\",\r\n            \"name\": \"Zizur Mayor/Zizur Nagusia\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA0MTIwNzM5NDkyNjg0OTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"f957e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31263\",\r\n            \"name\": \"Zubieta\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI2MTA0OTQ3MDg0ODA1MTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"fa57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31264\",\r\n            \"name\": \"Zugarramurdi\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzMyOTQ2NTEwMjc5MzU1MDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"fb57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"31265\",\r\n            \"name\": \"Zúñiga\",\r\n            \"provinceNo\": 31,\r\n            \"autonomousCommunityNo\": 15,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.383Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgzOTQ4MzEzMzExMTM2ODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"fc57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32001\",\r\n            \"name\": \"Allariz\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUzMDAyMDgwMzU1OTk5MjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"fd57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32002\",\r\n            \"name\": \"Amoeiro\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQwNjE0MzQ0NzgyNzc5OTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"fe57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32003\",\r\n            \"name\": \"Arnoia, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAzNTAzODAxNDQ5MzMyMTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"ff57e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32004\",\r\n            \"name\": \"Avión\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQyNjM1MTU0NzcxMzUyMzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"0058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32005\",\r\n            \"name\": \"Baltar\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU5NzkyMTE3NTk4NzUwMTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"0158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32006\",\r\n            \"name\": \"Bande\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgzOTk3MjIyMzg1NjYwMTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"0258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32007\",\r\n            \"name\": \"Baños de Molgas\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY5OTA4MTA1NTQwMTU0NTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"0358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32008\",\r\n            \"name\": \"Barbadás\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.387Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc4ODk4ODM3ODU0NDMwNzU4MTswMDsn\\\"\",\r\n            \"systemId\": \"0458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32009\",\r\n            \"name\": \"Barco de Valdeorras, O\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE4NjEwMzEwMjM5NTYyMTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"0558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32010\",\r\n            \"name\": \"Beade\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIzNzQ0ODQ3NzMyNTY0MTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"0658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32011\",\r\n            \"name\": \"Beariz\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjAzNjY5NzI3MjU1MDY2MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"0758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32012\",\r\n            \"name\": \"Blancos, Os\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY1NDI0MjMxNzE0MzU0MjAwMTswMDsn\\\"\",\r\n            \"systemId\": \"0858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32013\",\r\n            \"name\": \"Boborás\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg3MDc2MDY4MzY4MDA3MzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"0958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32014\",\r\n            \"name\": \"Bola, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU4MjA1MDA5NzY4MzAxMTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"0a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32015\",\r\n            \"name\": \"Bolo, O\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc0NjEwNjUxNjk1ODk4ODQxMTswMDsn\\\"\",\r\n            \"systemId\": \"0b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32016\",\r\n            \"name\": \"Calvos de Randín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ3NTc2NzAxNDUxODY4ODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32018\",\r\n            \"name\": \"Carballeda de Avia\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzczMjE0MjkxMDc3ODkwOTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"0d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32017\",\r\n            \"name\": \"Carballeda de Valdeorras\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.39Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjcyMzIzMjI2MDcwNTY3MTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"0e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32019\",\r\n            \"name\": \"Carballiño, O\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI1MzkwMDA1OTEyNzE5MDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"0f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32020\",\r\n            \"name\": \"Cartelle\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk1ODIzMDE5MDkwNDQ0NTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"1058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32022\",\r\n            \"name\": \"Castrelo de Miño\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEzMTIwNzEyNjk2NDk1MjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32021\",\r\n            \"name\": \"Castrelo do Val\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY1MDkzNjc0Mjg3NzExNTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"1258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32023\",\r\n            \"name\": \"Castro Caldelas\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEzMjcwNzY5Mzg3ODg3NTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"1358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32024\",\r\n            \"name\": \"Celanova\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIxMzgxNDA2NjAzODA4MjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"1458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32025\",\r\n            \"name\": \"Cenlle\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIzMzU0NDk4MTEwNzY0Njc1MTswMDsn\\\"\",\r\n            \"systemId\": \"1558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32029\",\r\n            \"name\": \"Chandrexa de Queixa\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5NjQ5MjM0ODk3MTY5NTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"1658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32026\",\r\n            \"name\": \"Coles\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5NzczNzE1MDQ3ODg4NzExMTswMDsn\\\"\",\r\n            \"systemId\": \"1758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32027\",\r\n            \"name\": \"Cortegada\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM5MDQwNDE0OTk4ODg4ODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"1858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32028\",\r\n            \"name\": \"Cualedro\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.393Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY5MTcxNjgzNDM1MjM4NjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"1958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32030\",\r\n            \"name\": \"Entrimo\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI1MTYwNzQxMjAyODA5NTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"1a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32031\",\r\n            \"name\": \"Esgos\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI5MjAyNjUwMTg1NzUwMTM0MTswMDsn\\\"\",\r\n            \"systemId\": \"1b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32033\",\r\n            \"name\": \"Gomesende\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI4ODYyMDgzMDgzMDkyNzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"1c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32034\",\r\n            \"name\": \"Gudiña, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ5MTY4MjEzNzMxNjc1ODA3MTswMDsn\\\"\",\r\n            \"systemId\": \"1d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32035\",\r\n            \"name\": \"Irixo, O\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc3NzY4NTMzMjgxMzM0NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32038\",\r\n            \"name\": \"Larouco\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQzNzM2MDkzMjc5NDg0NjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"1f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32039\",\r\n            \"name\": \"Laza\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzAxMzE4NzYwODgwNzA0Mzk0MTswMDsn\\\"\",\r\n            \"systemId\": \"2058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32040\",\r\n            \"name\": \"Leiro\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE1NDIyNDgxNDUzNDA0Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"2158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32041\",\r\n            \"name\": \"Lobeira\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY1NzkzMDQwMTQyOTk4NTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32042\",\r\n            \"name\": \"Lobios\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU3NjI1MTUzMzU2MTM2OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"2358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32043\",\r\n            \"name\": \"Maceda\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU1MTMzNTM2NTg4NDUzOTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"2458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32044\",\r\n            \"name\": \"Manzaneda\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMxNzcwMDcyNDE3NTE3NDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"2558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32045\",\r\n            \"name\": \"Maside\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE4MDgzMDAwODQwNTE1ODMzMTswMDsn\\\"\",\r\n            \"systemId\": \"2658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32046\",\r\n            \"name\": \"Melón\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg2NzYwNDY4NzcwMzM0OTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"2758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32047\",\r\n            \"name\": \"Merca, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYwOTE3OTcxMDg5MDc4MDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"2858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32048\",\r\n            \"name\": \"Mezquita, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk2NDUwMDcwNTYwNTYxOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"2958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32049\",\r\n            \"name\": \"Montederramo\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA3NTIwNjA3NzI5OTgyMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32050\",\r\n            \"name\": \"Monterrei\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMzMjc2MjkzMDQwMzExNjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"2b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32051\",\r\n            \"name\": \"Muíños\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.4Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTEwMzk4Mzg0ODM4ODUyNDcyMTswMDsn\\\"\",\r\n            \"systemId\": \"2c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32052\",\r\n            \"name\": \"Nogueira de Ramuín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI1MDMxNDUzMDA4MjQ1MzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"2d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32053\",\r\n            \"name\": \"Oímbra\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAyMDgzMDkyMDUxNTA4NDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"2e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32054\",\r\n            \"name\": \"Ourense\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTIwMDEzNjY5Mzc5NTE1MjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"2f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32055\",\r\n            \"name\": \"Paderne de Allariz\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA4ODgwMzA5MjY1Mzg4NjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"3058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32056\",\r\n            \"name\": \"Padrenda\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM2NjcyNzkwMjQ4MTc3NzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"3158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32057\",\r\n            \"name\": \"Parada de Sil\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY3OTUwNzkwMDE3ODcxMDA1MTswMDsn\\\"\",\r\n            \"systemId\": \"3258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32058\",\r\n            \"name\": \"Pereiro de Aguiar, O\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDIxNTE4MzMxMTY0NzQ5MzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"3358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32059\",\r\n            \"name\": \"Peroxa, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA0MzMyMTI4NjUzNDUxNDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"3458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32060\",\r\n            \"name\": \"Petín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkxODg5MTQxODk4NzQ2ODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32061\",\r\n            \"name\": \"Piñor\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.403Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM1Mzc2Mjc5Mjg5ODMyODAzMTswMDsn\\\"\",\r\n            \"systemId\": \"3658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32063\",\r\n            \"name\": \"Pobra de Trives, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ4MzA3NjI4MTUyNzcyNTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"3758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32064\",\r\n            \"name\": \"Pontedeva\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYxMjk0MTA3NDQxNDczNDEyMTswMDsn\\\"\",\r\n            \"systemId\": \"3858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32062\",\r\n            \"name\": \"Porqueira\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjAyODMxNzExODczNjg4ODE4MTswMDsn\\\"\",\r\n            \"systemId\": \"3958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32065\",\r\n            \"name\": \"Punxín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3MTg1MzUyMzUxNjAyNjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"3a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32066\",\r\n            \"name\": \"Quintela de Leirado\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyNDg3MTU1MTAxNDQ2MDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"3b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32067\",\r\n            \"name\": \"Rairiz de Veiga\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjAwMTA0NDA4NzI2ODI4Mzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"3c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32068\",\r\n            \"name\": \"Ramirás\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI5MDk1OTE2MDg1Njc2MDUzMTswMDsn\\\"\",\r\n            \"systemId\": \"3d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32069\",\r\n            \"name\": \"Ribadavia\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE3OTUzOTk3ODk4OTAwMjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32071\",\r\n            \"name\": \"Riós\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxMjg3ODE5MjU2MDY3MzI1MTswMDsn\\\"\",\r\n            \"systemId\": \"3f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32072\",\r\n            \"name\": \"Rúa, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMwOTQ0OTM0MzU0ODk4MzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"4058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32073\",\r\n            \"name\": \"Rubiá\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM4Mjc0ODY2NDMzMjAwMzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"4158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32074\",\r\n            \"name\": \"San Amaro\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQyNzE4NDc1NDkwNjUxMDExMTswMDsn\\\"\",\r\n            \"systemId\": \"4258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32075\",\r\n            \"name\": \"San Cibrao das Viñas\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA0Njk5NDA3Mzk0MzQ1MTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"4358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32076\",\r\n            \"name\": \"San Cristovo de Cea\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM4NzcxNDgyOTg2MDQxNjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"4458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32070\",\r\n            \"name\": \"San Xoán de Río\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.407Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAxODgwNDA2NjczODI4Nzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"4558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32077\",\r\n            \"name\": \"Sandiás\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEzMjgwMzU2MzE5MDkyOTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"4658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32078\",\r\n            \"name\": \"Sarreaus\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUxOTc5ODYzMTc4NzU2MDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"4758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32079\",\r\n            \"name\": \"Taboadela\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM4NDkyNzg0MDI2MDUyOTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32080\",\r\n            \"name\": \"Teixeira, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc3NDIxNDUyOTA4NTMzNDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"4958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32081\",\r\n            \"name\": \"Toén\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkxMTQ0MjY3MTc0MDAxMDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"4a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32082\",\r\n            \"name\": \"Trasmiras\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU2NzQ5MDk1MDczNTYwODQxMTswMDsn\\\"\",\r\n            \"systemId\": \"4b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32083\",\r\n            \"name\": \"Veiga, A\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM2NjQyNzM5MzIzMzc2OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"4c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32084\",\r\n            \"name\": \"Verea\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA2MTQyNTkyMjE2MzYxMTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"4d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32085\",\r\n            \"name\": \"Verín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.41Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDkyODcxNDMxMzY4Mjc3ODk4MTswMDsn\\\"\",\r\n            \"systemId\": \"4e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32086\",\r\n            \"name\": \"Viana do Bolo\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA1MzExODIxNTM3MjU4NTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"4f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32087\",\r\n            \"name\": \"Vilamarín\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg4MjEzNDUwOTE1OTI4NzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"5058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32088\",\r\n            \"name\": \"Vilamartín de Valdeorras\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE3MDU1NzcyNDgyMzg1MDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"5158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32089\",\r\n            \"name\": \"Vilar de Barrio\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc0NTg5MzIzMjkxMDU0MjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"5258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32090\",\r\n            \"name\": \"Vilar de Santos\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDExOTY5NjUwNDg4NTM4Mzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"5358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32091\",\r\n            \"name\": \"Vilardevós\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3Mjk0MTQ0NjQ4OTIwNzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"5458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32092\",\r\n            \"name\": \"Vilariño de Conso\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk2NjkxNzAwNzQxOTQwNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"5558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32032\",\r\n            \"name\": \"Xinzo de Limia\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY5OTg5NDg5NzM1OTE4NzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"5658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32036\",\r\n            \"name\": \"Xunqueira de Ambía\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM3OTA4MDY1MzQ3NzIyMzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"5758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"32037\",\r\n            \"name\": \"Xunqueira de Espadanedo\",\r\n            \"provinceNo\": 32,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.397Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU4MTQyMDQ3NjU3NjA2MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33001\",\r\n            \"name\": \"Allande\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ4MzI3MDc0MjEwMTc1OTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"5958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33002\",\r\n            \"name\": \"Aller\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg2NjU3MTc2NTM4NjIwMjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"5a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33003\",\r\n            \"name\": \"Amieva\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.413Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA4OTQ1NTg5NzI1NDY0Mjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"5b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33004\",\r\n            \"name\": \"Avilés\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjMyNjM3NTU1MzQzODU4NDExMTswMDsn\\\"\",\r\n            \"systemId\": \"5c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33005\",\r\n            \"name\": \"Belmonte de Miranda\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYxNjgyMjA0Mzc1Mzk3NzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"5d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33006\",\r\n            \"name\": \"Bimenes\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk2NTAzNzM3MjcxMzU1MTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"5e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33007\",\r\n            \"name\": \"Boal\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg2MjY5NjgwMzgxMjIzMTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"5f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33008\",\r\n            \"name\": \"Cabrales\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk5NjM2MzQwODI4MDYxMjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"6058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33009\",\r\n            \"name\": \"Cabranes\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk4NTYzMTg0ODkwODQzNjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"6158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33010\",\r\n            \"name\": \"Candamo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE1Mzg5NTk5OTc0MjU0NzAzMTswMDsn\\\"\",\r\n            \"systemId\": \"6258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33012\",\r\n            \"name\": \"Cangas de Onís\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgxNzQ3NDU4NTMzMTI0ODk1MTswMDsn\\\"\",\r\n            \"systemId\": \"6358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33011\",\r\n            \"name\": \"Cangas del Narcea\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU5NzM4NzI3OTgzMDg1MTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"6458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33013\",\r\n            \"name\": \"Caravia\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc3MzI4NTg2NDIwMDkzNTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"6558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33014\",\r\n            \"name\": \"Carreño\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEyNDM5NTU1OTc1MzAwNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"6658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33015\",\r\n            \"name\": \"Caso\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMyMDMwOTM4MTgzNTgyOTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33016\",\r\n            \"name\": \"Castrillón\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.417Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk5NzgxMTg0OTk3MjA5ODkyMTswMDsn\\\"\",\r\n            \"systemId\": \"6858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33017\",\r\n            \"name\": \"Castropol\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE5ODMzMDI1MzIwMjk5MDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"6958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33018\",\r\n            \"name\": \"Coaña\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg3MTQ3NzAzMTg5ODU4OTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"6a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33019\",\r\n            \"name\": \"Colunga\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg3Njc5MzcwNzgzMjE2ODAyMTswMDsn\\\"\",\r\n            \"systemId\": \"6b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33020\",\r\n            \"name\": \"Corvera de Asturias\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczMDA3MjUxODY0MjE1ODMzMTswMDsn\\\"\",\r\n            \"systemId\": \"6c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33021\",\r\n            \"name\": \"Cudillero\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUxNjkyODQyMTYxNjU2NTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"6d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33022\",\r\n            \"name\": \"Degaña\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc0NzU0Mjc4OTc3NzE2OTExMTswMDsn\\\"\",\r\n            \"systemId\": \"6e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33023\",\r\n            \"name\": \"Franco, El\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAxODM3ODY3NTE4NDcxMjE5MTswMDsn\\\"\",\r\n            \"systemId\": \"6f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33024\",\r\n            \"name\": \"Gijón\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk5MTEzODE1ODI0NDQ4OTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"7058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33025\",\r\n            \"name\": \"Gozón\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.42Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgxNzUyMjcwNTY3MjMwODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"7158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33026\",\r\n            \"name\": \"Grado\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY0OTc2NDUyMTAyMDAzOTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"7258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33027\",\r\n            \"name\": \"Grandas de Salime\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ1ODExNDMzNjY3NzQ3MTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"7358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33028\",\r\n            \"name\": \"Ibias\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjM4NjE4MDY3MjE1MzM5MTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"7458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33029\",\r\n            \"name\": \"Illano\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU5MDE2MDM5NDY4MDAxNjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"7558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33030\",\r\n            \"name\": \"Illas\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAxNDAyMzY2NTM3MTE4ODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"7658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33031\",\r\n            \"name\": \"Langreo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQzNzI2NDE5MTM4MzA0NTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"7758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33032\",\r\n            \"name\": \"Laviana\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY5MDEzNDgwMDY3MzkyMzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"7858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33033\",\r\n            \"name\": \"Lena\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc3MDQ5NzM2MDE5MzcxNzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"7958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33035\",\r\n            \"name\": \"Llanera\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE1Njg3MDUxNzgzNzk2NDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33036\",\r\n            \"name\": \"Llanes\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg2OTQ0ODg2OTUzMzcwMjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"7b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33037\",\r\n            \"name\": \"Mieres\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODIzMDk5NDA0ODU2MTUwNjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33038\",\r\n            \"name\": \"Morcín\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE1NjE0MzU3NTQwNzczNjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"7d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33039\",\r\n            \"name\": \"Muros de Nalón\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg5ODM3ODk2MjM4MDgyMzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"7e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33040\",\r\n            \"name\": \"Nava\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg4NzkyNTYzNTAzMTg1MzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"7f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33041\",\r\n            \"name\": \"Navia\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM4ODY2NjY2NzE4NzQ1NDYyMTswMDsn\\\"\",\r\n            \"systemId\": \"8058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33042\",\r\n            \"name\": \"Noreña\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgzNzMxMDgyMjU5OTM0MDEyMTswMDsn\\\"\",\r\n            \"systemId\": \"8158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33043\",\r\n            \"name\": \"Onís\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2MTY3OTMwOTEzNjk2NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"8258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33044\",\r\n            \"name\": \"Oviedo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0MTAwODg1MDc4NTI3Mzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"8358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33045\",\r\n            \"name\": \"Parres\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU2OTYwNjk1MTUxMjQ0OTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"8458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33046\",\r\n            \"name\": \"Peñamellera Alta\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODcwMDIxNjYxODAzNDM0NDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"8558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33047\",\r\n            \"name\": \"Peñamellera Baja\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQyNzA3ODY5NzM3NzE4OTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"8658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33048\",\r\n            \"name\": \"Pesoz\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUwNDA3MDQyOTAzOTg3Mzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"8758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33049\",\r\n            \"name\": \"Piloña\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk4MzYxMDc5ODk0MDc1MDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"8858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33050\",\r\n            \"name\": \"Ponga\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.427Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ0OTM3MzA5MTkwNDYyMTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33051\",\r\n            \"name\": \"Pravia\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk3ODY5OTA3NDY1MjMwOTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"8a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33052\",\r\n            \"name\": \"Proaza\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEwNTc3MDA3MjUzMDUzOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33053\",\r\n            \"name\": \"Quirós\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA5MzA0NjQwMzU3ODQ4NzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"8c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33054\",\r\n            \"name\": \"Regueras, Las\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkyNTQ1NjAzODkzNzQzMTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"8d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33055\",\r\n            \"name\": \"Ribadedeva\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgyNDMwNjk4MDY5NzEwNDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33056\",\r\n            \"name\": \"Ribadesella\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU2NjY0OTY5MTIxODY0MTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33057\",\r\n            \"name\": \"Ribera de Arriba\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAwMjkwNjQzNTc1NzYyNzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"9058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33058\",\r\n            \"name\": \"Riosa\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY2NTczNDA4MzMyOTgxNjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"9158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33059\",\r\n            \"name\": \"Salas\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUzNzUxMzg4OTE4ODk2OTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"9258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33061\",\r\n            \"name\": \"San Martín de Oscos\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ4MzU1MjU3MDMxNzI5OTczMTswMDsn\\\"\",\r\n            \"systemId\": \"9358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33060\",\r\n            \"name\": \"San Martín del Rey Aurelio\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.43Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTIyMTkxODEwMzk4Nzc1NDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"9458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33063\",\r\n            \"name\": \"San Tirso de Abres\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTczODU0NjA2MzcwOTMwNjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"9558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33062\",\r\n            \"name\": \"Santa Eulalia de Oscos\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDkxODIxMzAxNTY1MzY3NjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"9658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33064\",\r\n            \"name\": \"Santo Adriano\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI1MTc2MjE0NjkzNzIwNDExMTswMDsn\\\"\",\r\n            \"systemId\": \"9758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33065\",\r\n            \"name\": \"Sariego\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA1NTY5Mzk1MzE3ODY2NDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"9858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33066\",\r\n            \"name\": \"Siero\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjExMTgxMDk2NzQyMTA5Nzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"9958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33067\",\r\n            \"name\": \"Sobrescobio\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU3MzIzMjYxNzYyMjY4NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"9a58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33068\",\r\n            \"name\": \"Somiedo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI5NTQ3NzMyOTYxMTc3NTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"9b58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33069\",\r\n            \"name\": \"Soto del Barco\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg4NjgyNDg5NzA0MjcxOTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"9c58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33070\",\r\n            \"name\": \"Tapia de Casariego\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.433Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIwNzgzMjI0MjQwMDM5NDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"9d58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33071\",\r\n            \"name\": \"Taramundi\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjkxMzk1OTQ5NjQwNzcwMTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"9e58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33072\",\r\n            \"name\": \"Teverga\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUwMTU2NzgyNzEzMTEyNTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"9f58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33073\",\r\n            \"name\": \"Tineo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzcxMTk4MDA3Njk2NTczNDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"a058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33034\",\r\n            \"name\": \"Valdés\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.423Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk5MjI0NDUwMjMyNzAyMzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"a158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33074\",\r\n            \"name\": \"Vegadeo\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg2NjA5OTQ1NTgyNzY0MjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"a258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33075\",\r\n            \"name\": \"Villanueva de Oscos\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU4OTk3ODQxMTA5MDcyODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"a358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33076\",\r\n            \"name\": \"Villaviciosa\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk3NDEzMzcyMTk4MTA1NjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"a458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33077\",\r\n            \"name\": \"Villayón\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc1MTUwOTk2NjU4OTMzNDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"a558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"33078\",\r\n            \"name\": \"Yernes y Tameza\",\r\n            \"provinceNo\": 33,\r\n            \"autonomousCommunityNo\": 3,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDExMzgwNzc3ODAxNTA1ODgzMTswMDsn\\\"\",\r\n            \"systemId\": \"a658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34001\",\r\n            \"name\": \"Abarca de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5NDA1NDQ3OTc4NDMzNzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"a758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34003\",\r\n            \"name\": \"Abia de las Torres\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM4ODAzMDg5MDMyOTkyODgwMTswMDsn\\\"\",\r\n            \"systemId\": \"a858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34004\",\r\n            \"name\": \"Aguilar de Campoo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTE2NTM5NjczNzEwNDEzMzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"a958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34005\",\r\n            \"name\": \"Alar del Rey\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY4MzY4NDExMDA4NTE0Mzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"aa58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34006\",\r\n            \"name\": \"Alba de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk0MDYxNzA5NTkwNTU2OTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"ab58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34009\",\r\n            \"name\": \"Amayuelas de Arriba\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ3OTI3NTEyOTkzMzc2NDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"ac58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34010\",\r\n            \"name\": \"Ampudia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.437Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc1OTMxODQxMjc0NDI0OTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"ad58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34011\",\r\n            \"name\": \"Amusco\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU3NDEzNDg1NTQ5MDE2NjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"ae58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34012\",\r\n            \"name\": \"Antigüedad\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYxMzYwMjc5MTA0NDM0OTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"af58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34015\",\r\n            \"name\": \"Arconada\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxOTkxMjQxMTA3OTI4NjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"b058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34017\",\r\n            \"name\": \"Astudillo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUzMjU1NTYwMTM4NDM3ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"b158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34018\",\r\n            \"name\": \"Autilla del Pino\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA2MTc2NzY0NjkwODIyMjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"b258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34019\",\r\n            \"name\": \"Autillo de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU2NTY2MDg0NjM4MTEyMjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"b358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34020\",\r\n            \"name\": \"Ayuela\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTAyNzAzNzcwMDU3NTQyMzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"b458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34022\",\r\n            \"name\": \"Baltanás\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc5NzcxNzg1NTYwODA1NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"b558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34024\",\r\n            \"name\": \"Baquerín de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxNzg0ODY2NzQwMTExMDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"b658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34025\",\r\n            \"name\": \"Bárcena de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM5MTkzNTA5ODEwMTgwNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"b758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34027\",\r\n            \"name\": \"Barruelo de Santullán\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc4ODg4ODUzODQ0Mzg3MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"b858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34028\",\r\n            \"name\": \"Báscones de Ojeda\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYzODkwMjI3OTkyNzUyMzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"b958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34029\",\r\n            \"name\": \"Becerril de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY1MDM3MDc0NDAyODkwMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"ba58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34031\",\r\n            \"name\": \"Belmonte de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA4OTM1NTQ1NDM2NTIzNjg0MTswMDsn\\\"\",\r\n            \"systemId\": \"bb58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34032\",\r\n            \"name\": \"Berzosilla\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUxOTk3MDM4MzA2NzU0MDczMTswMDsn\\\"\",\r\n            \"systemId\": \"bc58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34033\",\r\n            \"name\": \"Boada de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg1OTYwMTg1MTY1Nzk3MjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"bd58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34035\",\r\n            \"name\": \"Boadilla de Rioseco\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYyNTY1MTUzODIyNzg4OTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"be58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34034\",\r\n            \"name\": \"Boadilla del Camino\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc1NDE4MTY4MTM5ODA1NDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"bf58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34036\",\r\n            \"name\": \"Brañosera\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.443Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQzMDA1MjE2NzY3MDEzODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"c058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34037\",\r\n            \"name\": \"Buenavista de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM0OTY1NDUxMDE0NTA2NzMxMTswMDsn\\\"\",\r\n            \"systemId\": \"c158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34038\",\r\n            \"name\": \"Bustillo de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg4MDAxMTg2OTY0NjEzMDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"c258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34039\",\r\n            \"name\": \"Bustillo del Páramo de Carrión\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI5MTQxOTI3NjA3Nzc5NjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"c358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34041\",\r\n            \"name\": \"Calahorra de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg5ODU3ODM0NTYwMjUxNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"c458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34042\",\r\n            \"name\": \"Calzada de los Molinos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDExMDUwNzA0MTc5MTc0NDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"c558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34045\",\r\n            \"name\": \"Capillas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA3MzI2MjkwMDE4Nzk5MjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"c658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34046\",\r\n            \"name\": \"Cardeñosa de Volpejera\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkyMDAyNjc4ODE2MTUxOTczMTswMDsn\\\"\",\r\n            \"systemId\": \"c758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34047\",\r\n            \"name\": \"Carrión de los Condes\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk0OTE5MDQ2MjMyNDU2MjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"c858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34048\",\r\n            \"name\": \"Castil de Vela\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg5MDc2Nzk4NTU4MjU2MDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"c958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34049\",\r\n            \"name\": \"Castrejón de la Peña\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg0OTU0MzkyNDQzNjk2MzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"ca58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34050\",\r\n            \"name\": \"Castrillo de Don Juan\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYzNzYzMTM3MDA2NzI0MjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"cb58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34051\",\r\n            \"name\": \"Castrillo de Onielo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk3MDg5NzQ5MTgwOTE1ODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"cc58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34052\",\r\n            \"name\": \"Castrillo de Villavega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg4OTU3MDQyMDY4MDM2NjE1MTswMDsn\\\"\",\r\n            \"systemId\": \"cd58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34053\",\r\n            \"name\": \"Castromocho\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.447Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk3MzkyMDI1NjE5ODc5OTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"ce58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34055\",\r\n            \"name\": \"Cervatos de la Cueza\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1OTYzMTMyNDA5MjI3NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"cf58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34056\",\r\n            \"name\": \"Cervera de Pisuerga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYwMzM5MTUwNTMxMzkwODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"d058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34057\",\r\n            \"name\": \"Cevico de la Torre\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk2OTMwNTMwOTYwMDIyOTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"d158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34058\",\r\n            \"name\": \"Cevico Navero\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjAwNDMwODk0NzA0NTc1MDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"d258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34059\",\r\n            \"name\": \"Cisneros\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY4MDE5MTgyNzA4OTY4MzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"d358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34060\",\r\n            \"name\": \"Cobos de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA5NDgxMjExOTIyNTA0NjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"d458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34061\",\r\n            \"name\": \"Collazos de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzMyMjUxNzM3Nzg1NzE5MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"d558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34062\",\r\n            \"name\": \"Congosto de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjkzMzc3OTY1MjExMjI0MTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"d658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34063\",\r\n            \"name\": \"Cordovilla la Real\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.45Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk3NzMwMDEyMTU0MTY0ODMwMTswMDsn\\\"\",\r\n            \"systemId\": \"d758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34066\",\r\n            \"name\": \"Cubillas de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc5NjcyNTg1NTAwNjY0MzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"d858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34067\",\r\n            \"name\": \"Dehesa de Montejo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI3NzQ0MDc4NTI3NTY4MzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"d958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34068\",\r\n            \"name\": \"Dehesa de Romanos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg4NzcwMDI1OTQxMTgzNTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"da58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34069\",\r\n            \"name\": \"Dueñas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUzMTYxOTI1MjIyMTU3MTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"db58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34070\",\r\n            \"name\": \"Espinosa de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc4NTA3MzM5ODc1MTAzMzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"dc58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34071\",\r\n            \"name\": \"Espinosa de Villagonzalo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE4NTI1MzIyODQ2NzQ1NzgzMTswMDsn\\\"\",\r\n            \"systemId\": \"dd58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34072\",\r\n            \"name\": \"Frechilla\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEzNDMyNzY1MjU3NDc4NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"de58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34073\",\r\n            \"name\": \"Fresno del Río\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM0MjE4OTU3Njg2NTc3MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"df58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34074\",\r\n            \"name\": \"Frómista\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE4NTk1MTgyNjg3NzU1NzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"e058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34076\",\r\n            \"name\": \"Fuentes de Nava\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.453Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI4OTU1MjA3MjIxMzU5ODE3MTswMDsn\\\"\",\r\n            \"systemId\": \"e158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34077\",\r\n            \"name\": \"Fuentes de Valdepero\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIyMjk2MTIyMDU0NzcxMzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"e258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34079\",\r\n            \"name\": \"Grijota\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgyMTE5NjE5ODkxMTM3NDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"e358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34080\",\r\n            \"name\": \"Guardo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMyMjIyNDI2ODc2Mzc5MjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"e458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34081\",\r\n            \"name\": \"Guaza de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQyNzQ2MzMyMTAyMDc3NTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"e558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34082\",\r\n            \"name\": \"Hérmedes de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc4NjY3MjAxODUxMjY4OTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"e658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34083\",\r\n            \"name\": \"Herrera de Pisuerga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEyMzQxNDA2MjE3MjY3MzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"e758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34084\",\r\n            \"name\": \"Herrera de Valdecañas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA1MTMzMDcwNTA1NDUzODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"e858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34086\",\r\n            \"name\": \"Hontoria de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAxMTI1Mjg0MDM4NDY4MzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"e958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34087\",\r\n            \"name\": \"Hornillos de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI1NDA3NzUxMzU1MTgyNzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"ea58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34088\",\r\n            \"name\": \"Husillos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM1MDU2NDAwNDUzNzkwNzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"eb58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34089\",\r\n            \"name\": \"Itero de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMyMzA0NjE0NDI3MDE4NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"ec58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34091\",\r\n            \"name\": \"Lagartos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.457Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY1MzYzMzY5Njc5NTQxNTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"ed58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34092\",\r\n            \"name\": \"Lantadilla\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQyMzk2ODQ5MTQxMTYyMDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"ee58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34094\",\r\n            \"name\": \"Ledigos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAwNjAxMjgwMTI0Nzc5NzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"ef58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34903\",\r\n            \"name\": \"Loma de Ucieza\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI0MDM0ODg4MDc5MTM0MjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"f058e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34096\",\r\n            \"name\": \"Lomas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkxMDYxMzAyNzcyMTY4NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"f158e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34098\",\r\n            \"name\": \"Magaz de Pisuerga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk4MDU0NzI1NzE1NjI0MjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"f258e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34099\",\r\n            \"name\": \"Manquillos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUxMjMxNjcyNjA1OTU3NTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"f358e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34100\",\r\n            \"name\": \"Mantinos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAyNjI4NDA5MzQwMDA4NjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"f458e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34101\",\r\n            \"name\": \"Marcilla de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIxMTE4MTg0ODQ5NTU4MzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"f558e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34102\",\r\n            \"name\": \"Mazariegos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk2MDMzNjQ2NzcyNjA4MzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"f658e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34103\",\r\n            \"name\": \"Mazuecos de Valdeginate\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkyMzUzMTIzNTk2ODQ4Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"f758e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34104\",\r\n            \"name\": \"Melgar de Yuso\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUwMTk3OTE2OTQ0NjE3NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"f858e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34106\",\r\n            \"name\": \"Meneses de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA0NDkwMjU2MjIzMTQ1ODczMTswMDsn\\\"\",\r\n            \"systemId\": \"f958e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34107\",\r\n            \"name\": \"Micieces de Ojeda\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5NDY5ODQ0MTIzNjM3MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"fa58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34108\",\r\n            \"name\": \"Monzón de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg2NTY4ODQzNTQ0NDczMTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"fb58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34109\",\r\n            \"name\": \"Moratinos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ0NTYxNTk2OTcwNzU5MzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"fc58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34110\",\r\n            \"name\": \"Mudá\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA1ODU1ODMzMTgzNDg5Nzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"fd58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34112\",\r\n            \"name\": \"Nogal de las Huertas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE4NTc2NjM4MDE0MDE4NDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"fe58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34113\",\r\n            \"name\": \"Olea de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDMwNzU4NzY2NDM3OTY1MzE3MTswMDsn\\\"\",\r\n            \"systemId\": \"ff58e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34114\",\r\n            \"name\": \"Olmos de Ojeda\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI1MzQyNjg2MTM1NDcxMDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"0059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34116\",\r\n            \"name\": \"Osornillo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.463Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE0NzkwMDUzNDk2MzcwNTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"0159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34901\",\r\n            \"name\": \"Osorno la Mayor\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg5NTQ2Mjk1ODYyNjEwNjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"0259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34120\",\r\n            \"name\": \"Palencia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAwMzM0MDE0NjQ0NTIwMDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"0359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34121\",\r\n            \"name\": \"Palenzuela\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA0NDk4MzE0Njk5MzA2ODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"0459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34122\",\r\n            \"name\": \"Páramo de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg5MTQzMjc3ODMyNDMwNjk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34123\",\r\n            \"name\": \"Paredes de Nava\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY2OTg4NzQ5MDI2NTY0MDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"0659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34124\",\r\n            \"name\": \"Payo de Ojeda\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExNTQ3MzE2OTUyODc5OTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"0759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34125\",\r\n            \"name\": \"Pedraza de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY5NTAxODI2MjEzMjE0NDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"0859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34126\",\r\n            \"name\": \"Pedrosa de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA2NTM3OTMyMDk3MjkxNjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"0959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34127\",\r\n            \"name\": \"Perales\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA3OTYxODI4NDk1MjYxNjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"0a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34904\",\r\n            \"name\": \"Pernía, La\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg0Nzg2OTAyNDUzNjQ5NDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"0b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34129\",\r\n            \"name\": \"Pino del Río\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA3MjI5NTc2ODE2NjM3Njg5MTswMDsn\\\"\",\r\n            \"systemId\": \"0c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34130\",\r\n            \"name\": \"Piña de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQwOTE5MzQ4Nzk1MzgzOTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34131\",\r\n            \"name\": \"Población de Arroyo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzAzNTA4ODgzMzEzMDU4NTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"0e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34132\",\r\n            \"name\": \"Población de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.467Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIyNTg2ODYyNjk1Nzg5NDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"0f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34133\",\r\n            \"name\": \"Población de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzNTY5MTEyMjk5MDgzMzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"1059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34134\",\r\n            \"name\": \"Polentinos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYxMTQ3ODgzNjkyNTAxMzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"1159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34135\",\r\n            \"name\": \"Pomar de Valdivia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI0Nzc2NzkxOTA3MzA4MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"1259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34136\",\r\n            \"name\": \"Poza de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEzMjgzMzc1MDAzMzg2MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"1359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34137\",\r\n            \"name\": \"Pozo de Urama\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAyMzk1MjY2NzQwMzY5NDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"1459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34139\",\r\n            \"name\": \"Prádanos de Ojeda\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIwNDkwMTcxNTc2NDczMTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"1559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34140\",\r\n            \"name\": \"Puebla de Valdavia, La\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcwOTEyMjk3Mzk1OTMxMzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"1659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34141\",\r\n            \"name\": \"Quintana del Puente\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTExMjkwODc0MjE1OTM3NjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"1759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34143\",\r\n            \"name\": \"Quintanilla de Onsoña\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQyNzk2NDkzNzc4MjkxMjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34146\",\r\n            \"name\": \"Reinoso de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY1NjE4NDE5Mjc4MjkwOTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"1959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34147\",\r\n            \"name\": \"Renedo de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUxMzI2NTc0NzIwMzIyODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"1a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34149\",\r\n            \"name\": \"Requena de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI4NTU5OTk2MTE2NzYyMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"1b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34151\",\r\n            \"name\": \"Respenda de la Peña\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.47Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ1NzI0MjQwODc3OTY5OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"1c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34152\",\r\n            \"name\": \"Revenga de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk4Njg2NzYwMjY4ODEzNTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"1d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34154\",\r\n            \"name\": \"Revilla de Collazos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM5MjI2NTA3OTkwMjU5OTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"1e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34155\",\r\n            \"name\": \"Ribas de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE5NzExNDEwNDQ3MTQxMjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"1f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34156\",\r\n            \"name\": \"Riberos de la Cueza\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk1MTk0MjgxODg3MzIyMTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"2059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34157\",\r\n            \"name\": \"Saldaña\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMyNTA3OTEwMzE1NzgwOTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"2159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34158\",\r\n            \"name\": \"Salinas de Pisuerga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgwNDIyMjk1NTQ5OTcxNjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"2259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34159\",\r\n            \"name\": \"San Cebrián de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.473Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEyOTA2ODA5MjY0OTEzMTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"2359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34160\",\r\n            \"name\": \"San Cebrián de Mudá\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc2Nzg5NTc3NDU4MTE1MTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"2459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34161\",\r\n            \"name\": \"San Cristóbal de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzcxMjIxMjc1NDA0Mzk5MjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"2559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34163\",\r\n            \"name\": \"San Mamés de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI4Nzg3NzY5OTI2ODE5MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"2659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34165\",\r\n            \"name\": \"San Román de la Cuba\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQ3NjcxNDIwOTMzNzI1NTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"2759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34167\",\r\n            \"name\": \"Santa Cecilia del Alcor\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ4NTk3NjY1ODQ4OTk2OTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"2859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34168\",\r\n            \"name\": \"Santa Cruz de Boedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYzNDc3MjQyNTcwMDg3MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"2959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34169\",\r\n            \"name\": \"Santervás de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODExMTI3NTg4MzY0NTA3NjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"2a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34170\",\r\n            \"name\": \"Santibáñez de Ecla\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODcwMDMyMDgzNTIyMDk4MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"2b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34171\",\r\n            \"name\": \"Santibáñez de la Peña\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk1NTczNDM1MjY5ODAyOTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"2c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34174\",\r\n            \"name\": \"Santoyo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM1MTEyNTAxODg4NDM0MDA2MTswMDsn\\\"\",\r\n            \"systemId\": \"2d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34175\",\r\n            \"name\": \"Serna, La\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxNjgzMDUzODI5NzE1MDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"2e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34177\",\r\n            \"name\": \"Soto de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE5MDgwNTkwMTEzMDYzOTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"2f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34176\",\r\n            \"name\": \"Sotobañado y Priorato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.477Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg4MTA0NDYzNjUxMDUwMjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"3059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34178\",\r\n            \"name\": \"Tabanera de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE4NzM2MDA4MDExMTM0NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"3159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34179\",\r\n            \"name\": \"Tabanera de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUzOTk2NTU5MjY4NTc1NDg0MTswMDsn\\\"\",\r\n            \"systemId\": \"3259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34180\",\r\n            \"name\": \"Támara de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgzODc4MDI4MDA4ODc0NzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"3359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34181\",\r\n            \"name\": \"Tariego de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDYzNjQxMzY1MzYwNjQwNzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"3459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34182\",\r\n            \"name\": \"Torquemada\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkyMjI4MTM5NDYxMzg3OTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"3559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34184\",\r\n            \"name\": \"Torremormojón\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ4Njk4MDMyMDE4Mzc5NTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"3659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34185\",\r\n            \"name\": \"Triollo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAzNzk1MjU5NDIxOTEzNzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"3759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34186\",\r\n            \"name\": \"Valbuena de Pisuerga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY4NTAzMjM5MDYxMTk5NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"3859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34189\",\r\n            \"name\": \"Valdeolmillos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTU5MjE4NzY0NDc0MzAzNTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"3959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34190\",\r\n            \"name\": \"Valderrábano\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.48Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ5ODYyMDg3MzI4MjI3MTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"3a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34192\",\r\n            \"name\": \"Valde-Ucieza\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyMzI2MDE3MDYzOTE3NDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"3b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34196\",\r\n            \"name\": \"Valle de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM1NTEwODg1MjgyOTIzNTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"3c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34902\",\r\n            \"name\": \"Valle del Retortillo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg1NjUxNDgxMTEwMTE3NjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"3d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34199\",\r\n            \"name\": \"Velilla del Río Carrión\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc4ODc0MTM3ODM0MTQ0MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"3e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34023\",\r\n            \"name\": \"Venta de Baños\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.44Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM1NTgyMjU2ODY4NjAzNjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"3f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34201\",\r\n            \"name\": \"Vertavillo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMyODk2OTU0NTMzNjY0NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"4059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34093\",\r\n            \"name\": \"Vid de Ojeda, La\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.46Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ0NzA0OTQ0MTYwNTkwMDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34202\",\r\n            \"name\": \"Villabasta de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjMzNTAzMzkzMjUxMzAwMDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"4259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34204\",\r\n            \"name\": \"Villacidaler\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk3MTA1MDgwNTg4MzI3ODI4MTswMDsn\\\"\",\r\n            \"systemId\": \"4359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34205\",\r\n            \"name\": \"Villaconancio\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg5OTIyNzU5NTc5OTcwNTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"4459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34206\",\r\n            \"name\": \"Villada\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgyODY1ODc0OTY1NjcwNzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"4559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34208\",\r\n            \"name\": \"Villaeles de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY0MDg5NjYyNjM0NzI5NTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"4659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34210\",\r\n            \"name\": \"Villahán\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.483Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI3NjM4NDM0NjUxMTEyNDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"4759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34211\",\r\n            \"name\": \"Villaherreros\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ3OTc4MDAyODc0NTg2MjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"4859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34213\",\r\n            \"name\": \"Villalaco\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc0ODk2MzgyMTQ3Njg1Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"4959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34214\",\r\n            \"name\": \"Villalba de Guardo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkwOTkyMzkyNzQzMDY0ODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"4a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34215\",\r\n            \"name\": \"Villalcázar de Sirga\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU1NjgwNTc0NzMyODU0NzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"4b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34216\",\r\n            \"name\": \"Villalcón\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA1NjY1NzE2ODIyNzY4MzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"4c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34217\",\r\n            \"name\": \"Villalobón\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMxMzEyNDYwMjY1OTQzOTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"4d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34218\",\r\n            \"name\": \"Villaluenga de la Vega\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQzNjcwMDI1MDM4NzU5NjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"4e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34220\",\r\n            \"name\": \"Villamartín de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIxODU1NTgzNTkxNTIyMTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"4f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34221\",\r\n            \"name\": \"Villamediana\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk5MTY1OTMzODA4MjE0MzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"5059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34222\",\r\n            \"name\": \"Villameriel\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQzOTg1OTY2OTcyNzY0MzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"5159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34223\",\r\n            \"name\": \"Villamoronta\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYyNDg4ODgyNzg4ODAyMDczMTswMDsn\\\"\",\r\n            \"systemId\": \"5259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34224\",\r\n            \"name\": \"Villamuera de la Cueza\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYwMTQ2MjE3MDI0OTgyNTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"5359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34225\",\r\n            \"name\": \"Villamuriel de Cerrato\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM5NjYyNDM5Njk2ODE2ODAwMTswMDsn\\\"\",\r\n            \"systemId\": \"5459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34227\",\r\n            \"name\": \"Villanueva del Rebollar\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.487Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYyNTI0NTgzNDU0MjUxOTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34228\",\r\n            \"name\": \"Villanuño de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3MjgyODM2NjA5NzcxNTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"5659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34229\",\r\n            \"name\": \"Villaprovedo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDUxMDk0Mjk0NjMzMDg4MzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"5759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34230\",\r\n            \"name\": \"Villarmentero de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI1NjA2ODIzOTU3NDg3MzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"5859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34231\",\r\n            \"name\": \"Villarrabé\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk5NDY5NTU1Nzk0MzI3NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"5959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34232\",\r\n            \"name\": \"Villarramiel\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI3MDc2NDc5MTYwNDcwMjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"5a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34233\",\r\n            \"name\": \"Villasarracino\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTExMDc0NjAzMTIwMzIzODA1MTswMDsn\\\"\",\r\n            \"systemId\": \"5b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34234\",\r\n            \"name\": \"Villasila de Valdavia\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI1OTA2Nzg3MTI3MjYzNTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"5c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34236\",\r\n            \"name\": \"Villaturde\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjcxNzgwMjA4NzgzOTY1NTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"5d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34237\",\r\n            \"name\": \"Villaumbrales\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.49Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg0MDY1MDUzNDk1NzExNzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"5e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34238\",\r\n            \"name\": \"Villaviudas\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM3NzE4Mzc1MDY1ODgwNzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"5f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34240\",\r\n            \"name\": \"Villerías de Campos\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc3MTcxMzg3OTUzOTc3NDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"6059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34241\",\r\n            \"name\": \"Villodre\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE1NzMxNzQxOTEyMjU1MzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"6159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34242\",\r\n            \"name\": \"Villodrigo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODYxMTcyNTYxODc2NjA5NjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"6259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34243\",\r\n            \"name\": \"Villoldo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAyNDcyNjg2NjQ0NzI3NjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"6359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34245\",\r\n            \"name\": \"Villota del Páramo\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYwMzAyMjg2MTg2ODA5MjI5MTswMDsn\\\"\",\r\n            \"systemId\": \"6459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"34246\",\r\n            \"name\": \"Villovieco\",\r\n            \"provinceNo\": 34,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.493Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ3NTE2MTMzNDYwMTA3NDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"6559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35001\",\r\n            \"name\": \"Agaete\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg3MDc4NzY2Mjk4Nzk2ODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"6659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35002\",\r\n            \"name\": \"Agüimes\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY1OTAyNzkyODg0NDE2MDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"6759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35020\",\r\n            \"name\": \"Aldea de San Nicolás, La\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI3MDQ3ODM2MjQ5NDE0MTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"6859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35003\",\r\n            \"name\": \"Antigua\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM4MjA3MzI3OTc3NDM5ODA1MTswMDsn\\\"\",\r\n            \"systemId\": \"6959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35004\",\r\n            \"name\": \"Arrecife\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE0NDYzMDk2NDk3MDUwNDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"6a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35005\",\r\n            \"name\": \"Artenara\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTgwNjc4MzE2NTA1MjA5NzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"6b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35006\",\r\n            \"name\": \"Arucas\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg0MTk2NDcwNjkzNTU5Nzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"6c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35007\",\r\n            \"name\": \"Betancuria\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM2Nzk0NTYyMTMxOTQxNDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"6d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35008\",\r\n            \"name\": \"Firgas\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwNzYxNDE0NjY5NTY0NjYxMTswMDsn\\\"\",\r\n            \"systemId\": \"6e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35009\",\r\n            \"name\": \"Gáldar\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA3OTg0NjYwMDcwMzg3NDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"6f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35010\",\r\n            \"name\": \"Haría\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkwOTc3ODQ0ODUxNDE4NDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"7059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35011\",\r\n            \"name\": \"Ingenio\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEyMTUwNDA2MzI4NTIwNjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"7159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35012\",\r\n            \"name\": \"Mogán\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.497Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc3MzY0OTg5NTI0NjI3NjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"7259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35013\",\r\n            \"name\": \"Moya\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc0NDg2Njg1MDM1MTU3NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"7359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35014\",\r\n            \"name\": \"Oliva, La\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU3MjcyMTczMTE0MDI4MDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"7459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35015\",\r\n            \"name\": \"Pájara\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg3NDM1NDkzMzMzNDE1NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"7559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35016\",\r\n            \"name\": \"Palmas de Gran Canaria, Las\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ2NzUwNTk0NjE4MDY3MzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"7659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35017\",\r\n            \"name\": \"Puerto del Rosario\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc4NTEwNTY0MjUzMzAzNTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"7759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35018\",\r\n            \"name\": \"San Bartolomé\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAzNzIwNTIwNjA0NjY2NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"7859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35019\",\r\n            \"name\": \"San Bartolomé de Tirajana\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzIwNjMyMDQwMzU4ODU5MTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"7959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35021\",\r\n            \"name\": \"Santa Brígida\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE1NjQ3MTc1MzY2NTc3MDc4MTswMDsn\\\"\",\r\n            \"systemId\": \"7a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35022\",\r\n            \"name\": \"Santa Lucía de Tirajana\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU2MDE4NjU1MDU1NjcxOTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"7b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35023\",\r\n            \"name\": \"Santa María de Guía de Gran Canaria\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI3MTExMzIwOTUwNDY5NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"7c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35024\",\r\n            \"name\": \"Teguise\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAyMDE0MjI2MDMzNDU0ODAxMTswMDsn\\\"\",\r\n            \"systemId\": \"7d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35025\",\r\n            \"name\": \"Tejeda\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY4NjA2NTU2OTQyMzcxNzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"7e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35026\",\r\n            \"name\": \"Telde\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.5Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgyNzMyNzk0NjQ0OTI0MzYwMTswMDsn\\\"\",\r\n            \"systemId\": \"7f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35027\",\r\n            \"name\": \"Teror\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgyNDczMzY4NjM4MTUyMjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"8059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35028\",\r\n            \"name\": \"Tías\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU2NzQzMjQxMDI2OTcwNDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"8159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35029\",\r\n            \"name\": \"Tinajo\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU3Njg0ODc0ODI5NTYzMDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"8259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35030\",\r\n            \"name\": \"Tuineje\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI1OTA3Mzk5OTQ4NDk4NTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"8359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35032\",\r\n            \"name\": \"Valleseco\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI5NjY1MDE5OTk1NjgyNzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"8459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35031\",\r\n            \"name\": \"Valsequillo de Gran Canaria\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU4MzY3MjU3MDE2MDU0MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"8559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35033\",\r\n            \"name\": \"Vega de San Mateo\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzczMDQ3MDU5NjcwNTAwMzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"35034\",\r\n            \"name\": \"Yaiza\",\r\n            \"provinceNo\": 35,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUxMjQ5Njk2MDQ1ODU4MjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"8759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36020\",\r\n            \"name\": \"Agolada\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEzMzUxMzQ5NjMyMjM2MTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"8859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36001\",\r\n            \"name\": \"Arbo\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY0MTg0NTI0MjE3MTI3OTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"8959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36003\",\r\n            \"name\": \"Baiona\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk4OTkzODk5MzQ5NDE3MDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"8a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36002\",\r\n            \"name\": \"Barro\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.503Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODYyNzE4MjY1NjM1MjMzMDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"8b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36004\",\r\n            \"name\": \"Bueu\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTcxNDEwOTg0MjIwMDA3MzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36005\",\r\n            \"name\": \"Caldas de Reis\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA4NDI5NjI0MjMyOTM4MTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"8d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36006\",\r\n            \"name\": \"Cambados\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUwNTIzMzM3NjE2NDQ2OTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"8e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36007\",\r\n            \"name\": \"Campo Lameiro\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc2ODM4Mjk0OTY2ODkxMTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"8f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36008\",\r\n            \"name\": \"Cangas\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU3MTE1OTIwMzk2MzEwNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"9059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36009\",\r\n            \"name\": \"Cañiza, A\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc0OTYyMzAxODI5OTQ4NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"9159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36010\",\r\n            \"name\": \"Catoira\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDEyMjE2NjAyNTg1MDMzODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"9259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36902\",\r\n            \"name\": \"Cerdedo-Cotobade\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI4MTc1MjgyNzgyMzUzOTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"9359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36013\",\r\n            \"name\": \"Covelo\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ3ODg4NzAyOTA0NzQ1ODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"9459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36014\",\r\n            \"name\": \"Crecente\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkxNTc4NjM2NjE1NDk4MjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"9559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36015\",\r\n            \"name\": \"Cuntis\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDkzNDAzMjcyODU5MTI0MTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"9659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36016\",\r\n            \"name\": \"Dozón\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM2OTUxMTI3MTI4NTE1MDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"9759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36017\",\r\n            \"name\": \"Estrada, A\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUyMDQyNDkyNzkzMzYyNTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"9859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36018\",\r\n            \"name\": \"Forcarei\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.507Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY0NTI5MDU2ODcwNjgyODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"9959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36019\",\r\n            \"name\": \"Fornelos de Montes\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc4OTc4ODY0OTE1NzYzODU4MTswMDsn\\\"\",\r\n            \"systemId\": \"9a59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36021\",\r\n            \"name\": \"Gondomar\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMxOTQwMjMzNTQ5ODgxODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"9b59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36022\",\r\n            \"name\": \"Grove, O\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg1MDk1OTA1MDg5Mjc2Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"9c59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36023\",\r\n            \"name\": \"Guarda, A\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg3NTgwNjY4OTcwMDA4Mjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"9d59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36901\",\r\n            \"name\": \"Illa de Arousa, A\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU5NTc3NDE0MTM0NjE3NzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"9e59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36024\",\r\n            \"name\": \"Lalín\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ4MzUzNTM2NDU5ODEyMTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"9f59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36025\",\r\n            \"name\": \"Lama, A\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM5MTg4NTQ0MDcwMTc4MjU0MTswMDsn\\\"\",\r\n            \"systemId\": \"a059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36026\",\r\n            \"name\": \"Marín\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA2NTE0NzgwMjU1NjcyMDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"a159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36027\",\r\n            \"name\": \"Meaño\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ4MTAxNDgzNDY2MzkxNzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"a259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36028\",\r\n            \"name\": \"Meis\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.51Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzcyNTk5Nzc0NDc4NjQ0ODE5MTswMDsn\\\"\",\r\n            \"systemId\": \"a359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36029\",\r\n            \"name\": \"Moaña\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5Mzc0ODYxNTMwNDk1MjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"a459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36030\",\r\n            \"name\": \"Mondariz\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI5ODUzMTU3MTU4Mzg5MjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"a559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36031\",\r\n            \"name\": \"Mondariz-Balneario\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc3Mjc5ODA5ODk4MjUzNjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"a659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36032\",\r\n            \"name\": \"Moraña\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQxODkwNjg3NjczOTIwOTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"a759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36033\",\r\n            \"name\": \"Mos\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg1NjE2MDIyNDE2MzY0MTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"a859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36034\",\r\n            \"name\": \"Neves, As\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUxMTc0ODk1NTM3MTE2NTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"a959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36035\",\r\n            \"name\": \"Nigrán\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU4MzE4ODM5Mzg4MzYyMDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"aa59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36036\",\r\n            \"name\": \"Oia\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU0OTg1Nzk5NzAzNjU5NTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"ab59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36037\",\r\n            \"name\": \"Pazos de Borbén\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEwOTI4NDUyMjAzNzY0NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"ac59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36041\",\r\n            \"name\": \"Poio\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY3OTM2OTExMzYzMTQ0ODk3MTswMDsn\\\"\",\r\n            \"systemId\": \"ad59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36043\",\r\n            \"name\": \"Ponte Caldelas\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUzODIwMDM3OTYyODcxMzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"ae59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36042\",\r\n            \"name\": \"Ponteareas\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYwNTE4Njg2OTEwMDgzNzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"af59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36044\",\r\n            \"name\": \"Pontecesures\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ2NjM1MjQ3ODEyMTAzNTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"b059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36038\",\r\n            \"name\": \"Pontevedra\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.513Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUyNjIzMDc5MzkwNjY3NzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"b159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36039\",\r\n            \"name\": \"Porriño, O\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk3NDY4MzIxNzM1MjU5MTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"b259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36040\",\r\n            \"name\": \"Portas\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDIyMDk4MzQ5NzMxOTE1NzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"b359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36045\",\r\n            \"name\": \"Redondela\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTIxMjM0NjE0MDUzMDg4NTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"b459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36046\",\r\n            \"name\": \"Ribadumia\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI3MjA3MDI5NDE1MTA4MjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"b559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36047\",\r\n            \"name\": \"Rodeiro\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxOTgwMzIyNjgyMzY5NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"b659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36048\",\r\n            \"name\": \"Rosal, O\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA2MTY3MTQ0NzY5MzE1NzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"b759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36049\",\r\n            \"name\": \"Salceda de Caselas\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ2OTA2MjQzNzkyMzczNTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"b859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36050\",\r\n            \"name\": \"Salvaterra de Miño\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI5MTIwMTc4NDA5NDYzNTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"b959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36051\",\r\n            \"name\": \"Sanxenxo\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg0NjgwNTU4NTY3MDYzODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"ba59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36052\",\r\n            \"name\": \"Silleda\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk1MjI5MDkzMDU4MDU0MDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"bb59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36053\",\r\n            \"name\": \"Soutomaior\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.517Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgyNTExNDY2ODk0Njc1Nzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"bc59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36054\",\r\n            \"name\": \"Tomiño\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI3OTU4Nzk2OTY1MjE1MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"bd59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36055\",\r\n            \"name\": \"Tui\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMxMDk2NzUwNjQ4NjQ3MzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"be59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36056\",\r\n            \"name\": \"Valga\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMxMTQ5MDgxNzczOTE0MTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"bf59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36057\",\r\n            \"name\": \"Vigo\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTc2MDc1OTg3MjM0OTQxNDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"c059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36059\",\r\n            \"name\": \"Vila de Cruces\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg4Njk1MjgyMjA5NTA4MzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"c159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36058\",\r\n            \"name\": \"Vilaboa\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA2NzI1NTc4NDUxOTEwMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"c259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36060\",\r\n            \"name\": \"Vilagarcía de Arousa\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI1MjEzODMyOTczNzQ0MjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"c359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"36061\",\r\n            \"name\": \"Vilanova de Arousa\",\r\n            \"provinceNo\": 36,\r\n            \"autonomousCommunityNo\": 12,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.52Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ4ODU5NjI0NzE1MzcyMzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"c459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37001\",\r\n            \"name\": \"Abusejo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQxMjc2MDAxNDQ3MzM5MzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"c559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37002\",\r\n            \"name\": \"Agallas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA1NDk3MjA4NDc5ODY1OTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"c659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37003\",\r\n            \"name\": \"Ahigal de los Aceiteros\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk0NDk3MzQyODg0MDk2NTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"c759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37004\",\r\n            \"name\": \"Ahigal de Villarino\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYyNDc4ODA3ODAzODkzNzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"c859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37005\",\r\n            \"name\": \"Alameda de Gardón, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgzNzUwMDU2OTE4MjU0OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"c959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37006\",\r\n            \"name\": \"Alamedilla, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDIyNjc1Nzk1MjI2MTY5NDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"ca59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37007\",\r\n            \"name\": \"Alaraz\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY4NzkwNTU2NTQ4MTk0NzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"cb59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37008\",\r\n            \"name\": \"Alba de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM0Mjc5NTM3OTU1OTAyNjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"cc59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37009\",\r\n            \"name\": \"Alba de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg5MzQwOTI4ODc0NTM2NDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"cd59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37010\",\r\n            \"name\": \"Alberca, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.523Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIzNDE0MDkyNTc0MTAyMzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"ce59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37011\",\r\n            \"name\": \"Alberguería de Argañán, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY3MDUzMzY3MDk4Mzg0MDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"cf59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37012\",\r\n            \"name\": \"Alconada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIzNjI2MTY4OTY5MTgyODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"d059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37015\",\r\n            \"name\": \"Aldea del Obispo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ4NjU2NzYzNzY3NjUxNTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"d159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37013\",\r\n            \"name\": \"Aldeacipreste\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI2MzY1MDg0NzIwMjMxNTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"d259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37014\",\r\n            \"name\": \"Aldeadávila de la Ribera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE1Mzk5MTE1OTQyNzgxODk1MTswMDsn\\\"\",\r\n            \"systemId\": \"d359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37016\",\r\n            \"name\": \"Aldealengua\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQwOTg1MjMxMzA3NDA1MjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"d459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37017\",\r\n            \"name\": \"Aldeanueva de Figueroa\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM4NTMyMDQzNDIwMzM1MzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"d559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37018\",\r\n            \"name\": \"Aldeanueva de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY4NDc1ODgzNjY1MTYwNTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"d659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37019\",\r\n            \"name\": \"Aldearrodrigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjcxNDkyNjkxMjIwMzIyMzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"d759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37020\",\r\n            \"name\": \"Aldearrubia\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc5OTE3MDcwODA0ODg4NjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"d859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37021\",\r\n            \"name\": \"Aldeaseca de Alba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM1NzI1ODQ1MDI5NjMwNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"d959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37022\",\r\n            \"name\": \"Aldeaseca de la Frontera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM2NDM2NzQ4MTIwNDkyMzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"da59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37023\",\r\n            \"name\": \"Aldeatejada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.527Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzczMTE3MjY0OTIwMzExNTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"db59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37024\",\r\n            \"name\": \"Aldeavieja de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUyODkzMjA1MDgwOTI5NTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"dc59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37025\",\r\n            \"name\": \"Aldehuela de la Bóveda\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA1NzI3NTE4NjgzODA4MzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"dd59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37026\",\r\n            \"name\": \"Aldehuela de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM2OTQwNzkxNTI1NjA5NDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"de59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37027\",\r\n            \"name\": \"Almenara de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkwMjQxMzIyMzAzOTA3ODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"df59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37028\",\r\n            \"name\": \"Almendra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk3Nzc3NzQzNDY0Mzg3MDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"e059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37029\",\r\n            \"name\": \"Anaya de Alba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQyMDg4MzIwNDEwOTMxMDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"e159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37030\",\r\n            \"name\": \"Añover de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE4MDI1MTU2MzE5ODk4NjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"e259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37031\",\r\n            \"name\": \"Arabayona de Mógica\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAxNDU5MjQ4OTU5NzQ0NDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"e359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37032\",\r\n            \"name\": \"Arapiles\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMxMzYzMjg3NjQ3OTY0MzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"e459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37033\",\r\n            \"name\": \"Arcediano\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAyNTMxMjAwMTM5NDgwOTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"e559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37034\",\r\n            \"name\": \"Arco, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcwMDA2NTYxOTUxNTE2OTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"e659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37035\",\r\n            \"name\": \"Armenteros\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA3MzE3MDk3MDQ4ODY3NDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"e759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37037\",\r\n            \"name\": \"Atalaya, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg0MTI4OTQ0MzA4MDQ4NDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"e859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37038\",\r\n            \"name\": \"Babilafuente\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI0MjEwODA3Njk3ODkzNjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"e959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37039\",\r\n            \"name\": \"Bañobárez\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU2ODUzNjYzMzI3OTIyNjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"ea59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37040\",\r\n            \"name\": \"Barbadillo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkwODcxNDQzNDk4ODM0NjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"eb59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37041\",\r\n            \"name\": \"Barbalos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE4MTA2OTUwNTU1MjYxMTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"ec59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37042\",\r\n            \"name\": \"Barceo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQzNDc4NTA3NTI3MjQ5NDA2MTswMDsn\\\"\",\r\n            \"systemId\": \"ed59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37044\",\r\n            \"name\": \"Barruecopardo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI5NzAzODQwMDkyNTc5MTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"ee59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37045\",\r\n            \"name\": \"Bastida, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI2MTgyNDU3MzQ5MzA4MzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"ef59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37046\",\r\n            \"name\": \"Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUwMzYzNzc4NjcyNDQ3MzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"f059e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37047\",\r\n            \"name\": \"Beleña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU2MzczODIyMTgzNjg3NDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"f159e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37049\",\r\n            \"name\": \"Bermellar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.533Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI2ODI0OTQwNTg4MDA1Mzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"f259e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37050\",\r\n            \"name\": \"Berrocal de Huebra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMyMTMxNzg4NDYwODQxMTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"f359e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37051\",\r\n            \"name\": \"Berrocal de Salvatierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE5MjI5MzUwOTA0OTkwOTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"f459e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37052\",\r\n            \"name\": \"Boada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE5OTg4MzA4MzU4NTU4MzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"f559e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37054\",\r\n            \"name\": \"Bodón, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkxOTU2NzAwOTUyMDM0MjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"f659e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37055\",\r\n            \"name\": \"Bogajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcyNDQwNDY3NjkxOTQzNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"f759e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37056\",\r\n            \"name\": \"Bouza, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgwOTExODIzNTI5MDMwNjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"f859e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37057\",\r\n            \"name\": \"Bóveda del Río Almar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDMzNzg0ODA1MTE2NTgwNjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"f959e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37058\",\r\n            \"name\": \"Brincones\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc4MTYxMDY1OTA3NTA5OTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"fa59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37059\",\r\n            \"name\": \"Buenamadre\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ2Njk4NTczMzM4OTc4NTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"fb59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37060\",\r\n            \"name\": \"Buenavista\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkwMzQ3OTA0MzQwNDA0NDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"fc59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37061\",\r\n            \"name\": \"Cabaco, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEyMjE0NTM3MjgxOTYxMzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"fd59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37063\",\r\n            \"name\": \"Cabeza de Béjar, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0MTM1NTU3MTgyMDgwNDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"fe59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37065\",\r\n            \"name\": \"Cabeza del Caballo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUwNTM0NzA3MTI4NjIwNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ff59e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37062\",\r\n            \"name\": \"Cabezabellosa de la Calzada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.537Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA0OTM2Mjk0NjE3MjE5NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"005ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37067\",\r\n            \"name\": \"Cabrerizos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM0MjkyMjM0NDQ3NDkwMzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"015ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37068\",\r\n            \"name\": \"Cabrillas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE1MzY5MzU3NDE2NzAwNDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"025ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37069\",\r\n            \"name\": \"Calvarrasa de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgwNDU1MDY1ODUyNjc4MTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"035ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37070\",\r\n            \"name\": \"Calvarrasa de Arriba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcyMTQzNzg3NjczNDgwMDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"045ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37071\",\r\n            \"name\": \"Calzada de Béjar, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkyNzgyNDQwOTU3MTA0MjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"055ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37072\",\r\n            \"name\": \"Calzada de Don Diego\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM0MTE3OTUzNzM2NjcwNjk3MTswMDsn\\\"\",\r\n            \"systemId\": \"065ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37073\",\r\n            \"name\": \"Calzada de Valdunciel\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcwODk4OTIyNTEyOTAxOTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"075ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37074\",\r\n            \"name\": \"Campillo de Azaba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.54Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc4MjY0NjE5MTI5MDA3ODIxMTswMDsn\\\"\",\r\n            \"systemId\": \"085ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37077\",\r\n            \"name\": \"Campo de Peñaranda, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc3MjUxMDY5Mjg4NjU3NjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"095ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37078\",\r\n            \"name\": \"Candelario\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExMjgxNTU3ODIzNjYyMDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37079\",\r\n            \"name\": \"Canillas de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjEzODM4MTc2ODk0ODE3ODQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37080\",\r\n            \"name\": \"Cantagallo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY0Njc5NTMyODg3NjE1MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37081\",\r\n            \"name\": \"Cantalapiedra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY0Mzc2MTk0Mjk3Njc4NzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"0d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37082\",\r\n            \"name\": \"Cantalpino\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI0MjM2NTAzOTUyMDA3ODExMTswMDsn\\\"\",\r\n            \"systemId\": \"0e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37083\",\r\n            \"name\": \"Cantaracillo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE5MDQ3NTE5MDI5ODcwNzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"0f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37085\",\r\n            \"name\": \"Carbajosa de la Sagrada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzMDg4MjE5NTg5MjAxMDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"105ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37086\",\r\n            \"name\": \"Carpio de Azaba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIwMDQ5NTAzNDA2NjUwNTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"115ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37087\",\r\n            \"name\": \"Carrascal de Barregas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.543Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEyNDA0MzM3OTU0ODQzNjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"125ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37088\",\r\n            \"name\": \"Carrascal del Obispo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk5OTY2MjM3MDE3NjYzNzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"135ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37089\",\r\n            \"name\": \"Casafranca\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgwMzE2MzAxMzgwNjk4MjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"145ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37090\",\r\n            \"name\": \"Casas del Conde, Las\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUzNjg2Mzg0NzMzODc2NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"155ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37091\",\r\n            \"name\": \"Casillas de Flores\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg1MzQzNjQ1NDk2OTg3MDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"165ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37092\",\r\n            \"name\": \"Castellanos de Moriscos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg3MzQzOTMzMzMzNTkwMTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"175ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37185\",\r\n            \"name\": \"Castellanos de Villiquera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ3NTI2OTQ0MTEzMDA4NjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"185ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37096\",\r\n            \"name\": \"Castillejo de Martín Viejo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIwMjY2MDMzNDY5MTczMDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"195ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37097\",\r\n            \"name\": \"Castraz\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI1MDM5NjcwNzYxMzk3MjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"1a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37098\",\r\n            \"name\": \"Cepeda\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcyOTIyOTYxNDY3MTQwMjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"1b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37099\",\r\n            \"name\": \"Cereceda de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYyNTcxNjY1MzAzNTYzODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"1c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37100\",\r\n            \"name\": \"Cerezal de Peñahorcada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU0NTYyNjY2NzQxMTIxNzEzMTswMDsn\\\"\",\r\n            \"systemId\": \"1d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37101\",\r\n            \"name\": \"Cerralbo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE5NTYwMzcxMTIxMTExMDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"1e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37102\",\r\n            \"name\": \"Cerro, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ5NjI3ODk5MzcyMjc2NTIyMTswMDsn\\\"\",\r\n            \"systemId\": \"1f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37103\",\r\n            \"name\": \"Cespedosa de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.547Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI4OTY1NTYyMDIzNDY3ODUyMTswMDsn\\\"\",\r\n            \"systemId\": \"205ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37114\",\r\n            \"name\": \"Chagarcía Medianero\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU0MjkwODQwNzMyMDk0MTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"215ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37104\",\r\n            \"name\": \"Cilleros de la Bastida\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQwNzAxMDY2MjQ2MTU1NDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"225ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37106\",\r\n            \"name\": \"Cipérez\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEyNzQxOTMxMzY3NjEwNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"235ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37107\",\r\n            \"name\": \"Ciudad Rodrigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY2OTYwNDc1MTM1Mjk3MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"245ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37108\",\r\n            \"name\": \"Coca de Alba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE1MDU3NTY1ODUxMDk1MjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"255ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37109\",\r\n            \"name\": \"Colmenar de Montemayor\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE3Njc5Nzk1NTQ1NjY0MzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"265ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37110\",\r\n            \"name\": \"Cordovilla\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzk2NzUyNzcwOTU3ODg1NTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"275ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37112\",\r\n            \"name\": \"Cristóbal\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYxNjM4NjMzNjg2MDg3MzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"285ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37113\",\r\n            \"name\": \"Cubo de Don Sancho, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.55Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQyODM0MzUwMjgzNjIyNDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"295ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37115\",\r\n            \"name\": \"Dios le Guarde\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQxODY5OTQ1OTc1ODQzNzU4MTswMDsn\\\"\",\r\n            \"systemId\": \"2a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37116\",\r\n            \"name\": \"Doñinos de Ledesma\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMwMTU3NjU3NDcyODAyNTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"2b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37117\",\r\n            \"name\": \"Doñinos de Salamanca\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyMDA1Mjg2OTM4MTA0MzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"2c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37118\",\r\n            \"name\": \"Éjeme\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE0MTY2ODk4NzI1NTg4MDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"2d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37120\",\r\n            \"name\": \"Encina de San Silvestre\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAzMTc5MjkwNzE3MDg4ODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"2e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37119\",\r\n            \"name\": \"Encina, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg3NTY4OTk2MDk5NjkwNjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"2f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37121\",\r\n            \"name\": \"Encinas de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk4MzczMjE2ODEyMDY4ODg1MTswMDsn\\\"\",\r\n            \"systemId\": \"305ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37122\",\r\n            \"name\": \"Encinas de Arriba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA5MDUxNDgxNjczOTEwNjYxMTswMDsn\\\"\",\r\n            \"systemId\": \"315ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37123\",\r\n            \"name\": \"Encinasola de los Comendadores\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAwMzE2OTY0NDkzNzQ2ODgxMTswMDsn\\\"\",\r\n            \"systemId\": \"325ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37124\",\r\n            \"name\": \"Endrinal\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.553Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE2ODQ3MjA3MzA0MTQ2MzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"335ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37125\",\r\n            \"name\": \"Escurial de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg2OTMyMzEwNTkzMjcxMTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"345ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37126\",\r\n            \"name\": \"Espadaña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI5NjY1NzE5NTc5MjM5NTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"355ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37127\",\r\n            \"name\": \"Espeja\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDUyOTA3MjQzOTk5MDA5NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"365ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37128\",\r\n            \"name\": \"Espino de la Orbada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQyMjkxMjc4NTkyNDQyMzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"375ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37129\",\r\n            \"name\": \"Florida de Liébana\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc0MjE1MTU1OTQ0NDc1MjczMTswMDsn\\\"\",\r\n            \"systemId\": \"385ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37130\",\r\n            \"name\": \"Forfoleda\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4NTc1MjM0MDYwMzI1NTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"395ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37131\",\r\n            \"name\": \"Frades de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE4OTYyNzc5MDM3OTk5OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"3a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37132\",\r\n            \"name\": \"Fregeneda, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc1MTczNjg3MDk0NTMyMjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"3b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37133\",\r\n            \"name\": \"Fresnedoso\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjEzODY2NTkwNTYyNzQyMjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"3c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37134\",\r\n            \"name\": \"Fresno Alhándiga\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.557Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkwMzUwMTU3MDk2MjAzNDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37135\",\r\n            \"name\": \"Fuente de San Esteban, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.56Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk1OTIzMTYyNzgwNTI1NjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"3e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37136\",\r\n            \"name\": \"Fuenteguinaldo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.56Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg5NjY4MzQwMjc3NDQxMDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37137\",\r\n            \"name\": \"Fuenteliante\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.56Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIxNTAzMzk3NTM5NzA2MDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"405ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37138\",\r\n            \"name\": \"Fuenterroble de Salvatierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.56Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI3OTIzMTI3Njg3MDc5ODcyMTswMDsn\\\"\",\r\n            \"systemId\": \"415ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37139\",\r\n            \"name\": \"Fuentes de Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc5MjgxNjgxODY3MTc3ODMzMTswMDsn\\\"\",\r\n            \"systemId\": \"425ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37140\",\r\n            \"name\": \"Fuentes de Oñoro\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ5ODExNjI0Mzk5Mzk3MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"435ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37141\",\r\n            \"name\": \"Gajates\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA2Mzc5NzI1MDMxMDM1NTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"445ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37142\",\r\n            \"name\": \"Galindo y Perahuy\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA0MzUzOTEzNTU1OTA0Nzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"455ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37143\",\r\n            \"name\": \"Galinduste\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA5NDA3Njc2MDIxMTg5NjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"465ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37144\",\r\n            \"name\": \"Galisancho\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIxMjkwNTYwMDg5NjMxNDcyMTswMDsn\\\"\",\r\n            \"systemId\": \"475ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37145\",\r\n            \"name\": \"Gallegos de Argañán\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMxMDg1NzkzNTgwNjk3Mjg5MTswMDsn\\\"\",\r\n            \"systemId\": \"485ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37146\",\r\n            \"name\": \"Gallegos de Solmirón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ5MTgzOTM0NjAzMzMxNzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"495ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37147\",\r\n            \"name\": \"Garcibuey\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMzNzczNDY1MzIwNDIzNTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"4a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37148\",\r\n            \"name\": \"Garcihernández\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk1MTEzMjM4MTg5MzM3NjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37149\",\r\n            \"name\": \"Garcirrey\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTUyMjcwODkyMDI3MTgyNTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"4c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37150\",\r\n            \"name\": \"Gejuelo del Barro\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.563Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY0NTAxMDY3NzAyNzYzMjAwMTswMDsn\\\"\",\r\n            \"systemId\": \"4d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37151\",\r\n            \"name\": \"Golpejas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ4MTU4MzAyMjY4MjYwMjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"4e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37152\",\r\n            \"name\": \"Gomecello\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDczNzIwODg3OTcyMjQxMTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"4f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37154\",\r\n            \"name\": \"Guadramiro\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI0Njk5MzQ3NTg4MTA4Mjc5MTswMDsn\\\"\",\r\n            \"systemId\": \"505ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37155\",\r\n            \"name\": \"Guijo de Ávila\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ2MjM2Mjk3OTcwODA4MTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"515ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37156\",\r\n            \"name\": \"Guijuelo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ1Mjc1NTk1MTc0NjY1MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"525ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37157\",\r\n            \"name\": \"Herguijuela de Ciudad Rodrigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU0MDE2MzIwODI0Njg1NjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"535ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37158\",\r\n            \"name\": \"Herguijuela de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg2MTc4MjEyMTE2OTI3NDI2MTswMDsn\\\"\",\r\n            \"systemId\": \"545ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37159\",\r\n            \"name\": \"Herguijuela del Campo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYwNjAzNzY2MjE0OTU0NTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"555ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37160\",\r\n            \"name\": \"Hinojosa de Duero\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE1ODczMTMwNzA2OTU0NjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"565ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37161\",\r\n            \"name\": \"Horcajo de Montemayor\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDcxNTg3ODUzMzU3NjE3MzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"575ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37162\",\r\n            \"name\": \"Horcajo Medianero\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI5OTM3MjY1OTA3NTUzOTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"585ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37163\",\r\n            \"name\": \"Hoya, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY4MTc5MDEyNzg3NTcyMDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"595ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37164\",\r\n            \"name\": \"Huerta\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.567Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM5NzEyNTgxMTEyOTA4MTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37165\",\r\n            \"name\": \"Iruelos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQxMTM3NTM3MzI2MjI1Mjk1MTswMDsn\\\"\",\r\n            \"systemId\": \"5b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37166\",\r\n            \"name\": \"Ituero de Azaba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAzMDUwODA4ODg0MDA5MTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"5c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37167\",\r\n            \"name\": \"Juzbado\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY3ODE0NDQyMjQ1NTc5MjA0MTswMDsn\\\"\",\r\n            \"systemId\": \"5d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37168\",\r\n            \"name\": \"Lagunilla\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTczMTk1OTA4Njg2MjMxNjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"5e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37169\",\r\n            \"name\": \"Larrodrigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgxMDY3NTI2OTQyNzcxMTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"5f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37170\",\r\n            \"name\": \"Ledesma\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg4NzEwMzg1Nzk2OTUxMjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"605ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37171\",\r\n            \"name\": \"Ledrada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI2NDU2NDUwNTI4NzkyNTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"615ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37172\",\r\n            \"name\": \"Linares de Riofrío\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU3OTk5MTM5OTczOTEzNjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"625ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37173\",\r\n            \"name\": \"Lumbrales\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.57Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg2NjA5NDA4NjM3MTIyODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"635ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37175\",\r\n            \"name\": \"Machacón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg5ODY2MzkxNTk1NDA4NTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"645ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37174\",\r\n            \"name\": \"Macotera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA5OTMxMzgwMzY5MjgwMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"655ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37176\",\r\n            \"name\": \"Madroñal\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg1NjY2NjI5Nzg0OTc0NzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"665ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37177\",\r\n            \"name\": \"Maíllo, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU3ODA0NzIzMDg2MjE4MzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"675ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37178\",\r\n            \"name\": \"Malpartida\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA3MDA0NDk1MTI5NjA4MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"685ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37179\",\r\n            \"name\": \"Mancera de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU5NTU1OTc0MjEwNDI0MDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"695ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37180\",\r\n            \"name\": \"Manzano, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc5OTQzNDMzNTQwNDU3NjM5MTswMDsn\\\"\",\r\n            \"systemId\": \"6a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37181\",\r\n            \"name\": \"Martiago\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQzMzE3NDgwNDg5Mjc2MTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"6b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37183\",\r\n            \"name\": \"Martín de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTE5NTM1MzgyMzkyNTY2MjMyMTswMDsn\\\"\",\r\n            \"systemId\": \"6c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37182\",\r\n            \"name\": \"Martinamor\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.573Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0NTAzNTIzMDQzOTk2NTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"6d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37184\",\r\n            \"name\": \"Masueco\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkwNjQ5NDc0MjQzMzQ2MjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"6e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37186\",\r\n            \"name\": \"Mata de Ledesma, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIyNTUzOTU5MTg4ODk2NDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"6f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37187\",\r\n            \"name\": \"Matilla de los Caños del Río\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk3MDI2NjU3ODAzMzM1NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"705ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37188\",\r\n            \"name\": \"Maya, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA1NDQ5OTM5NDYyNTM0MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"715ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37189\",\r\n            \"name\": \"Membribe de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMwODE4Nzg3MTU5MDQ2MzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"725ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37190\",\r\n            \"name\": \"Mieza\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU3NTYzNzMzMDY5MTQwMjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"735ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37191\",\r\n            \"name\": \"Milano, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI5NDM2MzY4OTQzMzk0NDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"745ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37192\",\r\n            \"name\": \"Miranda de Azán\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE2NTM5MjIyMzA4MjQyODM1MTswMDsn\\\"\",\r\n            \"systemId\": \"755ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37193\",\r\n            \"name\": \"Miranda del Castañar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk0OTgyMjY5Njg1MDUxNzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"765ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37194\",\r\n            \"name\": \"Mogarraz\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgwMTA0NDY3ODUzNjAxMDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"775ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37195\",\r\n            \"name\": \"Molinillo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUxODkwNTY1MTExODIwNjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"785ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37196\",\r\n            \"name\": \"Monforte de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.577Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUyNjgyMDI1ODI3MzQ4MjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"795ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37197\",\r\n            \"name\": \"Monleón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc3ODk5NDk0MTIzNjQ3OTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"7a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37198\",\r\n            \"name\": \"Monleras\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAwNzYwMDQyNDMzMzU0MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"7b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37199\",\r\n            \"name\": \"Monsagro\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc2NjI0NjkxNzIzMTE5MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"7c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37200\",\r\n            \"name\": \"Montejo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ5MjExNTQyMjc1NTgwNTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"7d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37201\",\r\n            \"name\": \"Montemayor del Río\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg3Nzg3MDU0NDIyNDA4ODkyMTswMDsn\\\"\",\r\n            \"systemId\": \"7e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37202\",\r\n            \"name\": \"Monterrubio de Armuña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk5Njk1NzA1NTYzMzc5Njg1MTswMDsn\\\"\",\r\n            \"systemId\": \"7f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37203\",\r\n            \"name\": \"Monterrubio de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzUzOTA3MzMzNjg2ODY2NjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"805ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37204\",\r\n            \"name\": \"Morasverdes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4MTcwMTA3ODk1ODUzMTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"815ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37205\",\r\n            \"name\": \"Morille\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIxNDgxNDc2ODYxMzc2NzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"825ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37206\",\r\n            \"name\": \"Moríñigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.58Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ4NjI1NzY2ODk0OTcwMjE5MTswMDsn\\\"\",\r\n            \"systemId\": \"835ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37207\",\r\n            \"name\": \"Moriscos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIzOTIxMzkwMzU3MjkwMzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"845ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37208\",\r\n            \"name\": \"Moronta\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc3NzQwNjY2MDg2MTM4NDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"855ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37209\",\r\n            \"name\": \"Mozárbez\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzk2NTcxMDEzNzgxNDQ3NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"865ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37211\",\r\n            \"name\": \"Narros de Matalayegua\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI3ODY4MjIzNjIwMjY1Mjg3MTswMDsn\\\"\",\r\n            \"systemId\": \"875ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37213\",\r\n            \"name\": \"Nava de Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ4ODE0NDM5NjYxMDEyOTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"885ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37214\",\r\n            \"name\": \"Nava de Francia\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU5OTkxMzE3NjU4ODgzNzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"895ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37215\",\r\n            \"name\": \"Nava de Sotrobal\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQyOTU5MjA4NzE3NDUxMDIwMTswMDsn\\\"\",\r\n            \"systemId\": \"8a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37212\",\r\n            \"name\": \"Navacarros\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY4Njk3NTE5MzA1MTYyMTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"8b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37216\",\r\n            \"name\": \"Navales\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.583Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwMTY4OTE0NzI2ODY1MDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"8c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37217\",\r\n            \"name\": \"Navalmoral de Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgxMjg2NTQ3MzAyMTA4Nzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"8d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37218\",\r\n            \"name\": \"Navamorales\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY5MDczNDUzMzUxMTE5NDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"8e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37219\",\r\n            \"name\": \"Navarredonda de la Rinconada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUyMzYxODYyNjEzODE2MTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37221\",\r\n            \"name\": \"Navasfrías\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA5MzY2MTc4MzIzMDM4NDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"905ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37222\",\r\n            \"name\": \"Negrilla de Palencia\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTEwMDgwNjkyNzM4MDc2NDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"915ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37223\",\r\n            \"name\": \"Olmedo de Camaces\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDEyMjk2MzcyNzg4MzIzODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"925ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37224\",\r\n            \"name\": \"Orbada, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDMxMTgxNTI3ODUyMzgzMDExMTswMDsn\\\"\",\r\n            \"systemId\": \"935ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37225\",\r\n            \"name\": \"Pajares de la Laguna\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc5Nzk1OTI4NDAyNzYzNTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"945ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37226\",\r\n            \"name\": \"Palacios del Arzobispo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc4MjI2NDQ3NDQ3NjI4Mzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"955ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37228\",\r\n            \"name\": \"Palaciosrubios\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQwMTEwNDA5MDI3NzI2ODc3MTswMDsn\\\"\",\r\n            \"systemId\": \"965ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37229\",\r\n            \"name\": \"Palencia de Negrilla\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQxODgxMjUzMDY0Mjk1ODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"975ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37230\",\r\n            \"name\": \"Parada de Arriba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE0NTQ1Njk4OTg2Nzg5NzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"985ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37231\",\r\n            \"name\": \"Parada de Rubiales\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.587Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYzODE5MjM4ODQ1OTQzMjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"995ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37232\",\r\n            \"name\": \"Paradinas de San Juan\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk3MDEzNTE1MDU0NDI4MzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"9a5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37233\",\r\n            \"name\": \"Pastores\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI2Njk0Njc2NDE3MDc0ODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"9b5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37234\",\r\n            \"name\": \"Payo, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY2NTI0NDkwMDYxMTI4ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"9c5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37235\",\r\n            \"name\": \"Pedraza de Alba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0Nzg2ODcwNzA1MjgyNzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"9d5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37236\",\r\n            \"name\": \"Pedrosillo de Alba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYxMjYwNTU0NTUyOTc1MjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"9e5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37237\",\r\n            \"name\": \"Pedrosillo de los Aires\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU1ODEwMTYxNzU5NTY2MzMxMTswMDsn\\\"\",\r\n            \"systemId\": \"9f5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37238\",\r\n            \"name\": \"Pedrosillo el Ralo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzIxNDg1NjEzNjk1NTE2MzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"a05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37239\",\r\n            \"name\": \"Pedroso de la Armuña, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQyNDY0Mzg3NTk4MjIyNTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"a15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37240\",\r\n            \"name\": \"Pelabravo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI5Njg1Mjk5NDcyMDEzMzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"a25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37241\",\r\n            \"name\": \"Pelarrodríguez\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.59Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUzOTMwNjUwOTE3MTkyMTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"a35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37242\",\r\n            \"name\": \"Pelayos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI0NDc1NDYyOTA5ODE3Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"a45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37243\",\r\n            \"name\": \"Peña, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc3NTQ3MjkxNzI5MjgxODIwMTswMDsn\\\"\",\r\n            \"systemId\": \"a55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37244\",\r\n            \"name\": \"Peñacaballera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzg0OTQxNDc1MzkwNzEwODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"a65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37245\",\r\n            \"name\": \"Peñaparda\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAzODcxMDUwODgwNzU1NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"a75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37246\",\r\n            \"name\": \"Peñaranda de Bracamonte\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI5NzY3MTEwNDAwNTczMjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"a85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37247\",\r\n            \"name\": \"Peñarandilla\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkxNzEzNTE2MDI2MzIxODc0MTswMDsn\\\"\",\r\n            \"systemId\": \"a95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37248\",\r\n            \"name\": \"Peralejos de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDgzMzE5MTQ2MjY3NTk0MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37249\",\r\n            \"name\": \"Peralejos de Arriba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA0MzUzOTkwODQyOTU5MjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"ab5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37250\",\r\n            \"name\": \"Pereña de la Ribera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ0OTM1MTE0NDI0NjczMjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"ac5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37251\",\r\n            \"name\": \"Peromingo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.593Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg4MTkwMjQ5Nzk3NTg4MjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"ad5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37252\",\r\n            \"name\": \"Pinedas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA1ODkzOTc3NjkxOTQ5Njk0MTswMDsn\\\"\",\r\n            \"systemId\": \"ae5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37253\",\r\n            \"name\": \"Pino de Tormes, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ2NjM0MzQzNDk4NDQzOTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"af5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37254\",\r\n            \"name\": \"Pitiegua\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU3ODQxNTkwMDA1NzU4NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"b05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37255\",\r\n            \"name\": \"Pizarral\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY5NDUxODUxNjM4ODg5ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"b15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37256\",\r\n            \"name\": \"Poveda de las Cintas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ3NTY0NDI4MTkyNzUwNjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"b25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37257\",\r\n            \"name\": \"Pozos de Hinojo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEzMDc0NDgyNzExMTIzMzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"b35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37258\",\r\n            \"name\": \"Puebla de Azaba\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE5MjY3MzgwMzE2MjY4MzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"b45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37259\",\r\n            \"name\": \"Puebla de San Medel\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY1ODY3NjU4NjkyNTUzNTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"b55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37260\",\r\n            \"name\": \"Puebla de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE2NjkxMDE5MzYxMTMzOTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"b65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37261\",\r\n            \"name\": \"Puente del Congosto\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE0OTQ4NjM0MTYwNjc3NjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"b75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37262\",\r\n            \"name\": \"Puertas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM1NzE2ODIwOTIyNTM4NDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"b85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37263\",\r\n            \"name\": \"Puerto de Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUyMDA0NTI2NTkzMDY4MjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"b95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37264\",\r\n            \"name\": \"Puerto Seguro\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.597Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM3ODQ2MzUyOTgyMzMzNTM0MTswMDsn\\\"\",\r\n            \"systemId\": \"ba5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37265\",\r\n            \"name\": \"Rágama\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU4NDMzNTMzNTQ0NzkzODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"bb5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37266\",\r\n            \"name\": \"Redonda, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgzNzgzMDgyMTg3MjA0ODI4MTswMDsn\\\"\",\r\n            \"systemId\": \"bc5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37267\",\r\n            \"name\": \"Retortillo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMyMzc5NzgyMTYyNzg4MjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"bd5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37268\",\r\n            \"name\": \"Rinconada de la Sierra, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQwMjU4MTcxODQxODA3NTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"be5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37269\",\r\n            \"name\": \"Robleda\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYzODIwMzM3MzIwMzg4OTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"bf5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37270\",\r\n            \"name\": \"Robliza de Cojos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA4NjY3NTU0MTgyMDg0NzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"c05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37271\",\r\n            \"name\": \"Rollán\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgzMTcxOTI1MTU0NTI0MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"c15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37272\",\r\n            \"name\": \"Saelices el Chico\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMwMTk2NTcyMDQ4Mzc5MjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"c25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37273\",\r\n            \"name\": \"Sagrada, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMxODIxOTAxNzQ3OTUxOTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"c35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37303\",\r\n            \"name\": \"Sahugo, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ5MDIyNjYxNTEyMDExMDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"c45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37274\",\r\n            \"name\": \"Salamanca\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.6Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM2NzM3MDcwNjUyMTkwMDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"c55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37275\",\r\n            \"name\": \"Saldeana\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTUxMjYyNTMzNzQ1MDc0OTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"c65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37276\",\r\n            \"name\": \"Salmoral\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI0NTUxMTkxMjQzOTUwNzU4MTswMDsn\\\"\",\r\n            \"systemId\": \"c75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37277\",\r\n            \"name\": \"Salvatierra de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTEyMDkxODIwMjI3MTcyNTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"c85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37278\",\r\n            \"name\": \"San Cristóbal de la Cuesta\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc2OTc3MTk1MjM4MjQ4NjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"c95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37284\",\r\n            \"name\": \"San Esteban de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQxMzc4MDA2MjI3Njg3MTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"ca5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37285\",\r\n            \"name\": \"San Felices de los Gallegos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQxNDU4NjgxNDk3NTc4OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"cb5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37286\",\r\n            \"name\": \"San Martín del Castañar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYyMjkwMzgxNzI1Mzk4NzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"cc5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37287\",\r\n            \"name\": \"San Miguel de Valero\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjExNDQ2NzE3NTc3NDU2NDMyMTswMDsn\\\"\",\r\n            \"systemId\": \"cd5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37036\",\r\n            \"name\": \"San Miguel del Robledo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.53Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIyODIzNTM0Njk3NDY0OTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"ce5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37288\",\r\n            \"name\": \"San Morales\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ3MTQwNDMxODUzNzUyNTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"cf5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37289\",\r\n            \"name\": \"San Muñoz\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM5OTAzMDQ4MzUwNDE3Mzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"d05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37291\",\r\n            \"name\": \"San Pedro de Rozados\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUxODkwMDEyMjAwODIyNjI0MTswMDsn\\\"\",\r\n            \"systemId\": \"d15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37290\",\r\n            \"name\": \"San Pedro del Valle\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM0MjY0OTk1ODk4MjA4NjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"d25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37292\",\r\n            \"name\": \"San Pelayo de Guareña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIwNTMyMjE1NDE4MzIzNzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"d35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37280\",\r\n            \"name\": \"Sanchón de la Ribera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUyNTIzMzE5NzAwNjYwNTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"d45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37281\",\r\n            \"name\": \"Sanchón de la Sagrada\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc4MTE2MTU3MjQ1NTMwMzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"d55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37282\",\r\n            \"name\": \"Sanchotello\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU4NDE5NTI5NzI1MTYxNDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"d65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37279\",\r\n            \"name\": \"Sancti-Spíritus\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI5NDQxMTMxNTQxNzk2MzI5MTswMDsn\\\"\",\r\n            \"systemId\": \"d75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37283\",\r\n            \"name\": \"Sando\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.603Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk3OTgzOTI2NzA2MzE5NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"d85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37293\",\r\n            \"name\": \"Santa María de Sando\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQzMzM3MDE2MzIyNzY4MTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"d95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37294\",\r\n            \"name\": \"Santa Marta de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc1MjU5MzEzODExODk2NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"da5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37296\",\r\n            \"name\": \"Santiago de la Puebla\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzcxNjM2MjI3ODAzOTUwMTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"db5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37297\",\r\n            \"name\": \"Santibáñez de Béjar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA3ODYxNjQ1NjA3OTAwNzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"dc5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37298\",\r\n            \"name\": \"Santibáñez de la Sierra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.607Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc4ODY4OTgyNjk1MTc0MjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"dd5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37299\",\r\n            \"name\": \"Santiz\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODExMTg0OTEyMTQ4NDk4NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"de5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37300\",\r\n            \"name\": \"Santos, Los\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY0ODk0NDc2MTg2NDEwMjI0MTswMDsn\\\"\",\r\n            \"systemId\": \"df5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37301\",\r\n            \"name\": \"Sardón de los Frailes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAyMTM3ODk4NTg3OTQ3NTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"e05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37302\",\r\n            \"name\": \"Saucelle\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE3NTM5NjM5MTczMzY0MTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"e15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37304\",\r\n            \"name\": \"Sepulcro-Hilario\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg3NDAxNjYxNjEyMzQyMDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"e25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37305\",\r\n            \"name\": \"Sequeros\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAyNjc2MDMwOTI0MDE4ODcyMTswMDsn\\\"\",\r\n            \"systemId\": \"e35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37306\",\r\n            \"name\": \"Serradilla del Arroyo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjIyNzkyNDc1MTcwOTM5MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"e45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37307\",\r\n            \"name\": \"Serradilla del Llano\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.61Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk1NDA1ODY5NTM5OTcxMDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"e55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37309\",\r\n            \"name\": \"Sierpe, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM0MDYyMDkyMjY5NDEzNDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"e65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37310\",\r\n            \"name\": \"Sieteiglesias de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc0MTIxNDExMjg3NDc4NzQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"e75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37311\",\r\n            \"name\": \"Sobradillo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUyNTQ3MjkxMjQwODQ5OTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"e85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37312\",\r\n            \"name\": \"Sorihuela\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk0NTQ4ODg5NzYzNzUwNjI0MTswMDsn\\\"\",\r\n            \"systemId\": \"e95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37313\",\r\n            \"name\": \"Sotoserrano\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM1NTQ0MDUyNTc0OTM2MTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"ea5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37314\",\r\n            \"name\": \"Tabera de Abajo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgzNjQ0OTgxNTkxMjc2NDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37315\",\r\n            \"name\": \"Tala, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYzNDA2ODA0NjQzNTc2MTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"ec5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37316\",\r\n            \"name\": \"Tamames\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzkzODY4MjgzMjA3MDg0MzQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"ed5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37317\",\r\n            \"name\": \"Tarazona de Guareña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgzNDcxODk2OTIzMjc0NjM5MTswMDsn\\\"\",\r\n            \"systemId\": \"ee5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37318\",\r\n            \"name\": \"Tardáguila\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.613Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ0NzMyMTA2MDI2NjAwODYzMTswMDsn\\\"\",\r\n            \"systemId\": \"ef5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37319\",\r\n            \"name\": \"Tejado, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY2MTk3OTc1MjI3OTYxNTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"f05ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37320\",\r\n            \"name\": \"Tejeda y Segoyuela\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcxMDQwMjMwNTg4NjA3MjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"f15ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37321\",\r\n            \"name\": \"Tenebrón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTcxNTU0MjkxMjcyMTc1NTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"f25ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37322\",\r\n            \"name\": \"Terradillos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkwMzMyNDMzNTI3MDc3Njk4MTswMDsn\\\"\",\r\n            \"systemId\": \"f35ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37323\",\r\n            \"name\": \"Topas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA5MDAyNzk3OTc3NzI0NDA2MTswMDsn\\\"\",\r\n            \"systemId\": \"f45ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37324\",\r\n            \"name\": \"Tordillos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA2ODk2NTM1MTIwMTU3MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"f55ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37325\",\r\n            \"name\": \"Tornadizo, El\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA2NjYzMDkwNDg1NTAwOTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"f65ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37327\",\r\n            \"name\": \"Torresmenudas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjczOTU3OTY5NjU4MTgwMjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"f75ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37328\",\r\n            \"name\": \"Trabanca\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAwMDM1MzI2NjQ3OTQ5NjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"f85ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37329\",\r\n            \"name\": \"Tremedal de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM2NjQ3NTA5MjAxMDY5NjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"f95ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37330\",\r\n            \"name\": \"Valdecarros\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUyMDkyNTQwMDc3NTQ5NTM3MTswMDsn\\\"\",\r\n            \"systemId\": \"fa5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37331\",\r\n            \"name\": \"Valdefuentes de Sangusín\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU0MjAwMDM4NjkxMzIwMDk5MTswMDsn\\\"\",\r\n            \"systemId\": \"fb5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37332\",\r\n            \"name\": \"Valdehijaderos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.617Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY0ODA4OTAzOTkyMjk2MTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37333\",\r\n            \"name\": \"Valdelacasa\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU1Nzk4NDAyNjAyNDM1NzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"fd5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37334\",\r\n            \"name\": \"Valdelageve\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzkzMDk3OTU2MjQ1NjA4NDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"fe5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37335\",\r\n            \"name\": \"Valdelosa\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA3MTgzMDk2OTIzOTkyNjc3MTswMDsn\\\"\",\r\n            \"systemId\": \"ff5ae034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37336\",\r\n            \"name\": \"Valdemierque\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEyNDQwNzE4MTM4MjU1ODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"005be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37337\",\r\n            \"name\": \"Valderrodrigo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEzMzM4MDU4Njg5MDUwMzk0MTswMDsn\\\"\",\r\n            \"systemId\": \"015be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37338\",\r\n            \"name\": \"Valdunciel\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDUyNDY4MzY3MTQyODg5MjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"025be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37339\",\r\n            \"name\": \"Valero\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg1MTUzMTgyNzI2Mjc5ODk0MTswMDsn\\\"\",\r\n            \"systemId\": \"035be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37343\",\r\n            \"name\": \"Vallejera de Riofrío\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA1NzMwNDcyNDkwNjU2MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"045be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37340\",\r\n            \"name\": \"Valsalabroso\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk4MTg4NTU5OTE4NzM1MjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"055be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37341\",\r\n            \"name\": \"Valverde de Valdelacasa\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ2MTYyNTg0NTM0MDUxNTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"065be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37342\",\r\n            \"name\": \"Valverdón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.62Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc3MzIyMjQ4MDIwMTc1ODEwMTswMDsn\\\"\",\r\n            \"systemId\": \"075be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37344\",\r\n            \"name\": \"Vecinos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjYwMzE2MTQ3Mjc5MjE0NzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"085be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37345\",\r\n            \"name\": \"Vega de Tirados\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjk0NTA0MTA4NTYxNDc4NjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"095be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37346\",\r\n            \"name\": \"Veguillas, Las\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk4MDUyNzE4NDQ5ODY4NjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37347\",\r\n            \"name\": \"Vellés, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI2Mjc3NDUxMDIxNDM3ODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37348\",\r\n            \"name\": \"Ventosa del Río Almar\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE5NzMyNDIyNzUxODk3NTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37349\",\r\n            \"name\": \"Vídola, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY3NjE5NTA0MTc3MjY1OTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"0d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37351\",\r\n            \"name\": \"Villaflores\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI4OTk4MzczOTY0NzYwMzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"0e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37352\",\r\n            \"name\": \"Villagonzalo de Tormes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIwNTM3NTg0ODkyNjQ2MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"0f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37353\",\r\n            \"name\": \"Villalba de los Llanos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzMDc1NzE3MDgyMzQ3OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"105be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37354\",\r\n            \"name\": \"Villamayor\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEyNTcyMzI4Mzk5MjU1NjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"115be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37355\",\r\n            \"name\": \"Villanueva del Conde\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzczNTE4MTI5MzQ2Mzc3NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"125be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37356\",\r\n            \"name\": \"Villar de Argañán\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM3NjQ4NDE3NTM3NTEzODE5MTswMDsn\\\"\",\r\n            \"systemId\": \"135be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37357\",\r\n            \"name\": \"Villar de Ciervo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEwMTkyNTM1NjUzNTg4NzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"145be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37358\",\r\n            \"name\": \"Villar de Gallimazo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTE4NjIzNzUyOTA5ODE3MTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"155be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37359\",\r\n            \"name\": \"Villar de la Yegua\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg4OTcwMzM5NzYyOTAxNTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"165be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37360\",\r\n            \"name\": \"Villar de Peralonso\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg2OTc2NzY4NjYwODU0MTM0MTswMDsn\\\"\",\r\n            \"systemId\": \"175be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37361\",\r\n            \"name\": \"Villar de Samaniego\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAyNDI2Mjc3Mjk2NjU4NDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"185be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37362\",\r\n            \"name\": \"Villares de la Reina\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk4NjE4Njg0MTc4NjQzNzg1MTswMDsn\\\"\",\r\n            \"systemId\": \"195be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37363\",\r\n            \"name\": \"Villares de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTYzNDk4NjYxNzM2NDc1NTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"1a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37364\",\r\n            \"name\": \"Villarino de los Aires\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ3Nzg1NDA2NjgyMzYzNDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"1b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37365\",\r\n            \"name\": \"Villarmayor\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIzMTU0MzcyNzAwNzE0MDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"1c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37366\",\r\n            \"name\": \"Villarmuerto\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.627Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc5MDYyODAzMTYxOTM2MjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"1d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37367\",\r\n            \"name\": \"Villasbuenas\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM3NzM4NDY5ODAyNzAyNTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"1e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37368\",\r\n            \"name\": \"Villasdardo\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIwNTkxMzA3MjYxMDg1Mjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"1f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37369\",\r\n            \"name\": \"Villaseco de los Gamitos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI3MDc3MDYzMTE5MDEwMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"205be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37370\",\r\n            \"name\": \"Villaseco de los Reyes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkzMTM4Mzk2NDY1NTIwNTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"215be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37371\",\r\n            \"name\": \"Villasrubias\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY4NTE1Mzc0MTkwMjY3MDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"225be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37372\",\r\n            \"name\": \"Villaverde de Guareña\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzAwMjgxMzk0NDkyMTE2Nzg0MTswMDsn\\\"\",\r\n            \"systemId\": \"235be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37373\",\r\n            \"name\": \"Villavieja de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc3NjExNTI4NjI0MTU1Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"245be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37374\",\r\n            \"name\": \"Villoria\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIzNzI3MzczNzMyNTY4NDc4MTswMDsn\\\"\",\r\n            \"systemId\": \"255be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37375\",\r\n            \"name\": \"Villoruela\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzgyNjM4Nzc3MDc2NDQ1OTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"265be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37350\",\r\n            \"name\": \"Vilvestre\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.623Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYxNDM0Nzg2NDc5MTUyMjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"275be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37376\",\r\n            \"name\": \"Vitigudino\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.63Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg2NzU2MzY4MTU2ODAyNjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"285be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37377\",\r\n            \"name\": \"Yecla de Yeltes\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc3MTc4MDA3NjAyMjA5MjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"295be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37378\",\r\n            \"name\": \"Zamarra\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE5MDc3ODI3NTQyMTA2NTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"2a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37379\",\r\n            \"name\": \"Zamayón\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA5NzcwMDQ2ODQxNDA3NDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"2b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37380\",\r\n            \"name\": \"Zarapicos\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE1MDU5OTU3Mzg2NzgxMzU2MTswMDsn\\\"\",\r\n            \"systemId\": \"2c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37381\",\r\n            \"name\": \"Zarza de Pumareda, La\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU3NjQyNzkzNTc2NTQ3ODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"2d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"37382\",\r\n            \"name\": \"Zorita de la Frontera\",\r\n            \"provinceNo\": 37,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAwNjI1Mjg1Njg1ODA3MDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"2e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38001\",\r\n            \"name\": \"Adeje\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAwMzU4MDEwMDc3NTQxNTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"2f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38002\",\r\n            \"name\": \"Agulo\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzkyMDIyODY3MTc4Mzg3MDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"305be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38003\",\r\n            \"name\": \"Alajeró\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM3MTQ5NzkzNjI2MTU1MjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"315be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38004\",\r\n            \"name\": \"Arafo\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.633Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNzE3MTM3MDgwMDI0OTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"325be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38005\",\r\n            \"name\": \"Arico\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk2NDMxNjA3MzgyNzk3NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"335be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38006\",\r\n            \"name\": \"Arona\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA5NTEwNzcyMzY5MDM0MTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"345be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38007\",\r\n            \"name\": \"Barlovento\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkyNjI1MTc4ODgzODUxMDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"355be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38008\",\r\n            \"name\": \"Breña Alta\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDUzNDE4MzczNDI1MjE1NzI5MTswMDsn\\\"\",\r\n            \"systemId\": \"365be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38009\",\r\n            \"name\": \"Breña Baja\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk5NjcxMjk5NzYwOTk4NjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"375be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38010\",\r\n            \"name\": \"Buenavista del Norte\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk4MTA2Mzg4MTA0MTg2NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"385be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38011\",\r\n            \"name\": \"Candelaria\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyNjI1ODQwMjE1Njk5NjMyMTswMDsn\\\"\",\r\n            \"systemId\": \"395be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38012\",\r\n            \"name\": \"Fasnia\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMxNDU3NTY1MTcyNDI4MzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"3a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38013\",\r\n            \"name\": \"Frontera\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA3Njc4MDY4MjM5MzM2OTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"3b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38014\",\r\n            \"name\": \"Fuencaliente de la Palma\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ2Mjc3NTk5NTk1MzMxOTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"3c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38015\",\r\n            \"name\": \"Garachico\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI0MDU3MTY0MDQxNjg5OTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"3d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38016\",\r\n            \"name\": \"Garafía\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA0MjcwNDQ2NTg3MjI3MTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"3e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38017\",\r\n            \"name\": \"Granadilla de Abona\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.637Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkyMDc5MDY2OTg3NzE4MDc5MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38018\",\r\n            \"name\": \"Guancha, La\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk1NjM3MTQxNTA5MjI4ODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"405be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38019\",\r\n            \"name\": \"Guía de Isora\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQxOTE4MjIxMDA5ODE1OTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"415be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38020\",\r\n            \"name\": \"Güímar\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjkxNDMxMDgwOTk4ODM3MDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"425be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38021\",\r\n            \"name\": \"Hermigua\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEzOTIzMzYwNjc5MDk2MjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"435be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38022\",\r\n            \"name\": \"Icod de los Vinos\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk3ODkxMzQxMTUzOTg3MDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"445be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38024\",\r\n            \"name\": \"Llanos de Aridane, Los\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYzOTc2OTE4OTMzOTk0NzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"455be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38025\",\r\n            \"name\": \"Matanza de Acentejo, La\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQyMTgxNTk2OTE0MzM1MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"465be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38026\",\r\n            \"name\": \"Orotava, La\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIxNTA0NzYxMDUxNTQ1NjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"475be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38027\",\r\n            \"name\": \"Paso, El\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMwMDg2MTY0MTM5NjE0NzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"485be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38901\",\r\n            \"name\": \"Pinar de El Hierro, El\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ5NTc3OTI4ODMwMDQxMzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"495be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38028\",\r\n            \"name\": \"Puerto de la Cruz\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMxMDU2MDE1MjIwMzg3OTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"4a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38029\",\r\n            \"name\": \"Puntagorda\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk3MzUzNTQwMjg1MDgxMTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38030\",\r\n            \"name\": \"Puntallana\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA3MjAzNTI5MDE5OTYwMTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"4c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38031\",\r\n            \"name\": \"Realejos, Los\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEzOTE1Njc0NjA5NTU4NDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"4d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38032\",\r\n            \"name\": \"Rosario, El\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDYyNzEwNDA1ODU0Nzk5Mzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"4e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38033\",\r\n            \"name\": \"San Andrés y Sauces\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk1NDU4NTU0NjM1Nzg5NzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"4f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38023\",\r\n            \"name\": \"San Cristóbal de La Laguna\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.64Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMzNzE4NDUyNDc4OTU2NTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"505be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38034\",\r\n            \"name\": \"San Juan de la Rambla\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAyNjQzNTI2MTAyNzQxNDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"515be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38035\",\r\n            \"name\": \"San Miguel de Abona\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY4Mzk1NDQyMzU1Njk4NjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"525be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38036\",\r\n            \"name\": \"San Sebastián de la Gomera\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.643Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE1MzM4Njk4NDY0MDU4OTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"535be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38037\",\r\n            \"name\": \"Santa Cruz de la Palma\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEwNTI2NzczODMyMzMwODgxMTswMDsn\\\"\",\r\n            \"systemId\": \"545be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38038\",\r\n            \"name\": \"Santa Cruz de Tenerife\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYwNTQzMjA2MjAxNDMwNDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"555be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38039\",\r\n            \"name\": \"Santa Úrsula\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM5NzU0MjA0MDc4ODE1NTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"565be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38040\",\r\n            \"name\": \"Santiago del Teide\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMyODc3NjA0ODQ0MjQ4OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"575be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38041\",\r\n            \"name\": \"Sauzal, El\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI1NzA2NDA3NDI4MDU0MTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"585be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38042\",\r\n            \"name\": \"Silos, Los\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg5MTY0NTU0ODM2MzY0MjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"595be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38043\",\r\n            \"name\": \"Tacoronte\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI5NTczNjg5MTU3NzU3ODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38044\",\r\n            \"name\": \"Tanque, El\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTAxNjYzNjAwOTUzNDExNTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"5b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38045\",\r\n            \"name\": \"Tazacorte\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQzMjcyMzUwNTE0NDg5Nzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"5c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38046\",\r\n            \"name\": \"Tegueste\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM4NzM5MjYyNDUzNzk0Njc1MTswMDsn\\\"\",\r\n            \"systemId\": \"5d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38047\",\r\n            \"name\": \"Tijarafe\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTkyMjY1NTQyMTgyMzE0NjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"5e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38049\",\r\n            \"name\": \"Valle Gran Rey\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE3ODUxOTEyMTA0NjYyMzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"5f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38050\",\r\n            \"name\": \"Vallehermoso\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEzMDcxNjU1MzE0NTk3MDYyMTswMDsn\\\"\",\r\n            \"systemId\": \"605be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38048\",\r\n            \"name\": \"Valverde\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.647Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI0NDQ0MTI2NTgyMzEzNDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"615be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38051\",\r\n            \"name\": \"Victoria de Acentejo, La\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI0MjYwNzY3Nzk2MDk0MDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"625be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38052\",\r\n            \"name\": \"Vilaflor de Chasna\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk3MzEwOTY4Njc4NTk4MDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"635be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"38053\",\r\n            \"name\": \"Villa de Mazo\",\r\n            \"provinceNo\": 38,\r\n            \"autonomousCommunityNo\": 5,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYzNjAwMjUzMTQ4ODMzMjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"645be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39001\",\r\n            \"name\": \"Alfoz de Lloredo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU1NDA4NTAwMzUzMTU2ODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"655be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39002\",\r\n            \"name\": \"Ampuero\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU1NDAxNDQxODkyMjMwMDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"665be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39003\",\r\n            \"name\": \"Anievas\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMyNzY5Mjg1MjcyODQ4OTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"675be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39004\",\r\n            \"name\": \"Arenas de Iguña\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAwMTQ3MTk2NzE5ODEzNzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"685be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39005\",\r\n            \"name\": \"Argoños\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.65Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM5ODQ1MjMwMzc1MjY1OTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"695be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39006\",\r\n            \"name\": \"Arnuero\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE4NDA5OTU2MDM4MjE3NDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"6a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39007\",\r\n            \"name\": \"Arredondo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ1MzczMDk2OTQ4NjM2NjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"6b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39008\",\r\n            \"name\": \"Astillero, El\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk4MzA4OTYwNjA0ODQzNzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"6c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39009\",\r\n            \"name\": \"Bárcena de Cicero\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ3MDA3MjgyMzk0NjQwMDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39010\",\r\n            \"name\": \"Bárcena de Pie de Concha\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM4NDE2MjE1NjI2Njc1ODI4MTswMDsn\\\"\",\r\n            \"systemId\": \"6e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39011\",\r\n            \"name\": \"Bareyo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA1OTgxNjYwODk4OTg5ODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"6f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39012\",\r\n            \"name\": \"Cabezón de la Sal\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc5ODU4NzA5MzYzODg0NzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"705be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39013\",\r\n            \"name\": \"Cabezón de Liébana\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTczMTI1NzkwNDQxNjMwOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"715be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39014\",\r\n            \"name\": \"Cabuérniga\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.653Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ3MDAyOTI2MzQ5Nzk4MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"725be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39015\",\r\n            \"name\": \"Camaleño\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ4NTQ1NzgwNzg4MDc1MDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"735be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39016\",\r\n            \"name\": \"Camargo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjYxOTc4ODcxNzA5NDY4ODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"745be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39027\",\r\n            \"name\": \"Campoo de Enmedio\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk1NTMyMjU2NDYxMjUxMDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"755be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39017\",\r\n            \"name\": \"Campoo de Yuso\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE2MDQzOTk0NDQ0NTY1MDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"765be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39018\",\r\n            \"name\": \"Cartes\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc3MDQzOTk4NjM3ODU4ODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"775be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39019\",\r\n            \"name\": \"Castañeda\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI1NDY5NzQxODM3NDUwMDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"785be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39020\",\r\n            \"name\": \"Castro-Urdiales\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU3MjIxNDQzNjU0MjI2NzYwMTswMDsn\\\"\",\r\n            \"systemId\": \"795be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39021\",\r\n            \"name\": \"Cieza\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI3OTQ0MTI2NzgwNjgxMTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"7a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39022\",\r\n            \"name\": \"Cillorigo de Liébana\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg3MDk1MDE4MzU1MzQyNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"7b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39023\",\r\n            \"name\": \"Colindres\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg0NDUzNjA4NTM1NTY0NzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"7c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39024\",\r\n            \"name\": \"Comillas\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODIwNzU1ODg0MzY0MzIxNTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"7d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39025\",\r\n            \"name\": \"Corrales de Buelna, Los\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUwMzAwMjMxNTM4OTIxODg1MTswMDsn\\\"\",\r\n            \"systemId\": \"7e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39026\",\r\n            \"name\": \"Corvera de Toranzo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.657Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkzMDE4MzE4NDA5MjE2NTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"7f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39028\",\r\n            \"name\": \"Entrambasaguas\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ5NDMxMDg2MTAxMTczMTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"805be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39029\",\r\n            \"name\": \"Escalante\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc5NzQzNDY1NzcyMzg1NDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"815be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39030\",\r\n            \"name\": \"Guriezo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjk3MzA5MzQ3ODQ5MzQxNDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"825be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39031\",\r\n            \"name\": \"Hazas de Cesto\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYzNjc0MTQ5MjIwNzEyMTExMTswMDsn\\\"\",\r\n            \"systemId\": \"835be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39032\",\r\n            \"name\": \"Hermandad de Campoo de Suso\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE2OTU5Mzc3ODcyNjA4NDQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"845be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39033\",\r\n            \"name\": \"Herrerías\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY2MzY2MDY1NDM5MzE5NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"855be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39034\",\r\n            \"name\": \"Lamasón\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA3MTgyOTMyMzM2MDM2MzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"865be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39035\",\r\n            \"name\": \"Laredo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODEyMzYyMzc5MTI3NDgyODkwMTswMDsn\\\"\",\r\n            \"systemId\": \"875be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39036\",\r\n            \"name\": \"Liendo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEyODY3MTQ4MjkyNDIyMDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"885be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39037\",\r\n            \"name\": \"Liérganes\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUwMjkzMTkxMjAxMjAwMDY4MTswMDsn\\\"\",\r\n            \"systemId\": \"895be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39038\",\r\n            \"name\": \"Limpias\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY4MDU1MDkzODQyNDk0MDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"8a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39039\",\r\n            \"name\": \"Luena\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.66Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEzNjU0MDEyNzAxNzkxNzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"8b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39040\",\r\n            \"name\": \"Marina de Cudeyo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAwNDg0MDUxMjExNTc4ODQxMTswMDsn\\\"\",\r\n            \"systemId\": \"8c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39041\",\r\n            \"name\": \"Mazcuerras\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMzODc1NDY1NTk3Mzc0ODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"8d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39042\",\r\n            \"name\": \"Medio Cudeyo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ4NDczODIwNTE0MzUzNjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"8e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39043\",\r\n            \"name\": \"Meruelo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAyMzgxMDg2OTgxMDI4MzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"8f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39044\",\r\n            \"name\": \"Miengo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUwNDY5NTI3NzIyMzA3MTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"905be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39045\",\r\n            \"name\": \"Miera\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE3OTk2NjI5NTY5NDcyNjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"915be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39046\",\r\n            \"name\": \"Molledo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQwMzMwMzgwMjAxNDAxOTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"925be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39047\",\r\n            \"name\": \"Noja\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQwMTQ5MjE3OTQ1NDg5MjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"935be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39048\",\r\n            \"name\": \"Penagos\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.663Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc1NjAxNzg1MjU2ODQ2NTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"945be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39049\",\r\n            \"name\": \"Peñarrubia\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk4MzkxNTY0Nzk0NTg3NTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"955be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39050\",\r\n            \"name\": \"Pesaguero\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAzMTIwOTAyNDg2NTExNjg3MTswMDsn\\\"\",\r\n            \"systemId\": \"965be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39051\",\r\n            \"name\": \"Pesquera\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYxNTEzOTYyODg2MzcyNjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"975be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39052\",\r\n            \"name\": \"Piélagos\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE4NjA0NTQzMjg1Njc3MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"985be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39053\",\r\n            \"name\": \"Polaciones\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU3NTE3NzAzNDY3MzI0MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"995be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39054\",\r\n            \"name\": \"Polanco\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEwOTc1NjExMTk3Njg5MzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"9a5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39055\",\r\n            \"name\": \"Potes\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgyNjIwOTU4MzI4NjY5MjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"9b5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39056\",\r\n            \"name\": \"Puente Viesgo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzAyNTE5MzkwOTI4MTg4MDQwMTswMDsn\\\"\",\r\n            \"systemId\": \"9c5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39057\",\r\n            \"name\": \"Ramales de la Victoria\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM0Mzg3NzA2MzE2ODE2Nzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"9d5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39058\",\r\n            \"name\": \"Rasines\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMzMDMwNzc2MzYyNjc4OTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9e5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39059\",\r\n            \"name\": \"Reinosa\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ5Mjg1OTc4MTcwOTQwNTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"9f5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39060\",\r\n            \"name\": \"Reocín\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY3MzkxOTIzMTE2MTIzNDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"a05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39061\",\r\n            \"name\": \"Ribamontán al Mar\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUwMDc4NDc4MjI4MjQ5Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"a15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39062\",\r\n            \"name\": \"Ribamontán al Monte\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.667Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM2NDEyNjIwOTA3MTYwNjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"a25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39063\",\r\n            \"name\": \"Rionansa\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY0NjMzMTgwNTA4NDQxNDM0MTswMDsn\\\"\",\r\n            \"systemId\": \"a35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39064\",\r\n            \"name\": \"Riotuerto\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDExMzcwNzg2ODExNTQzMzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"a45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39065\",\r\n            \"name\": \"Rozas de Valdearroyo, Las\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY3NDgzODEwMjE1MDAzNjk1MTswMDsn\\\"\",\r\n            \"systemId\": \"a55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39066\",\r\n            \"name\": \"Ruente\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU3NzAwNzY4MDY3MzMwNDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"a65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39067\",\r\n            \"name\": \"Ruesga\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI3Mzg2MDM0Nzc0MDQ2MTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"a75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39068\",\r\n            \"name\": \"Ruiloba\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTExMDk0MTgxNjU2MDU0NzEzMTswMDsn\\\"\",\r\n            \"systemId\": \"a85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39069\",\r\n            \"name\": \"San Felices de Buelna\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ4MDM5Njc1MDAxMzUxNzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"a95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39070\",\r\n            \"name\": \"San Miguel de Aguayo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU1OTQ4NTE5MDc5MDgyMzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39071\",\r\n            \"name\": \"San Pedro del Romeral\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.67Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTAxNzA1MDc4NzU4MTcwOTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"ab5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39072\",\r\n            \"name\": \"San Roque de Riomiera\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY1OTU2NTY5NTAxMDU3NTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"ac5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39080\",\r\n            \"name\": \"San Vicente de la Barquera\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMwNDAzMzg5MzgwNjAwMzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"ad5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39073\",\r\n            \"name\": \"Santa Cruz de Bezana\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ0MzI4MzE1Njc4NjM2NDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"ae5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39074\",\r\n            \"name\": \"Santa María de Cayón\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU4MDU1MDk4NDgzMjA4Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"af5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39075\",\r\n            \"name\": \"Santander\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU4NjU4MzYxMzUyMTIxMjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"b05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39076\",\r\n            \"name\": \"Santillana del Mar\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU1OTI0MTc3NDcwNzA0NTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"b15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39077\",\r\n            \"name\": \"Santiurde de Reinosa\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE1OTQ5MjYzOTg0NTU2NTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"b25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39078\",\r\n            \"name\": \"Santiurde de Toranzo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY3MjM3MTMwMjk4ODQ1MTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"b35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39079\",\r\n            \"name\": \"Santoña\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY1ODczMjU0OTIzODMwNDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"b45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39081\",\r\n            \"name\": \"Saro\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.673Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI5MTMzMjMyNTY1NjA1NDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"b55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39082\",\r\n            \"name\": \"Selaya\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE2MDAzMDYwNjExMDA4NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"b65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39083\",\r\n            \"name\": \"Soba\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDg1NTU4NDc0NDMyMjgyMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"b75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39084\",\r\n            \"name\": \"Solórzano\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjAwOTEwMjc3NTkxOTIwMTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"b85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39085\",\r\n            \"name\": \"Suances\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA5NzcxMzUzNDgzNzMwOTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"b95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39086\",\r\n            \"name\": \"Tojos, Los\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc4NjA3NjE1MzM4MzI3Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"ba5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39087\",\r\n            \"name\": \"Torrelavega\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkwNjc5MjY2NzIzNTQyNzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"bb5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39088\",\r\n            \"name\": \"Tresviso\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgxMDY2ODAzMTEyMTg0Mzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"bc5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39089\",\r\n            \"name\": \"Tudanca\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgwMDEwMDU2MTIwNjg1NzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"bd5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39090\",\r\n            \"name\": \"Udías\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQxNTIzODg3Njk4MTExMTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"be5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39095\",\r\n            \"name\": \"Val de San Vicente\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc4MDQxOTU2NTQ3MDU2OTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"bf5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39091\",\r\n            \"name\": \"Valdáliga\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ4NzM5MTE0MzQxNTU2NjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"c05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39092\",\r\n            \"name\": \"Valdeolea\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY4OTI1NzQ4MDM1NDE3NDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"c15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39093\",\r\n            \"name\": \"Valdeprado del Río\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg3ODU5ODQ2MDMxODU2NDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"c25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39094\",\r\n            \"name\": \"Valderredible\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.677Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM2MDMzNzQxMTI5NjcxNDI2MTswMDsn\\\"\",\r\n            \"systemId\": \"c35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39101\",\r\n            \"name\": \"Valle de Villaverde\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg1MzcyNjg4NTM3MTMzMjg5MTswMDsn\\\"\",\r\n            \"systemId\": \"c45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39096\",\r\n            \"name\": \"Vega de Liébana\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA2MDk3MjcyNDUxNjkzMjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"c55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39097\",\r\n            \"name\": \"Vega de Pas\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU1NjEzMDEzMTg5MDc5OTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"c65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39098\",\r\n            \"name\": \"Villacarriedo\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI0ODQzNTcyNjE3NDA3NDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"c75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39099\",\r\n            \"name\": \"Villaescusa\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE4ODMxNjUxMTUwMTI0MDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"c85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39100\",\r\n            \"name\": \"Villafufre\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMwNjc0OTAzMzA3NDk4Mzg3MTswMDsn\\\"\",\r\n            \"systemId\": \"c95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"39102\",\r\n            \"name\": \"Voto\",\r\n            \"provinceNo\": 39,\r\n            \"autonomousCommunityNo\": 6,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc4MzAwMDA1OTUwNDc1MzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"ca5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40001\",\r\n            \"name\": \"Abades\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY5NDg5MzU0NjY4OTkwOTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"cb5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40002\",\r\n            \"name\": \"Adrada de Pirón\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.68Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTczODgwNjQ3Mjk4OTY0NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"cc5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40003\",\r\n            \"name\": \"Adrados\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA4NDUxNTg0MzU1MzA5Njc0MTswMDsn\\\"\",\r\n            \"systemId\": \"cd5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40004\",\r\n            \"name\": \"Aguilafuente\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAzOTY5Nzg4NzYxMzA5MjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"ce5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40005\",\r\n            \"name\": \"Alconada de Maderuelo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYzOTE4MjUyMzMyMDI2MDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"cf5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40012\",\r\n            \"name\": \"Aldea Real\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM1ODQzMjY3NDkyMjk3MDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"d05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40006\",\r\n            \"name\": \"Aldealcorvo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU4Mzk2MDc3ODU0MDE3NjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"d15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40007\",\r\n            \"name\": \"Aldealengua de Pedraza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE0MjQ0NjAwNjAxNjMyNjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"d25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40008\",\r\n            \"name\": \"Aldealengua de Santa María\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ4MDM2NTUyNjk4NTAzNzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"d35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40009\",\r\n            \"name\": \"Aldeanueva de la Serrezuela\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE3NjE5MTUzNjk3NTY3MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"d45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40010\",\r\n            \"name\": \"Aldeanueva del Codonal\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc4MzI4Mzc2NzU3OTAzNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"d55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40013\",\r\n            \"name\": \"Aldeasoña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.683Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc4MzEyNTcyMzQyMTQ3MzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"d65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40014\",\r\n            \"name\": \"Aldehorno\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzMxNjUxNzk4MjIwOTY0MjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"d75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40015\",\r\n            \"name\": \"Aldehuela del Codonal\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg0NDI5NzY5OTI0MjM5MjM5MTswMDsn\\\"\",\r\n            \"systemId\": \"d85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40016\",\r\n            \"name\": \"Aldeonte\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkzODQ1MDM4OTMwMzY5NzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"d95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40017\",\r\n            \"name\": \"Anaya\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ1ODI0NTUzNjE1NDYyNjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"da5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40018\",\r\n            \"name\": \"Añe\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgwNjAxODg1OTM4NDQyMjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"db5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40019\",\r\n            \"name\": \"Arahuetes\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUzNTY0MTA5NzUwMDUyOTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"dc5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40020\",\r\n            \"name\": \"Arcones\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg3NDc2ODUyNzc4NTg2MDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"dd5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40021\",\r\n            \"name\": \"Arevalillo de Cega\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODYyOTExODA1MTM1OTk1NTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"de5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40022\",\r\n            \"name\": \"Armuña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIxOTg0ODI1NDc1NjM2MjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"df5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40024\",\r\n            \"name\": \"Ayllón\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTExODcyNTM3OTM5Njk1NzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"e05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40025\",\r\n            \"name\": \"Barbolla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ3Mzk3NDM1NzAwODY1NzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"e15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40026\",\r\n            \"name\": \"Basardilla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY4NTM0MzkzNzI4Mjk4MTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"e25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40028\",\r\n            \"name\": \"Bercial\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI5NjY1ODY4MTg3OTU3NzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"e35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40029\",\r\n            \"name\": \"Bercimuel\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.687Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc1MDM4MDQ5MDM5MjQyNTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"e45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40030\",\r\n            \"name\": \"Bernardos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEwMDMxNDcwMDUyMTM5NjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"e55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40031\",\r\n            \"name\": \"Bernuy de Porreros\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc1MjMwODYxMTAyMDg2ODExMTswMDsn\\\"\",\r\n            \"systemId\": \"e65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40032\",\r\n            \"name\": \"Boceguillas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA4ODEyNDQ3ODgwMzAzMjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"e75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40033\",\r\n            \"name\": \"Brieva\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk4OTM1NDA0NzMxNTcwMjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"e85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40034\",\r\n            \"name\": \"Caballar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk1NjEwNzA2NzU4MTIwNjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"e95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40035\",\r\n            \"name\": \"Cabañas de Polendos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU2NzU2NDUxMzk1MzQyMzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"ea5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40036\",\r\n            \"name\": \"Cabezuela\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU3NTE2OTE1NDY0NzE4MzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40037\",\r\n            \"name\": \"Calabazas de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU0NzM1OTk2NTA1NDY2ODAzMTswMDsn\\\"\",\r\n            \"systemId\": \"ec5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40039\",\r\n            \"name\": \"Campo de San Pedro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU0NTUxNjU3NTY0MDE2NDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"ed5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40040\",\r\n            \"name\": \"Cantalejo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.69Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA0Njc2MDgzMTY3MzQ3MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"ee5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40041\",\r\n            \"name\": \"Cantimpalos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzUzNTY4MTc1MDI2OTU0MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"ef5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40161\",\r\n            \"name\": \"Carabias\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM0Njc3ODg5NjMxNTE4NDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"f05be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40043\",\r\n            \"name\": \"Carbonero el Mayor\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjgyNzY2MzcxNzc2NjMzNjg5MTswMDsn\\\"\",\r\n            \"systemId\": \"f15be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40044\",\r\n            \"name\": \"Carrascal del Río\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgwOTM4MjA2NDc5MTgyMzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"f25be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40045\",\r\n            \"name\": \"Casla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAzMDc2NzM5MTkyMTk0MTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"f35be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40046\",\r\n            \"name\": \"Castillejo de Mesleón\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIxODEwNzQyNzU4MTg0MjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"f45be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40047\",\r\n            \"name\": \"Castro de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM1MDc5OTI4MzU0NjAxMzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"f55be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40048\",\r\n            \"name\": \"Castrojimeno\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU3OTI3NTE3NDYxMjA3NjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"f65be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40049\",\r\n            \"name\": \"Castroserna de Abajo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI2NTgyMTg4NjA1NzIzODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"f75be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40051\",\r\n            \"name\": \"Castroserracín\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE4MTI0MjMxNTU4OTkzMTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"f85be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40052\",\r\n            \"name\": \"Cedillo de la Torre\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.693Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzkzODEzNDY2MzgwNDYxNDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"f95be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40053\",\r\n            \"name\": \"Cerezo de Abajo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc3MDE3ODYzODMyNDE3NjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"fa5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40054\",\r\n            \"name\": \"Cerezo de Arriba\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg3MDI4NjcwNzUwNzU0MzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"fb5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40065\",\r\n            \"name\": \"Chañe\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg3Njc0MTA4OTU3MjIzMTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40055\",\r\n            \"name\": \"Cilleruelo de San Mamés\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY4MDAxOTI5MDQ3MTQyNTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"fd5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40056\",\r\n            \"name\": \"Cobos de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE3MjQxMDAwNzAxMTk3MjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"fe5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40057\",\r\n            \"name\": \"Coca\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU0OTM0OTk1MDU2ODg0OTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"ff5be034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40058\",\r\n            \"name\": \"Codorniz\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU2MzMxMzkzMzI2MTU3MjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"005ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40059\",\r\n            \"name\": \"Collado Hermoso\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEyNDkxODcyOTYzNDg3NzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"015ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40060\",\r\n            \"name\": \"Condado de Castilnovo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc0MzI3NTg0OTg0OTM2NTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"025ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40061\",\r\n            \"name\": \"Corral de Ayllón\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA2MTA2NDc3ODAwNDUzOTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"035ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40902\",\r\n            \"name\": \"Cozuelos de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkwNTU4ODc2MTg5NDEwMTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"045ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40062\",\r\n            \"name\": \"Cubillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjEyMTkzOTU4NTk2NzIyNTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"055ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40063\",\r\n            \"name\": \"Cuéllar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU4NzMyNDExNDU3NDc2NDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"065ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40905\",\r\n            \"name\": \"Cuevas de Provanco\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkyODk0NTcxOTc2MDc1ODQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"075ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40068\",\r\n            \"name\": \"Domingo García\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.697Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkwMDUwMTMyMjY0NTI0NjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"085ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40069\",\r\n            \"name\": \"Donhierro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzAwNzIwNjY4MjI1NzcyODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"095ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40070\",\r\n            \"name\": \"Duruelo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExNzE4NjI0MTUwNDUxNDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40071\",\r\n            \"name\": \"Encinas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc2NjQ2NDcwNjk1NzAyMjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40072\",\r\n            \"name\": \"Encinillas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY2NTE3NDg3NjYxMjc2NTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40073\",\r\n            \"name\": \"Escalona del Prado\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk1MDI2MDc4ODk3MzUyMzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"0d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40074\",\r\n            \"name\": \"Escarabajosa de Cabezas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIyNjI3NDgyODYyMzg4NjI5MTswMDsn\\\"\",\r\n            \"systemId\": \"0e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40075\",\r\n            \"name\": \"Escobar de Polendos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ1MTI5MzQxODE1NTEyMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"0f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40076\",\r\n            \"name\": \"Espinar, El\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk3MTAyNjk1MDY2MDcxOTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"105ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40077\",\r\n            \"name\": \"Espirdo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcxNjk0MTg2NDE5OTk5OTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"115ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40078\",\r\n            \"name\": \"Fresneda de Cuéllar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.7Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEyODA3MDU2NTY5NzIzOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"125ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40079\",\r\n            \"name\": \"Fresno de Cantespino\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEzNDEyNTg1NzI4MTY2NjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"135ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40080\",\r\n            \"name\": \"Fresno de la Fuente\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEzNTU2MTA0MTEzNDA0Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"145ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40081\",\r\n            \"name\": \"Frumales\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUzNTcwMDY3Njc3MjcxNTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"155ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40082\",\r\n            \"name\": \"Fuente de Santa Cruz\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU1MTc5MDM1MjU3MjAzMTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"165ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40083\",\r\n            \"name\": \"Fuente el Olmo de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc0NDc2Mzg0NDYzMDcxMjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"175ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40084\",\r\n            \"name\": \"Fuente el Olmo de Íscar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUyODg3OTIyMzIxMDM1Njg5MTswMDsn\\\"\",\r\n            \"systemId\": \"185ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40086\",\r\n            \"name\": \"Fuentepelayo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY5MTU4NzE5MjcwMzI3MTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"195ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40087\",\r\n            \"name\": \"Fuentepiñel\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAzNDkxODgzNzQyOTY0MDc5MTswMDsn\\\"\",\r\n            \"systemId\": \"1a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40088\",\r\n            \"name\": \"Fuenterrebollo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.703Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc4OTkyMTkxMTkyNTc5MDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"1b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40089\",\r\n            \"name\": \"Fuentesaúco de Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIxNzg0MDE5NjI0MzE0NzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40091\",\r\n            \"name\": \"Fuentesoto\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk2Mjc2NTEzMDM2NjcyMjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"1d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40092\",\r\n            \"name\": \"Fuentidueña\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE2ODg0NTY1OTUzMTQ3Njg4MTswMDsn\\\"\",\r\n            \"systemId\": \"1e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40093\",\r\n            \"name\": \"Gallegos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ0MDQwMzMxNDEwNzI4Mjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"1f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40094\",\r\n            \"name\": \"Garcillán\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk0OTg0NzMwNTY1MDc4ODAxMTswMDsn\\\"\",\r\n            \"systemId\": \"205ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40095\",\r\n            \"name\": \"Gomezserracín\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM4NTEzODA4NjE3MzExMzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"215ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40097\",\r\n            \"name\": \"Grajera\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgxMzMxMzI1MzQzMzQ1NTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"225ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40099\",\r\n            \"name\": \"Honrubia de la Cuesta\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc2Njc0MTIxNTUxNTEzNjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"235ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40100\",\r\n            \"name\": \"Hontalbilla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY0ODU4MDc5OTgwNDIwODU0MTswMDsn\\\"\",\r\n            \"systemId\": \"245ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40101\",\r\n            \"name\": \"Hontanares de Eresma\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMyNzcyNDI3ODMyMTMwMzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"255ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40103\",\r\n            \"name\": \"Huertos, Los\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY5MDg5NDY3MjAxMjgzNjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"265ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40104\",\r\n            \"name\": \"Ituero y Lama\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc5ODk4MDE2NTUzOTE2MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"275ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40105\",\r\n            \"name\": \"Juarros de Riomoros\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.707Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg2ODI5MDE2NTg1MTI4MDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"285ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40106\",\r\n            \"name\": \"Juarros de Voltoya\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODkwMDE1NDM2MTg5Mjg4ODAwMTswMDsn\\\"\",\r\n            \"systemId\": \"295ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40107\",\r\n            \"name\": \"Labajos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE5ODk1MTAwNDQ0NzQ5NzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"2a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40108\",\r\n            \"name\": \"Laguna de Contreras\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY5NTYyNTg1Mzc2MzcwMjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"2b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40109\",\r\n            \"name\": \"Languilla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA3MDE3NzY5NTU0MjcwMzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"2c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40110\",\r\n            \"name\": \"Lastras de Cuéllar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI1NDc0MjkzOTk4Mjc2MDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"2d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40111\",\r\n            \"name\": \"Lastras del Pozo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc2NjI4MDA4ODU0MTMwMTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"2e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40112\",\r\n            \"name\": \"Lastrilla, La\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ0NjM2MDczNjg5MjA4MjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"2f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40113\",\r\n            \"name\": \"Losa, La\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAxNzY4NzE0ODcwODYyNjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"305ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40115\",\r\n            \"name\": \"Maderuelo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.71Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAwMzk4MDI4MTYwNTQwNTczMTswMDsn\\\"\",\r\n            \"systemId\": \"315ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40903\",\r\n            \"name\": \"Marazoleja\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEzNjM1Njc3NDczNDA1ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"325ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40118\",\r\n            \"name\": \"Marazuela\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYyMTg4MTg5MTE2OTQ1MzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"335ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40119\",\r\n            \"name\": \"Martín Miguel\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE4MTUzMTU0ODk4OTE1NzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"345ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40120\",\r\n            \"name\": \"Martín Muñoz de la Dehesa\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQyMjUzMTIyMjkyNTAyNTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"355ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40121\",\r\n            \"name\": \"Martín Muñoz de las Posadas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE4MDA1MDk0NDczMDMzMTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"365ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40122\",\r\n            \"name\": \"Marugán\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkwOTQ5Nzg5NjYyOTM5MTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"375ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40124\",\r\n            \"name\": \"Mata de Cuéllar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyNDM1NjMxMTgyODA3NTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"385ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40123\",\r\n            \"name\": \"Matabuena\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk0MTIyMTM3NTc0NTEwNTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"395ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40125\",\r\n            \"name\": \"Matilla, La\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk0MDIzNzA0MDUwNjg3MTczMTswMDsn\\\"\",\r\n            \"systemId\": \"3a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40126\",\r\n            \"name\": \"Melque de Cercos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYzNzQ4MDk5NzcwMTYyMjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"3b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40127\",\r\n            \"name\": \"Membibre de la Hoz\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.713Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM5Mjc2MjE3OTA3MDM0Mzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"3c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40128\",\r\n            \"name\": \"Migueláñez\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY0MzY5NDIxMjU0MDU1ODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"3d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40129\",\r\n            \"name\": \"Montejo de Arévalo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkyMTg5MDg4NTE0MzEwNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"3e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40130\",\r\n            \"name\": \"Montejo de la Vega de la Serrezuela\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjExNjc0NDc2MDA5NDc3NzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40131\",\r\n            \"name\": \"Monterrubio\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI5NzIyNDY0NzAwNzA5NjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"405ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40132\",\r\n            \"name\": \"Moral de Hornuez\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMzMTM4MzQ4NDI3MTY5NzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"415ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40134\",\r\n            \"name\": \"Mozoncillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI0NzE0NjE2NTk2NTIzMzAzMTswMDsn\\\"\",\r\n            \"systemId\": \"425ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40135\",\r\n            \"name\": \"Muñopedro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk5OTA2NDk4NDk0MDYwMjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"435ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40136\",\r\n            \"name\": \"Muñoveros\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc2ODI1MTQzNzM2NDU3MTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"445ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40138\",\r\n            \"name\": \"Nava de la Asunción\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYwODM5OTM2ODExODgwNTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"455ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40139\",\r\n            \"name\": \"Navafría\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY4MjIxMjg1NDQzMjEwODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"465ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40140\",\r\n            \"name\": \"Navalilla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYyODg5MTA4MTMwNzA1NzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"475ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40141\",\r\n            \"name\": \"Navalmanzano\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDI3OTY1NTc0MDE3MTY3OTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"485ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40142\",\r\n            \"name\": \"Navares de Ayuso\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.717Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQxNzcwOTM2NzYyMjMxNTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"495ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40143\",\r\n            \"name\": \"Navares de Enmedio\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc4MzM2MDE5MzA5MDg2OTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"4a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40144\",\r\n            \"name\": \"Navares de las Cuevas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUzNjg0MjUzMzY1NTc2MzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40145\",\r\n            \"name\": \"Navas de Oro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIzMjE2Njk2NzA3NTU1NDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"4c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40904\",\r\n            \"name\": \"Navas de Riofrío\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIxNjk3MTMzNDUzNDcwOTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"4d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40146\",\r\n            \"name\": \"Navas de San Antonio\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk5MjA2NTEwNDQ0NDIyNDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"4e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40148\",\r\n            \"name\": \"Nieva\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDcxNjU2MTAzNDA0ODg0ODk4MTswMDsn\\\"\",\r\n            \"systemId\": \"4f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40149\",\r\n            \"name\": \"Olombrada\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAzMDkwMDE4NDk2NjE1NjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"505ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40150\",\r\n            \"name\": \"Orejana\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMxODgwNDcyNzI0MDAwNTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"515ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40151\",\r\n            \"name\": \"Ortigosa de Pestaño\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkxMjE2NTIwMTgzNjk5NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"525ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40901\",\r\n            \"name\": \"Ortigosa del Monte\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5NjQxMDE4MzA0ODc1OTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"535ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40152\",\r\n            \"name\": \"Otero de Herreros\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEwOTcyMzg0ODgzNDMxMTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"545ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40154\",\r\n            \"name\": \"Pajarejos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDgyMDkxODA3MDE5NDk3NzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"555ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40155\",\r\n            \"name\": \"Palazuelos de Eresma\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIzOTE2MjUyOTk2NTI2ODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"565ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40156\",\r\n            \"name\": \"Pedraza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM0Mzg3MjE1MzE1OTIwMzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"575ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40157\",\r\n            \"name\": \"Pelayos del Arroyo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTYxODI2Mzg0ODA5Mjc3ODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"585ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40158\",\r\n            \"name\": \"Perosillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.72Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc5NjQzODA2NjUzODE5MzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"595ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40159\",\r\n            \"name\": \"Pinarejos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM0Njg4MjE4NTE2MjU5MjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40160\",\r\n            \"name\": \"Pinarnegrillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTIxNDk0MTQ3OTIyMDI2NTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"5b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40162\",\r\n            \"name\": \"Prádena\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ4NDkzNDExMzAxNzc4ODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"5c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40163\",\r\n            \"name\": \"Puebla de Pedraza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjIwMDUwNzcyODU2MDA1MTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40164\",\r\n            \"name\": \"Rapariegos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA3MDA4OTU0MTIxNjIxNDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"5e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40181\",\r\n            \"name\": \"Real Sitio de San Ildefonso\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM4ODk4MDI3ODMyMjk5NDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"5f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40165\",\r\n            \"name\": \"Rebollo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUxNjEzMTE1OTQwMTIzNzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"605ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40166\",\r\n            \"name\": \"Remondo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTM2NDg4MDE4MzgwNjUwODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"615ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40168\",\r\n            \"name\": \"Riaguas de San Bartolomé\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI2NjYyMzcyOTk5NTAyMzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"625ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40170\",\r\n            \"name\": \"Riaza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc1OTk0Nzg1NDcxMzkwMjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"635ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40171\",\r\n            \"name\": \"Ribota\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.723Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTUzMzc1OTU5OTI2NTY3NDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"645ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40172\",\r\n            \"name\": \"Riofrío de Riaza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc3MDA2MjQzNTY0OTc1NzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"655ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40173\",\r\n            \"name\": \"Roda de Eresma\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU1OTg2OTA0NTM0NzU5MTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"665ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40174\",\r\n            \"name\": \"Sacramenia\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ0OTIxNzQzMDAzMzcxMzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"675ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40176\",\r\n            \"name\": \"Samboal\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ4MzcyMDkzNDE1MTQ4NzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"685ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40177\",\r\n            \"name\": \"San Cristóbal de Cuéllar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ3MzkwMDE0MDkzODYwOTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"695ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40178\",\r\n            \"name\": \"San Cristóbal de la Vega\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTkwMjk1MDEwMjgzMjM4ODA3MTswMDsn\\\"\",\r\n            \"systemId\": \"6a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40906\",\r\n            \"name\": \"San Cristóbal de Segovia\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk3NTE0MTA1NDE1NTY0NjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"6b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40182\",\r\n            \"name\": \"San Martín y Mudrián\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTI3MDg2NjczOTQ5MjEzNTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"6c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40183\",\r\n            \"name\": \"San Miguel de Bernuy\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA1ODA5MTcwOTY2OTc5NTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"6d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40184\",\r\n            \"name\": \"San Pedro de Gaíllos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDUxMzQ5MzcwODAyODMxODYzMTswMDsn\\\"\",\r\n            \"systemId\": \"6e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40179\",\r\n            \"name\": \"Sanchonuño\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU2MjkxMjUzMDAwOTg3Njg1MTswMDsn\\\"\",\r\n            \"systemId\": \"6f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40180\",\r\n            \"name\": \"Sangarcía\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYwMTE1Nzk2MTAyODczMjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"705ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40185\",\r\n            \"name\": \"Santa María la Real de Nieva\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.727Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI4MjMzNzgyNzUzNzgxMjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"715ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40186\",\r\n            \"name\": \"Santa Marta del Cerro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQyMjcyODg5NjYzNDc3ODQyMTswMDsn\\\"\",\r\n            \"systemId\": \"725ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40188\",\r\n            \"name\": \"Santiuste de Pedraza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ3NDI1NDA1ODM0MjUzMTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"735ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40189\",\r\n            \"name\": \"Santiuste de San Juan Bautista\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQyMTI5OTA5NzA3NDI3ODI1MTswMDsn\\\"\",\r\n            \"systemId\": \"745ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40190\",\r\n            \"name\": \"Santo Domingo de Pirón\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkzNDMyOTUzMTUyNzg0NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"755ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40191\",\r\n            \"name\": \"Santo Tomé del Puerto\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkyMDc3MjM4MDY2MDE5ODcxMTswMDsn\\\"\",\r\n            \"systemId\": \"765ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40192\",\r\n            \"name\": \"Sauquillo de Cabezas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUzMDI1ODE3NjA1MTYwOTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"775ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40193\",\r\n            \"name\": \"Sebúlcor\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM4ODI5NzU3Njg3MTAzNjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"785ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40194\",\r\n            \"name\": \"Segovia\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYzOTc3ODcxNjg0ODQ5MTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"795ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40195\",\r\n            \"name\": \"Sepúlveda\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg2OTE5OTAxNjI2MTA4NTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"7a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40196\",\r\n            \"name\": \"Sequera de Fresno\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.73Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzIwNzA4NjE2MDY0OTk5MTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"7b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40198\",\r\n            \"name\": \"Sotillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc1MTMzNjMxNzY5ODQxMTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"7c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40199\",\r\n            \"name\": \"Sotosalbos\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE0MDAwMjM5MTIzODIwMTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"7d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40200\",\r\n            \"name\": \"Tabanera la Luenga\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA1NjU0MDIzMDc1MTA5MzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"7e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40201\",\r\n            \"name\": \"Tolocirio\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkyMzUzNzQzOTcwMTEyMzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"7f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40206\",\r\n            \"name\": \"Torre Val de San Pedro\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc4NTI2MjMxMTM2NjM3NzI1MTswMDsn\\\"\",\r\n            \"systemId\": \"805ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40202\",\r\n            \"name\": \"Torreadrada\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU5NTMyNjUyMTc2OTE1NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"815ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40203\",\r\n            \"name\": \"Torrecaballeros\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA1NDg5NjY0NTgxOTUxMTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"825ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40204\",\r\n            \"name\": \"Torrecilla del Pinar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc4NzgzNjA4MDc1MTc4NDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"835ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40205\",\r\n            \"name\": \"Torreiglesias\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.733Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODExMjU0MDE3NTA3NzA4MjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"845ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40207\",\r\n            \"name\": \"Trescasas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODM4MjUzMjY1NjA2Njc4ODQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"855ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40208\",\r\n            \"name\": \"Turégano\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAxMDYzMzE4NjAyOTg5MjI0MTswMDsn\\\"\",\r\n            \"systemId\": \"865ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40210\",\r\n            \"name\": \"Urueñas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE2Nzc5NzQ5MjEzODMyNzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"875ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40211\",\r\n            \"name\": \"Valdeprados\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ5MzM1NjI5OTM3NDI3NjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"885ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40212\",\r\n            \"name\": \"Valdevacas de Montejo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwNTYyMDg0NjE4NTU2ODc2MTswMDsn\\\"\",\r\n            \"systemId\": \"895ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40213\",\r\n            \"name\": \"Valdevacas y Guijar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE1MDcxMDEzMDM4OTE0NjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"8a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40218\",\r\n            \"name\": \"Valle de Tabladillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAwNzgwMDU5ODIwMjcxODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"8b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40219\",\r\n            \"name\": \"Vallelado\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgxNDgwOTM5Mjg4NTA5OTczMTswMDsn\\\"\",\r\n            \"systemId\": \"8c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40220\",\r\n            \"name\": \"Valleruela de Pedraza\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc4MjA2NTgwMDU3NTUwNDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"8d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40221\",\r\n            \"name\": \"Valleruela de Sepúlveda\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgwNzc0Mzk3NjQ1OTIxNDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"8e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40214\",\r\n            \"name\": \"Valseca\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYzNjAxNTcwMzE3MjI1NzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"8f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40215\",\r\n            \"name\": \"Valtiendas\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAzMjA2MDgxNDcwMDIzODE5MTswMDsn\\\"\",\r\n            \"systemId\": \"905ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40216\",\r\n            \"name\": \"Valverde del Majano\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.737Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA2MzQ2NTg0MzIxMTU5MTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"915ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40222\",\r\n            \"name\": \"Veganzones\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM1ODQ5NTE0NTkyNzIwNDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"925ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40223\",\r\n            \"name\": \"Vegas de Matute\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ0MzY4MjM0ODU3OTIwNzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"935ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40224\",\r\n            \"name\": \"Ventosilla y Tejadilla\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc4NTUyMDU1MDQ4MzgzMDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"945ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40225\",\r\n            \"name\": \"Villacastín\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUyNjk5NDQ5NzYxNzExMDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"955ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40228\",\r\n            \"name\": \"Villaverde de Íscar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ0NzYzNDIwMzgyNDIwMDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"965ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40229\",\r\n            \"name\": \"Villaverde de Montejo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU1OTUzOTA2NjUxMDQ3MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"975ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40230\",\r\n            \"name\": \"Villeguillo\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMxNTAyMDE5MTc2NDc3OTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"985ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40231\",\r\n            \"name\": \"Yanguas de Eresma\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE4OTQ3NTYxMDY4NDA5MTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"995ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40233\",\r\n            \"name\": \"Zarzuela del Monte\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk5MTcxNjU2NTQ2MTIzNDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"9a5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"40234\",\r\n            \"name\": \"Zarzuela del Pinar\",\r\n            \"provinceNo\": 40,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.74Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAyODEzNjE3ODY1MDkzNDI2MTswMDsn\\\"\",\r\n            \"systemId\": \"9b5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41001\",\r\n            \"name\": \"Aguadulce\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc4ODIwMjU0Mzk1Mjc1MTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"9c5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41002\",\r\n            \"name\": \"Alanís\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgyNjc4NzMyNjMyOTIyNjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"9d5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41003\",\r\n            \"name\": \"Albaida del Aljarafe\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg4NDQ5OTYyMzE3MzY1OTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9e5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41004\",\r\n            \"name\": \"Alcalá de Guadaíra\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.743Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU4NTkwMjA5MDQwNzc0ODUyMTswMDsn\\\"\",\r\n            \"systemId\": \"9f5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41005\",\r\n            \"name\": \"Alcalá del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc4MjE0MDUyNTU4MjI1MjMyMTswMDsn\\\"\",\r\n            \"systemId\": \"a05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41006\",\r\n            \"name\": \"Alcolea del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDExMDY1NjE4NTU5ODg1NDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"a15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41007\",\r\n            \"name\": \"Algaba, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU0NTU0MTM1ODIwNjE0MjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"a25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41008\",\r\n            \"name\": \"Algámitas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY5MDY5ODk2MjI2NTI5MDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"a35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41009\",\r\n            \"name\": \"Almadén de la Plata\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYxOTY2MTA3ODk5NTAzNDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"a45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41010\",\r\n            \"name\": \"Almensilla\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI4OTAwMjgzOTM4NDcwNzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"a55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41011\",\r\n            \"name\": \"Arahal\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk5Njg0MzIyNDM3NjIyNzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"a65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41012\",\r\n            \"name\": \"Aznalcázar\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc2NTI0NDU4OTAxOTAwNTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"a75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41013\",\r\n            \"name\": \"Aznalcóllar\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMxNDE5MDMyOTUwOTEwNDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"a85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41014\",\r\n            \"name\": \"Badolatosa\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTAzNzAzMDQ4NTcyNzQ4ODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"a95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41015\",\r\n            \"name\": \"Benacazón\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkzOTk0NzMzNTEwNTM4MzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41016\",\r\n            \"name\": \"Bollullos de la Mitación\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.747Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA1OTQxOTU0NjQ1NDcwMTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"ab5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41017\",\r\n            \"name\": \"Bormujos\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUyMTg3ODM3NDg4NDYyMDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"ac5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41018\",\r\n            \"name\": \"Brenes\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI0OTcyNDQ3ODYwNzg1NjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"ad5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41019\",\r\n            \"name\": \"Burguillos\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYwMjc4NjY2NDgxMzY3NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"ae5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41020\",\r\n            \"name\": \"Cabezas de San Juan, Las\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg4Njg2MTY3MzA3NzEzMDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"af5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41021\",\r\n            \"name\": \"Camas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk4MTQ4MzU2MzUwMjc4OTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"b05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41022\",\r\n            \"name\": \"Campana, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE3MDYzMDA5MTc0MDQ5OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"b15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41023\",\r\n            \"name\": \"Cantillana\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAxMjIzODcxODY4NTI4MzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"b25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41901\",\r\n            \"name\": \"Cañada Rosal\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQzODg1NDk3ODk2NjU1NjE5MTswMDsn\\\"\",\r\n            \"systemId\": \"b35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41024\",\r\n            \"name\": \"Carmona\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ2NjY4MzczNDk2MTYxOTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"b45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41025\",\r\n            \"name\": \"Carrión de los Céspedes\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTcyMzY3MjgyMzM4NDcwMjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"b55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41026\",\r\n            \"name\": \"Casariche\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxNjAwODkxMzExNDAzMzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"b65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41027\",\r\n            \"name\": \"Castilblanco de los Arroyos\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTEwMTU3NjYxNTEyODM0Mzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"b75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41028\",\r\n            \"name\": \"Castilleja de Guzmán\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA2ODEyNzc1NDI1MTE2MzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"b85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41029\",\r\n            \"name\": \"Castilleja de la Cuesta\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI2NzE1MzMwMDYyNzIwMzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"b95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41030\",\r\n            \"name\": \"Castilleja del Campo\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.75Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc2NjMxNTgyNzMzMTc2MDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"ba5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41031\",\r\n            \"name\": \"Castillo de las Guardas, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc2MzQ5MTYxMDg4Mzc4MjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"bb5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41032\",\r\n            \"name\": \"Cazalla de la Sierra\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAxODM0ODM2ODM5MDkwMjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"bc5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41033\",\r\n            \"name\": \"Constantina\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY4ODkzNTQ5OTU1NzI0NjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"bd5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41034\",\r\n            \"name\": \"Coria del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjEwOTA0MTIwNjUzNjQ0ODA3MTswMDsn\\\"\",\r\n            \"systemId\": \"be5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41035\",\r\n            \"name\": \"Coripe\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkxODkzNDQ1ODE1NTM0ODEzMTswMDsn\\\"\",\r\n            \"systemId\": \"bf5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41036\",\r\n            \"name\": \"Coronil, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIzMDAyMTM2NTA4NjY4MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"c05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41037\",\r\n            \"name\": \"Corrales, Los\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTcyMjU4NzUwNjAwMzE3NDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"c15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41903\",\r\n            \"name\": \"Cuervo de Sevilla, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIxNzM4NTI4NjIxNTM5NjA0MTswMDsn\\\"\",\r\n            \"systemId\": \"c25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41038\",\r\n            \"name\": \"Dos Hermanas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkxODgyNjgzNTc3ODY1MzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"c35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41039\",\r\n            \"name\": \"Écija\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg0NDA0ODU3MzE1MjkxODc1MTswMDsn\\\"\",\r\n            \"systemId\": \"c45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41040\",\r\n            \"name\": \"Espartinas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.753Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQxOTE0NTU1MjI0MTMzNjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"c55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41041\",\r\n            \"name\": \"Estepa\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU5NjcxMjQ1NzU3NzY4MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"c65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41042\",\r\n            \"name\": \"Fuentes de Andalucía\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk2OTAxODEzMjUzMTk2OTIyMTswMDsn\\\"\",\r\n            \"systemId\": \"c75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41043\",\r\n            \"name\": \"Garrobo, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY0MTA1NTM0NzEzNzY1NDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"c85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41044\",\r\n            \"name\": \"Gelves\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIwNDI2MjM3Mzk5MDkxNTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"c95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41045\",\r\n            \"name\": \"Gerena\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDUxOTM1NTMyNzkwMjYxNzMwMTswMDsn\\\"\",\r\n            \"systemId\": \"ca5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41046\",\r\n            \"name\": \"Gilena\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgxMDMwNzM3MTE1Mjc5NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"cb5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41047\",\r\n            \"name\": \"Gines\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQwNDM3ODE2MTY1MTA4NzYxMTswMDsn\\\"\",\r\n            \"systemId\": \"cc5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41048\",\r\n            \"name\": \"Guadalcanal\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk2NjYwMzcyODcxMzgxODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"cd5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41049\",\r\n            \"name\": \"Guillena\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE4NjgzODM4OTU4MTg4NTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"ce5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41050\",\r\n            \"name\": \"Herrera\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgwMjI3ODY3Mjc5NjYzMjU0MTswMDsn\\\"\",\r\n            \"systemId\": \"cf5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41051\",\r\n            \"name\": \"Huévar del Aljarafe\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY2MTU0OTc2OTk5NzY0MjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"d05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41902\",\r\n            \"name\": \"Isla Mayor\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYxODM0NzY4OTU3MzEwMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"d15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41052\",\r\n            \"name\": \"Lantejuela\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQzMzM0MzA3ODgyODQ4Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"d25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41053\",\r\n            \"name\": \"Lebrija\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.757Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM3MTI4OTg4NTk0ODk4MzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"d35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41054\",\r\n            \"name\": \"Lora de Estepa\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI5NzQwMzU4ODk4ODIyMzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"d45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41055\",\r\n            \"name\": \"Lora del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU5MTAzNjQ1MjExMjAyODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"d55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41056\",\r\n            \"name\": \"Luisiana, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA5NTAxMjUyMDIyNzc3MDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"d65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41057\",\r\n            \"name\": \"Madroño, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA2NzE0NzY0NjYwMDE0OTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"d75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41058\",\r\n            \"name\": \"Mairena del Alcor\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI2MjQ4MjU0OTY3ODg0MDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"d85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41059\",\r\n            \"name\": \"Mairena del Aljarafe\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkxMzMxNjgzMTYwMzY4MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"d95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41060\",\r\n            \"name\": \"Marchena\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgyMDA5Mzc5NDc1MzA4NTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"da5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41061\",\r\n            \"name\": \"Marinaleda\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk5ODc1NDU1MjU5MjkyODE2MTswMDsn\\\"\",\r\n            \"systemId\": \"db5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41062\",\r\n            \"name\": \"Martín de la Jara\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM5MzAzNzE2NDMyMDA1OTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"dc5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41063\",\r\n            \"name\": \"Molares, Los\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.76Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA4NzMwOTI5MDk5NzU2MjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"dd5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41064\",\r\n            \"name\": \"Montellano\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEwNTcyNDQ2MDgyMjY0MDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"de5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41065\",\r\n            \"name\": \"Morón de la Frontera\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg3NzI4MjI5MTIzMTA1NDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"df5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41066\",\r\n            \"name\": \"Navas de la Concepción, Las\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk3NTc2MDY5MDU4MjY1NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"e05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41067\",\r\n            \"name\": \"Olivares\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3Njg2NTk5MjgwODEzNjAwMTswMDsn\\\"\",\r\n            \"systemId\": \"e15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41068\",\r\n            \"name\": \"Osuna\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEwOTM0NDM4NjcyMTg3OTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"e25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41069\",\r\n            \"name\": \"Palacios y Villafranca, Los\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA1NDA0NDI5OTk2ODEwMDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"e35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41904\",\r\n            \"name\": \"Palmar de Troya, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjExODg1NjUyNzQyOTg1Njg5MTswMDsn\\\"\",\r\n            \"systemId\": \"e45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41070\",\r\n            \"name\": \"Palomares del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI0NDgwNzMyMDQ2OTcwNzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"e55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41071\",\r\n            \"name\": \"Paradas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM2Nzk1Mzc1NzAwNDUzNzc2MTswMDsn\\\"\",\r\n            \"systemId\": \"e65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41072\",\r\n            \"name\": \"Pedrera\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk2ODY5MTYzMjg2NzI1NDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"e75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41073\",\r\n            \"name\": \"Pedroso, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.763Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY4NDA1MzgwMzEyODkxMjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"e85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41074\",\r\n            \"name\": \"Peñaflor\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzEyNTIxNDI4NzM1MDM1MDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"e95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41075\",\r\n            \"name\": \"Pilas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQyNjY5ODkyNzY3MDkxODE5MTswMDsn\\\"\",\r\n            \"systemId\": \"ea5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41076\",\r\n            \"name\": \"Pruna\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY2NTEyMTUwNDM2MzAyOTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41077\",\r\n            \"name\": \"Puebla de Cazalla, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYxNzQ2OTU0OTY1NjQ0MTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"ec5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41078\",\r\n            \"name\": \"Puebla de los Infantes, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgwMDkwNDk3NjcwNzg4MTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"ed5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41079\",\r\n            \"name\": \"Puebla del Río, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg5NjM5NDYxMTI2OTIyNzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"ee5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41080\",\r\n            \"name\": \"Real de la Jara, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ2NTgwMzU1ODI4MDg0MzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"ef5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41081\",\r\n            \"name\": \"Rinconada, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQwNjI2MTA4MDQyMjYzMzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"f05ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41082\",\r\n            \"name\": \"Roda de Andalucía, La\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQxNTQ0MDYyOTc4MDE0NzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"f15ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41083\",\r\n            \"name\": \"Ronquillo, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI0Mjk4NDgyMjI1MTgzMTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"f25ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41084\",\r\n            \"name\": \"Rubio, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUzODU2NjAxMTY4Njk1NTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"f35ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41085\",\r\n            \"name\": \"Salteras\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.767Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkxMzE3NjQ1NTE0NDE2MTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"f45ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41086\",\r\n            \"name\": \"San Juan de Aznalfarache\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAxNjMwMjU3MjE4MDk0NzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"f55ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41088\",\r\n            \"name\": \"San Nicolás del Puerto\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjc5MDUwMTgxNzQ0OTgyMzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"f65ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41087\",\r\n            \"name\": \"Sanlúcar la Mayor\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkwNTk4MjY1MzcxMjg0MjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"f75ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41089\",\r\n            \"name\": \"Santiponce\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDEzMTA4NjkxNjYwMjk0MzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"f85ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41090\",\r\n            \"name\": \"Saucejo, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0MTMyODg0ODEyNTUzNTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"f95ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41091\",\r\n            \"name\": \"Sevilla\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU3MjU2NDc0NTQxODk2MjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"fa5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41092\",\r\n            \"name\": \"Tocina\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUxOTEyNjU4ODU3NTAyMjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"fb5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41093\",\r\n            \"name\": \"Tomares\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY1MTAxOTc1NDY0OTMzNTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41094\",\r\n            \"name\": \"Umbrete\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.77Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUyMzg2MDcyNjg4NDkxMjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"fd5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41095\",\r\n            \"name\": \"Utrera\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDMxNDE0MTcyMzY5MjYxNTIyMTswMDsn\\\"\",\r\n            \"systemId\": \"fe5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41096\",\r\n            \"name\": \"Valencina de la Concepción\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc0ODI1MDA3ODQ4ODc5NzQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"ff5ce034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41097\",\r\n            \"name\": \"Villamanrique de la Condesa\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE3NTkzMzc2Nzk1NjgxNTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"005de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41100\",\r\n            \"name\": \"Villanueva de San Juan\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYyOTE5MjYxMzc4MDcwNzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"015de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41098\",\r\n            \"name\": \"Villanueva del Ariscal\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg4NTI5NzYxMzkyODIxMTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"025de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41099\",\r\n            \"name\": \"Villanueva del Río y Minas\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA4ODI3MDk2MzA1Njc1OTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"035de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41101\",\r\n            \"name\": \"Villaverde del Río\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwMzIyNTAzMTMyMjk4MjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"045de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"41102\",\r\n            \"name\": \"Viso del Alcor, El\",\r\n            \"provinceNo\": 41,\r\n            \"autonomousCommunityNo\": 1,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.773Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM3NjM2ODA1NTczMzU4MDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"055de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42001\",\r\n            \"name\": \"Abejar\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM3NTQ5NjIwMDU5ODkxMDIwMTswMDsn\\\"\",\r\n            \"systemId\": \"065de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42003\",\r\n            \"name\": \"Adradas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc1MTA5OTU1NTUzMTM2MTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"075de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42004\",\r\n            \"name\": \"Ágreda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4MjE1MjYwOTcxNzU0NzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"085de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42006\",\r\n            \"name\": \"Alconaba\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUxMTMzMzA2NzQwOTI0Mjc1MTswMDsn\\\"\",\r\n            \"systemId\": \"095de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42007\",\r\n            \"name\": \"Alcubilla de Avellaneda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjIzNTQ5Mjg0MTI2NjE1MzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42008\",\r\n            \"name\": \"Alcubilla de las Peñas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc1NTM4NjI5ODk0MTA5Mzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42009\",\r\n            \"name\": \"Aldealafuente\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ3OTExMzY2NDY5MTM5MDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42010\",\r\n            \"name\": \"Aldealices\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY5NTIzMjY4NTk3OTYwNjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"0d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42011\",\r\n            \"name\": \"Aldealpozo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM0Nzc0NDU3MDQyMzY3OTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"0e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42012\",\r\n            \"name\": \"Aldealseñor\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzExNDQ0Nzk3ODI5NDE4MjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"0f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42013\",\r\n            \"name\": \"Aldehuela de Periáñez\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.777Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI2NTY4MTcyOTI5NzQ2MDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"105de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42014\",\r\n            \"name\": \"Aldehuelas, Las\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ0MTUyMzkzNjcwNzcwMjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"115de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42015\",\r\n            \"name\": \"Alentisque\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcyODc0MTM0NTA4OTA2NjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"125de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42016\",\r\n            \"name\": \"Aliud\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg3MTU2MDI2MzY0MTA1OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"135de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42017\",\r\n            \"name\": \"Almajano\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcwMTIwNTA2MjE3NjIxODEwMTswMDsn\\\"\",\r\n            \"systemId\": \"145de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42018\",\r\n            \"name\": \"Almaluez\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM5MjE0NTEzNzY3MDIyMzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"155de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42019\",\r\n            \"name\": \"Almarza\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc5NjI1NTI2NjkwMjI3NTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"165de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42020\",\r\n            \"name\": \"Almazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYyNTM0Mzc0NjgwNTU0NDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"175de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42021\",\r\n            \"name\": \"Almazul\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA4MzQyMDQ4MTM5ODAzMTczMTswMDsn\\\"\",\r\n            \"systemId\": \"185de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42022\",\r\n            \"name\": \"Almenar de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk2Njk4MDY1ODA1ODUxNjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"195de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42023\",\r\n            \"name\": \"Alpanseque\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAzODE4MTYzMzU3NjM4NDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"1a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42024\",\r\n            \"name\": \"Arancón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcyNjM2NTcxMDUwOTMzOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"1b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42025\",\r\n            \"name\": \"Arcos de Jalón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.78Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc1MDc0OTM3MTU1Mjk1NjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"1c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42026\",\r\n            \"name\": \"Arenillas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY3Njg4NDUzNzA0NTQyNDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42027\",\r\n            \"name\": \"Arévalo de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ2MzI5NTc4NDYyMzY0NTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"1e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42028\",\r\n            \"name\": \"Ausejo de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ1NzQ5MjUxNTY4ODc5NTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"1f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42029\",\r\n            \"name\": \"Baraona\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc2MTU4MzIzNzc1ODc4NjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"205de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42030\",\r\n            \"name\": \"Barca\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE0ODU0MDU2MDIyNjExODA0MTswMDsn\\\"\",\r\n            \"systemId\": \"215de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42031\",\r\n            \"name\": \"Barcones\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgyODg5OTY5ODE1ODM5ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"225de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42032\",\r\n            \"name\": \"Bayubas de Abajo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzA0NDE5OTQ3Njk5ODY2MjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"235de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42033\",\r\n            \"name\": \"Bayubas de Arriba\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkxNTAxMzAyNjE0MDQxNDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"245de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42034\",\r\n            \"name\": \"Beratón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMyNjg2NDE4MjgzNTgzNzAzMTswMDsn\\\"\",\r\n            \"systemId\": \"255de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42035\",\r\n            \"name\": \"Berlanga de Duero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.783Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQzMzUyMzAwMzA4ODUxMjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"265de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42036\",\r\n            \"name\": \"Blacos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkzMDY2NzI4MjUxNDQzMTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"275de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42037\",\r\n            \"name\": \"Bliecos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODUwOTg1NjY4NTAxMTAzNzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"285de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42038\",\r\n            \"name\": \"Borjabad\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAzMDY2MDIyMzYxODA2NzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"295de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42039\",\r\n            \"name\": \"Borobia\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg0Mzg1NDYyMDM5OTI0MzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"2a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42041\",\r\n            \"name\": \"Buberos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMzOTk0MDA1NTEzMDEyOTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"2b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42042\",\r\n            \"name\": \"Buitrago\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk5MjYxODY1MTk5MjYzMjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"2c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42043\",\r\n            \"name\": \"Burgo de Osma-Ciudad de Osma\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE0NjI2OTgxNTg0NzcxNTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"2d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42044\",\r\n            \"name\": \"Cabrejas del Campo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYyMjkxNTY1OTE4MTc1NTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"2e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42045\",\r\n            \"name\": \"Cabrejas del Pinar\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA5NDA4MDk2NDk5NzY5ODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"2f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42046\",\r\n            \"name\": \"Calatañazor\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ4NTAxMTM4OTg3MDIzNzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"305de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42048\",\r\n            \"name\": \"Caltojar\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA0NzQwMTQwMjYzNDQ5MTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"315de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42049\",\r\n            \"name\": \"Candilichera\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU1NDk5MTg4NzI5MjQyODAyMTswMDsn\\\"\",\r\n            \"systemId\": \"325de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42050\",\r\n            \"name\": \"Cañamaque\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.787Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk2MTg4NTQxODcwNzUwNjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"335de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42051\",\r\n            \"name\": \"Carabantes\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE0NTI5Njg0ODc2NTU4MjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"345de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42052\",\r\n            \"name\": \"Caracena\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA0ODU4NTYwODcyNTcwMzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"355de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42053\",\r\n            \"name\": \"Carrascosa de Abajo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc1MDk5MDE2NjUwODYxOTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"365de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42054\",\r\n            \"name\": \"Carrascosa de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc3ODE5MTI1NzY2MDIxNjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"375de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42055\",\r\n            \"name\": \"Casarejos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ1NjA3OTEzODkyMTgxMTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"385de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42056\",\r\n            \"name\": \"Castilfrío de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYzMjg3NjIyNzMzOTM3NTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"395de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42058\",\r\n            \"name\": \"Castillejo de Robledo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTEyNDUzMzg1NTM3NDAyMTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"3a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42057\",\r\n            \"name\": \"Castilruiz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcyNTM3NTcyNTA0NjM4NDExMTswMDsn\\\"\",\r\n            \"systemId\": \"3b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42059\",\r\n            \"name\": \"Centenera de Andaluz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.79Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY2NjU1MTAxNjk3MTgzMDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"3c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42060\",\r\n            \"name\": \"Cerbón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI4MTUzODE0NTE1NTQ4NDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"3d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42061\",\r\n            \"name\": \"Cidones\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjEwMjI0NTk4MzU1NzUzNDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"3e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42062\",\r\n            \"name\": \"Cigudosa\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI4MjAwOTU2ODc2NDA0MTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42063\",\r\n            \"name\": \"Cihuela\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAyNTk2OTY0MjAxOTk0MDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"405de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42064\",\r\n            \"name\": \"Ciria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMzNzYyNDIzNTY4MjA5MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"415de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42065\",\r\n            \"name\": \"Cirujales del Río\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ3NDQ5MTYyNDU1MjQ4NTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"425de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42068\",\r\n            \"name\": \"Coscurita\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzExMzg5NzgzMjYyNDI2NDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"435de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42069\",\r\n            \"name\": \"Covaleda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc1MjcwMzA4MjY0NDg4NjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"445de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42070\",\r\n            \"name\": \"Cubilla\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDExNTYyNTMzOTcxNDI5NzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"455de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42071\",\r\n            \"name\": \"Cubo de la Solana\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.793Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM3NTI5Nzg4NDAwODY5MDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"465de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42073\",\r\n            \"name\": \"Cueva de Ágreda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM3NzAwOTE0MjQyNDgyNDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"475de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42075\",\r\n            \"name\": \"Dévanos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM2MzQ0MjMwODI0ODE2OTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"485de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42076\",\r\n            \"name\": \"Deza\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQwMjg0MTU2ODU3MjIxMTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"495de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42078\",\r\n            \"name\": \"Duruelo de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgzNTAwMTkzOTg3NTUwNTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"4a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42079\",\r\n            \"name\": \"Escobosa de Almazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDIzNjA3NDY2Mzg2MjY2NDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42080\",\r\n            \"name\": \"Espeja de San Marcelino\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI2NzQ1OTU3NzU3NTczMDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42081\",\r\n            \"name\": \"Espejón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM0MjI5NDU2NjE2MzYzMjYxMTswMDsn\\\"\",\r\n            \"systemId\": \"4d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42082\",\r\n            \"name\": \"Estepa de San Juan\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY3NTI3NjQwNjc5OTA2NzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"4e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42083\",\r\n            \"name\": \"Frechilla de Almazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI3MDExMDg1MDAzMjYyNTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"4f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42084\",\r\n            \"name\": \"Fresno de Caracena\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA3MDQwMzg5Mjk2ODEyMDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"505de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42085\",\r\n            \"name\": \"Fuentearmegil\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg2NzI3ODgzMjc3MDExOTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"515de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42086\",\r\n            \"name\": \"Fuentecambrón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc1MDI2MjQzNzcyNDIyNDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"525de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42087\",\r\n            \"name\": \"Fuentecantos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.797Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk1NTM1NTAxNzA5NTg1MzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"535de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42088\",\r\n            \"name\": \"Fuentelmonge\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ2MzU3ODg1NDIyMTEyODAwMTswMDsn\\\"\",\r\n            \"systemId\": \"545de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42089\",\r\n            \"name\": \"Fuentelsaz de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI2NDQ2NjE0NjIwMzA1MDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"555de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42090\",\r\n            \"name\": \"Fuentepinilla\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU0MjQ5NTY1NzA0MjUxNDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"565de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42092\",\r\n            \"name\": \"Fuentes de Magaña\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI1NzczNzgyMzAwMDQ5NDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"575de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42093\",\r\n            \"name\": \"Fuentestrún\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTIzNjA1NDg2MjY1NDY3NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"585de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42094\",\r\n            \"name\": \"Garray\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAwMDA2NDA2ODcxNzIzNDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"595de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42095\",\r\n            \"name\": \"Golmayo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE5NjM0MDk4ODQ1MDAyNjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42096\",\r\n            \"name\": \"Gómara\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTYzMjA4OTgxNzgwNTc0MDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"5b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42097\",\r\n            \"name\": \"Gormaz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE5NzIxMDk5Nzk4NzYwMzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"5c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42098\",\r\n            \"name\": \"Herrera de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.8Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUyMTE0MTc4NjgwMDAzMjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42100\",\r\n            \"name\": \"Hinojosa del Campo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY1ODA4MjcyOTk0NzYyNzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"5e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42103\",\r\n            \"name\": \"Langa de Duero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI2OTU1NjI0MDMzMTQzMjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"5f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42105\",\r\n            \"name\": \"Liceras\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA1NjkxNzIwNDM4NzM1MzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"605de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42106\",\r\n            \"name\": \"Losilla, La\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgzMzU5NjUwMTUwNzM5MDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"615de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42107\",\r\n            \"name\": \"Magaña\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMwMDgxNDE5OTcxMjkzNzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"625de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42108\",\r\n            \"name\": \"Maján\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk2NDc2NzYzODE4NTU5MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"635de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42110\",\r\n            \"name\": \"Matalebreras\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwNTE0MjU3MTA3ODgwMzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"645de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42111\",\r\n            \"name\": \"Matamala de Almazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg0Mzg3NjUxODI2Mzg0MTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"655de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42113\",\r\n            \"name\": \"Medinaceli\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkzOTU1MDU5NTUxMTYxOTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"665de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42115\",\r\n            \"name\": \"Miño de Medinaceli\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.803Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU3NjEyNTAzMjkxNzAyOTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"675de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42116\",\r\n            \"name\": \"Miño de San Esteban\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE2MjMyODM1MDk0ODIxOTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"685de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42117\",\r\n            \"name\": \"Molinos de Duero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczNzY2NTM3NDQwOTI0MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"695de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42118\",\r\n            \"name\": \"Momblona\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY0MTQ0MTIyOTU3NTI1MDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"6a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42119\",\r\n            \"name\": \"Monteagudo de las Vicarías\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg2NjEyODA2MjA0MzM0MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"6b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42120\",\r\n            \"name\": \"Montejo de Tiermes\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIzOTgzOTAzNzU2NDQwNjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"6c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42121\",\r\n            \"name\": \"Montenegro de Cameros\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEwMzk1MjIzNzAwOTYxMjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"6d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42123\",\r\n            \"name\": \"Morón de Almazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg0ODE0MjgzMDg2MDQxNzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"6e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42124\",\r\n            \"name\": \"Muriel de la Fuente\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczMTMwMzAyNzQ2NTI0NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"6f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42125\",\r\n            \"name\": \"Muriel Viejo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU4NjUxMTE5Mjg3Mjg2MDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"705de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42127\",\r\n            \"name\": \"Nafría de Ucero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg3MjcyNjIwNTY0NzE3MDczMTswMDsn\\\"\",\r\n            \"systemId\": \"715de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42128\",\r\n            \"name\": \"Narros\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ4OTY1NTc0ODk1NDk5NjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"725de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42129\",\r\n            \"name\": \"Navaleno\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYzMTUxMjQyNjc2OTY5Mjg3MTswMDsn\\\"\",\r\n            \"systemId\": \"735de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42130\",\r\n            \"name\": \"Nepas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.807Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUxNTYxNjg5OTkxNDQwOTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"745de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42131\",\r\n            \"name\": \"Nolay\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk4MDUwOTUwODQ4NDA1NjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"755de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42132\",\r\n            \"name\": \"Noviercas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ5MzU1MDA2MTUwOTA3NTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"765de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42134\",\r\n            \"name\": \"Ólvega\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ3NzgzNzc2MzcxMzUzOTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"775de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42135\",\r\n            \"name\": \"Oncala\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI5MTE4Mjg3MjI5Nzc1OTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"785de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42139\",\r\n            \"name\": \"Pinilla del Campo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUwMjA2NzcwOTExOTE1MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"795de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42140\",\r\n            \"name\": \"Portillo de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEzODMyMjg0MDkwMzYwODU1MTswMDsn\\\"\",\r\n            \"systemId\": \"7a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42141\",\r\n            \"name\": \"Póveda de Soria, La\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA2NjI5OTI1Mjc0MTc1NDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"7b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42142\",\r\n            \"name\": \"Pozalmuro\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5MzIyMDAyNTg3OTQ2NTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"7c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42144\",\r\n            \"name\": \"Quintana Redonda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.81Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM2OTgzMDcyMjEwMDExMjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"7d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42145\",\r\n            \"name\": \"Quintanas de Gormaz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU3NzU3MDgyNTAwMjU3NzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"7e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42148\",\r\n            \"name\": \"Quiñonería\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODExOTcwNjEwNzgyMjk1ODkwMTswMDsn\\\"\",\r\n            \"systemId\": \"7f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42149\",\r\n            \"name\": \"Rábanos, Los\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzk2MDc3NjY0MzAwMjAyNDMyMTswMDsn\\\"\",\r\n            \"systemId\": \"805de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42151\",\r\n            \"name\": \"Rebollar\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIwMzgyMDM4MDM1OTU1OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"815de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42152\",\r\n            \"name\": \"Recuerda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA0MTE4NTEzMTE2NDE0Nzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"825de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42153\",\r\n            \"name\": \"Rello\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIyMTU1MzY2NTY4NDQwNjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"835de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42154\",\r\n            \"name\": \"Renieblas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc5MTA3Njk1NjYzNTgwOTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"845de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42155\",\r\n            \"name\": \"Retortillo de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODcxMzA5NzU2ODgyNDg4NjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"855de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42156\",\r\n            \"name\": \"Reznos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4OTQ0MTU2Mjk4MTg3NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"865de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42157\",\r\n            \"name\": \"Riba de Escalote, La\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE3MTEwNjIyMDQzNzMyNzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"875de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42158\",\r\n            \"name\": \"Rioseco de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA1MTkyMjQ2MjkzMzY5MjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"885de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42159\",\r\n            \"name\": \"Rollamienta\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY1MzAyNTI3ODc4NTg3OTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"895de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42160\",\r\n            \"name\": \"Royo, El\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.813Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk4MTE1NDU5NjU1NjQ1ODU4MTswMDsn\\\"\",\r\n            \"systemId\": \"8a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42161\",\r\n            \"name\": \"Salduero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA2MDQ4NTQ4NzU4MjY2OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"8b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42162\",\r\n            \"name\": \"San Esteban de Gormaz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk0OTgyMDcxMzI3NDU3OTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"8c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42163\",\r\n            \"name\": \"San Felices\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA4NzUzNDU0MjYzNTE5ODE5MTswMDsn\\\"\",\r\n            \"systemId\": \"8d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42164\",\r\n            \"name\": \"San Leonardo de Yagüe\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY3ODIxNTQ1NTA3MzIxNzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"8e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42165\",\r\n            \"name\": \"San Pedro Manrique\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAxOTcyNDA2NDQxNzM0NDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"8f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42166\",\r\n            \"name\": \"Santa Cruz de Yanguas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTExMDY5ODE5Mjk0ODgwMTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"905de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42167\",\r\n            \"name\": \"Santa María de Huerta\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTIzMjk3NjI2ODMwNTA4MjU0MTswMDsn\\\"\",\r\n            \"systemId\": \"915de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42168\",\r\n            \"name\": \"Santa María de las Hoyas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE5NDA3Njk5MjY4NDk0NDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"925de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42171\",\r\n            \"name\": \"Serón de Nágima\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc1MzU5MzAxNTcxMTc4MTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"935de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42172\",\r\n            \"name\": \"Soliedra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM1NjQ3MzgwMzMzNDUwNjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"945de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42173\",\r\n            \"name\": \"Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTcwOTAzMDk5NTIzMDg0MTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"955de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42174\",\r\n            \"name\": \"Sotillo del Rincón\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI4ODY0NjQzMTgxODcwMjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"965de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42175\",\r\n            \"name\": \"Suellacabras\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYyMDY3MzkwNDI3Nzc4Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"975de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42176\",\r\n            \"name\": \"Tajahuerce\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.817Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE0MDI3MDU0OTAwNzI4MzgzMTswMDsn\\\"\",\r\n            \"systemId\": \"985de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42177\",\r\n            \"name\": \"Tajueco\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU3NTE5Njg1NjIxNjc3ODg5MTswMDsn\\\"\",\r\n            \"systemId\": \"995de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42178\",\r\n            \"name\": \"Talveila\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg4MjI4NjAzNTU3ODQ2MDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"9a5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42181\",\r\n            \"name\": \"Tardelcuende\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgxMTk0NjM4ODc5MjU3MTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"9b5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42182\",\r\n            \"name\": \"Taroda\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjk5Mjc5NTA0NDE4MjMyMjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"9c5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42183\",\r\n            \"name\": \"Tejado\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQwNjI3NjQwNTg5MDc4MzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"9d5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42184\",\r\n            \"name\": \"Torlengua\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI4Mjg3ODkzNzM3NjcxMjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"9e5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42185\",\r\n            \"name\": \"Torreblacos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEzNzEzMjkzMTAwODgyNjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"9f5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42187\",\r\n            \"name\": \"Torrubia de Soria\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ4OTI4MTE0MTQzNjU1ODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"a05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42188\",\r\n            \"name\": \"Trévago\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzkwMzM0ODc0NzUwNDk0NjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"a15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42189\",\r\n            \"name\": \"Ucero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.82Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM3MDQ1MTc1ODcyMDQ5NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"a25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42190\",\r\n            \"name\": \"Vadillo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzA1Nzc1MTI4MjM2MTQ5NjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"a35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42191\",\r\n            \"name\": \"Valdeavellano de Tera\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk5MDgxMTg1OTM1MDYxODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"a45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42192\",\r\n            \"name\": \"Valdegeña\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU0NTkyODYwOTAzMjQ5MDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"a55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42193\",\r\n            \"name\": \"Valdelagua del Cerro\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1NjQ4NTgwMTEzNzI5NTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"a65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42194\",\r\n            \"name\": \"Valdemaluque\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzgxNTg1MjQ4MTA5NzAwNjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"a75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42195\",\r\n            \"name\": \"Valdenebro\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk1MzYwNDUyMDM4NTE4MDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"a85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42196\",\r\n            \"name\": \"Valdeprado\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTExMTAyOTkyNjMxNDc2NTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"a95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42197\",\r\n            \"name\": \"Valderrodilla\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY1MDg4Mjc0MjYxMDY5MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42198\",\r\n            \"name\": \"Valtajeros\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.823Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY1MzY3NjI5NTA3OTk2ODEwMTswMDsn\\\"\",\r\n            \"systemId\": \"ab5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42200\",\r\n            \"name\": \"Velamazán\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgyMTIwNjUzNjE3NjEwNTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"ac5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42201\",\r\n            \"name\": \"Velilla de la Sierra\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk2NDM4MDkyOTY2ODYxOTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"ad5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42202\",\r\n            \"name\": \"Velilla de los Ajos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMzMjA1ODIwNDU1Njc4NDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"ae5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42204\",\r\n            \"name\": \"Viana de Duero\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQxMzYzMDkyNjQ5OTkwNjk4MTswMDsn\\\"\",\r\n            \"systemId\": \"af5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42205\",\r\n            \"name\": \"Villaciervos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYyMTY5NTI2MTcyMTExNzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"b05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42206\",\r\n            \"name\": \"Villanueva de Gormaz\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk5MTMzNzQwMTE5OTU5MDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"b15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42207\",\r\n            \"name\": \"Villar del Ala\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDIyMTk4MDE3OTM5NDM2NTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"b25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42208\",\r\n            \"name\": \"Villar del Campo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE2MzU3MzczNDg1MDQ3MDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"b35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42209\",\r\n            \"name\": \"Villar del Río\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI4MzA0NDA2OTk0Nzk0ODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"b45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42211\",\r\n            \"name\": \"Villares de Soria, Los\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc3MTYwNDU4MDM1Nzg1MTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"b55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42212\",\r\n            \"name\": \"Villasayas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY5NjQwODU5MjU5NzMzNjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"b65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42213\",\r\n            \"name\": \"Villaseca de Arciel\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkyNzM3NTkwMDA4ODgxNjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"b75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42215\",\r\n            \"name\": \"Vinuesa\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.827Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI2OTEzNjEwMTA4MDA0ODc5MTswMDsn\\\"\",\r\n            \"systemId\": \"b85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42216\",\r\n            \"name\": \"Vizmanos\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA5MDE1Njg2NjcyMjAyNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"b95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42217\",\r\n            \"name\": \"Vozmediano\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY3NDgxMjY1ODk2NTEzNzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"ba5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42218\",\r\n            \"name\": \"Yanguas\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTcyODg1Njc4MzU5MDQ4MzEzMTswMDsn\\\"\",\r\n            \"systemId\": \"bb5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"42219\",\r\n            \"name\": \"Yelo\",\r\n            \"provinceNo\": 42,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEwNTEwODkzNjIyODEzMjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"bc5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43001\",\r\n            \"name\": \"Aiguamúrcia\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc0NjY0MjM3OTA5NTYzNjU1MTswMDsn\\\"\",\r\n            \"systemId\": \"bd5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43002\",\r\n            \"name\": \"Albinyana\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU2ODk4NDc1MDU3NTc0NzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"be5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43003\",\r\n            \"name\": \"Albiol, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM1Nzc0NDEyMzQzMzg2MzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"bf5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43004\",\r\n            \"name\": \"Alcanar\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMwMjU0Mjc2NTQ1MzMxNjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"c05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43005\",\r\n            \"name\": \"Alcover\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMyODQ0MDY2NjkxMzE0OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"c15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43904\",\r\n            \"name\": \"Aldea, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI4NDMxMTQxNDAwMDM3OTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"c25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43006\",\r\n            \"name\": \"Aldover\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.83Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQyNDkzMDg4MjEwNDgzOTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"c35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43007\",\r\n            \"name\": \"Aleixar, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg2NDQ5MDA1MTgwMDAxMzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"c45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43008\",\r\n            \"name\": \"Alfara de Carles\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU3OTk2MjQ0MTIxMjg4NTM1MTswMDsn\\\"\",\r\n            \"systemId\": \"c55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43009\",\r\n            \"name\": \"Alforja\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE0MDc5NDMwODU0ODc5OTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"c65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43010\",\r\n            \"name\": \"Alió\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk1NDE3NzY2NjA3MTU3MjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"c75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43011\",\r\n            \"name\": \"Almoster\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA0MTI4MzAxNzYwMDE4NTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"c85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43012\",\r\n            \"name\": \"Altafulla\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc3NzQ3NjIyOTc4NzMxMzUwMTswMDsn\\\"\",\r\n            \"systemId\": \"c95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43013\",\r\n            \"name\": \"Ametlla de Mar, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM5MDIyMTMxNzM3MTYzMDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"ca5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43906\",\r\n            \"name\": \"Ampolla, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgwNTA4NzcxOTE3MjIzOTczMTswMDsn\\\"\",\r\n            \"systemId\": \"cb5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43014\",\r\n            \"name\": \"Amposta\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk0ODk1NDg2NTY1NjcxODQyMTswMDsn\\\"\",\r\n            \"systemId\": \"cc5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43016\",\r\n            \"name\": \"Arboç, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEyMDE1OTQ5ODYzNTg4MDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"cd5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43015\",\r\n            \"name\": \"Arbolí\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.833Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAzNDYwOTM1MDc3NjU1MDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"ce5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43017\",\r\n            \"name\": \"Argentera, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc2MjQ2MjgzODA1Nzg0Njg5MTswMDsn\\\"\",\r\n            \"systemId\": \"cf5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43018\",\r\n            \"name\": \"Arnes\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYzNjE5Njc5NjU3OTg1NDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"d05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43019\",\r\n            \"name\": \"Ascó\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjczOTE4ODM1ODA0MTU4ODMyMTswMDsn\\\"\",\r\n            \"systemId\": \"d15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43020\",\r\n            \"name\": \"Banyeres del Penedès\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjExODAxODc5MzcwNTYyNDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"d25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43021\",\r\n            \"name\": \"Barberà de la Conca\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMxNzc0OTU2MzAxNjE0ODYzMTswMDsn\\\"\",\r\n            \"systemId\": \"d35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43022\",\r\n            \"name\": \"Batea\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI3NDAxMzk2NTY2ODMzMjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"d45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43023\",\r\n            \"name\": \"Bellmunt del Priorat\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY1OTQ2ODUxNzg1MzI3MjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"d55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43024\",\r\n            \"name\": \"Bellvei\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA4NTY4OTczNDE4MDc0NzQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"d65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43025\",\r\n            \"name\": \"Benifallet\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc2MjA0ODI3NDM4OTg1OTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"d75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43026\",\r\n            \"name\": \"Benissanet\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzcxNzM1MTk1MzI3Mzc2MDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"d85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43027\",\r\n            \"name\": \"Bisbal de Falset, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkwNzE5NTc4NDE1Mzg2NTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"d95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43028\",\r\n            \"name\": \"Bisbal del Penedès, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkyMTE2NjUxOTk3NTM2MjYxMTswMDsn\\\"\",\r\n            \"systemId\": \"da5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43029\",\r\n            \"name\": \"Blancafort\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.837Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODAzMzg5ODI3ODc3MDkyMzQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"db5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43030\",\r\n            \"name\": \"Bonastre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk4NDAyODc2MDk0MzI0NTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"dc5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43031\",\r\n            \"name\": \"Borges del Camp, Les\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA0Njg2MDQ5MTgyNTY2OTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"dd5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43032\",\r\n            \"name\": \"Bot\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI5NzU5NDM3OTUxOTc4MzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"de5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43033\",\r\n            \"name\": \"Botarell\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQyOTE1ODc4Nzk4NzI4ODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"df5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43034\",\r\n            \"name\": \"Bràfim\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMzNTE2NjQ0NzE4NjMyNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"e05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43035\",\r\n            \"name\": \"Cabacés\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI0NzI5MjgxMzEzODcyNzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"e15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43036\",\r\n            \"name\": \"Cabra del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc0ODQ1OTMzNzU4MzcwOTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"e25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43037\",\r\n            \"name\": \"Calafell\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg1NDY3Mzk4MTUzNzkyNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"e35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43903\",\r\n            \"name\": \"Camarles\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQwNzM1MzgzNDc4MzI0ODczMTswMDsn\\\"\",\r\n            \"systemId\": \"e45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43038\",\r\n            \"name\": \"Cambrils\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI2NDE3NzUzODgyODM1NDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"e55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43907\",\r\n            \"name\": \"Canonja, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY3MzU5NDExMzQyNTc2MDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"e65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43039\",\r\n            \"name\": \"Capafonts\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.84Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTkyODUxNjU0ODMwMTA1MTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"e75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43040\",\r\n            \"name\": \"Capçanes\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjcwMTYyOTM4MzE4Mjk3NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"e85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43041\",\r\n            \"name\": \"Caseres\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMxOTUzOTI2NzUxOTc0NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"e95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43042\",\r\n            \"name\": \"Castellvell del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI3ODgwNTIxNDU5MjU4MjAzMTswMDsn\\\"\",\r\n            \"systemId\": \"ea5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43043\",\r\n            \"name\": \"Catllar, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY5MTIxMDExNjk4NjAyMzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43045\",\r\n            \"name\": \"Colldejou\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI4NzU0NDk3NTA0MzgzNDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"ec5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43046\",\r\n            \"name\": \"Conesa\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ3MzIwNDM2OTQ1OTc5MjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"ed5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43047\",\r\n            \"name\": \"Constantí\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE0MTg2Mjg1NjYwMjA1MjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"ee5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43048\",\r\n            \"name\": \"Corbera d'Ebre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE2NTk3NzI4NzQ0NDI1NTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"ef5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43049\",\r\n            \"name\": \"Cornudella de Montsant\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcyNTIxMTEyNjU3NzQ3MDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"f05de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43050\",\r\n            \"name\": \"Creixell\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIzMTUwMDkzNDMwMTU5ODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"f15de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43051\",\r\n            \"name\": \"Cunit\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE1MTcwOTM3MDA0MDIyMjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"f25de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43901\",\r\n            \"name\": \"Deltebre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUzNTI1OTcwODQ5OTIzMTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"f35de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43053\",\r\n            \"name\": \"Duesaigües\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIzMTg5MzUzNzY2NTI2Njc3MTswMDsn\\\"\",\r\n            \"systemId\": \"f45de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43054\",\r\n            \"name\": \"Espluga de Francolí, L'\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4NjM0NzY3NzM3ODgxNjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"f55de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43055\",\r\n            \"name\": \"Falset\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ4OTU4OTQzMDE0NTc4OTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"f65de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43056\",\r\n            \"name\": \"Fatarella, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4OTg1NjkzMDUwMzYxOTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"f75de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43057\",\r\n            \"name\": \"Febró, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgxNjU1MDkxNDQwOTE0MDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"f85de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43058\",\r\n            \"name\": \"Figuera, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgxODQ1ODkxMzY4Mzg4MTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"f95de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43059\",\r\n            \"name\": \"Figuerola del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYzNjMzMjc2OTEzMDg0MTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"fa5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43060\",\r\n            \"name\": \"Flix\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg4NjQ2MjY3NjkyMTU3MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"fb5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43061\",\r\n            \"name\": \"Forès\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0MTk4MjMxODE2ODk2MDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43062\",\r\n            \"name\": \"Freginals\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY4NjExMTI3NzUzMzY0NDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"fd5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43063\",\r\n            \"name\": \"Galera, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM1Mjg2OTM4MTg3MTg5ODE2MTswMDsn\\\"\",\r\n            \"systemId\": \"fe5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43064\",\r\n            \"name\": \"Gandesa\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI4OTQ1NTc2OTEzMDcxMzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"ff5de034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43065\",\r\n            \"name\": \"Garcia\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTMyMDI5MDYyMzI4MDk3NzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"005ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43066\",\r\n            \"name\": \"Garidells, Els\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA3MDI5Nzc2Mjc2MzEyMzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"015ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43067\",\r\n            \"name\": \"Ginestar\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU4NzQ0ODM1NTcwOTA3NjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"025ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43068\",\r\n            \"name\": \"Godall\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAwOTMxMDgwNTE3ODEyMzg0MTswMDsn\\\"\",\r\n            \"systemId\": \"035ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43069\",\r\n            \"name\": \"Gratallops\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI3OTM1MTUxMDI1MTE5OTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"045ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43070\",\r\n            \"name\": \"Guiamets, Els\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwMDEzODc2MjQyNjQ3MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"055ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43071\",\r\n            \"name\": \"Horta de Sant Joan\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI5Njc1NDQ1NDU3ODU3MzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"065ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43072\",\r\n            \"name\": \"Lloar, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkzMzQ3Nzk5MjE3NzQwOTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"075ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43073\",\r\n            \"name\": \"Llorac\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg5ODE0NTA3MTY2Nzk5NzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"085ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43074\",\r\n            \"name\": \"Llorenç del Penedès\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.85Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjYzOTIzMzQ4ODMwOTkzNDc3MTswMDsn\\\"\",\r\n            \"systemId\": \"095ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43076\",\r\n            \"name\": \"Marçà\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ5OTc1OTAxNTI4ODg1NDg0MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43075\",\r\n            \"name\": \"Margalef\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQwNDkwOTQ0MjY0NTMxODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43077\",\r\n            \"name\": \"Mas de Barberans\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA5MjQ2ODg1MzkyOTkzNTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43078\",\r\n            \"name\": \"Masdenverge\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgzNDY4MzE1MzM0OTU3MzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"0d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43079\",\r\n            \"name\": \"Masllorenç\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyMDE4OTYyOTg0MTE1MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"0e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43080\",\r\n            \"name\": \"Masó, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA3ODMxOTE4NzM1MDgzMzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"0f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43081\",\r\n            \"name\": \"Maspujols\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQyNTQ3NzA1NjUyNzIyMDIwMTswMDsn\\\"\",\r\n            \"systemId\": \"105ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43082\",\r\n            \"name\": \"Masroig, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE2NjUxNDE2NDMyMzgwNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"115ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43083\",\r\n            \"name\": \"Milà, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.853Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY1MDI2NDg4Njk2NjU0MzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"125ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43084\",\r\n            \"name\": \"Miravet\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEyODExMTI5MTMzOTE2NDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"135ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43085\",\r\n            \"name\": \"Molar, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg0ODM3MTEwOTI1NTk1NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"145ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43086\",\r\n            \"name\": \"Montblanc\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM4MzAxMDA3NDU4MzM4NzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"155ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43088\",\r\n            \"name\": \"Montbrió del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYzMDAwMzIzMzcyNTQ1OTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"165ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43089\",\r\n            \"name\": \"Montferri\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU0MDU2OTE5MjQzNTQ1MDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"175ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43090\",\r\n            \"name\": \"Montmell, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU2MTQ1MTM0MDI0OTcxMzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"185ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43091\",\r\n            \"name\": \"Mont-ral\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIwNTc4MTk2MTc3MjM4NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"195ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43092\",\r\n            \"name\": \"Mont-roig del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ4NjU5OTU3ODg5NDA3OTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"1a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43093\",\r\n            \"name\": \"Móra d'Ebre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzNjkyNzk0Mjc3NTQwOTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"1b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43094\",\r\n            \"name\": \"Móra la Nova\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMzMDMyMTYzMzUxMTA0Mjg0MTswMDsn\\\"\",\r\n            \"systemId\": \"1c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43095\",\r\n            \"name\": \"Morell, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYzMjc5MDkzMzM5MzI2MTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"1d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43096\",\r\n            \"name\": \"Morera de Montsant, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIyNjg3MTg0NzMyMTk4NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"1e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43097\",\r\n            \"name\": \"Nou de Gaià, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.857Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA5MjA4OTQyMjI1OTQ5NDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"1f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43098\",\r\n            \"name\": \"Nulles\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg0MTAwODgyNDAxNDU5NTIyMTswMDsn\\\"\",\r\n            \"systemId\": \"205ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43100\",\r\n            \"name\": \"Pallaresos, Els\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE2MjA1MDg5NDgyODY0MDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"215ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43099\",\r\n            \"name\": \"Palma d'Ebre, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM0ODQwMzU0ODk5MzEyMDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"225ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43101\",\r\n            \"name\": \"Passanant i Belltall\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc4NjI1Mjc2NTk3OTExMjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"235ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43102\",\r\n            \"name\": \"Paüls\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODEyMDY4NDk0MjQ2MDEzMDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"245ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43103\",\r\n            \"name\": \"Perafort\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIxMTA1MTc5MTc3MzgzMjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"255ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43104\",\r\n            \"name\": \"Perelló, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEwNTQ4NjYyNTQ5MDY3NjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"265ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43105\",\r\n            \"name\": \"Piles, Les\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQxNTU2NDM4NDA2OTA1OTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"275ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43106\",\r\n            \"name\": \"Pinell de Brai, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg0Mjk1OTkzNTUyMTE5NTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"285ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43107\",\r\n            \"name\": \"Pira\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA0NTU4MTM2ODQ4MzA1MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"295ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43108\",\r\n            \"name\": \"Pla de Santa Maria, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.86Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI0Mzc2ODgxNTY5MzU3NTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"2a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43109\",\r\n            \"name\": \"Pobla de Mafumet, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY2NDcwMTUxODc2NDA3OTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"2b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43110\",\r\n            \"name\": \"Pobla de Massaluca, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI5NzY0NTY2OTI0MTUxMjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"2c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43111\",\r\n            \"name\": \"Pobla de Montornès, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYxMTQ3NDI0OTQ3MDI2MDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"2d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43112\",\r\n            \"name\": \"Poboleda\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc5MzYzNTc1OTUzNTQ2MDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"2e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43113\",\r\n            \"name\": \"Pont d'Armentera, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAyMjU4MDAzNzg5Njk1OTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"2f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43141\",\r\n            \"name\": \"Pontils\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA0NzQzNjg3NjQ1MTY4OTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"305ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43114\",\r\n            \"name\": \"Porrera\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEyODkwNDc0OTgwMzAzMzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"315ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43115\",\r\n            \"name\": \"Pradell de la Teixeta\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEwNjEzMTE3OTY0NDczMDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"325ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43116\",\r\n            \"name\": \"Prades\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI1MDE2ODg5MzYwMzYzOTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"335ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43117\",\r\n            \"name\": \"Prat de Comte\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDU4NjM5MDMxOTQ5OTU3NzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"345ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43118\",\r\n            \"name\": \"Pratdip\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.863Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3OTk3OTY4MTc1ODEwMzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"355ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43119\",\r\n            \"name\": \"Puigpelat\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ2NTIwNTY5MTI1NzI0NDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"365ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43120\",\r\n            \"name\": \"Querol\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkxOTU5MTY2ODk1MTIyMTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"375ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43121\",\r\n            \"name\": \"Rasquera\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQwNTc1MDI2ODkwMDM3MjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"385ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43122\",\r\n            \"name\": \"Renau\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTczNzA2MTY1MTI2OTM5MzUxMTswMDsn\\\"\",\r\n            \"systemId\": \"395ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43123\",\r\n            \"name\": \"Reus\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ3MTcwMDg1MjQzNzAwMDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"3a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43124\",\r\n            \"name\": \"Riba, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM5NTIyMjUxNzg3MDA1Njk0MTswMDsn\\\"\",\r\n            \"systemId\": \"3b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43125\",\r\n            \"name\": \"Riba-roja d'Ebre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI5MTE0OTA2NjUxOTg2NjYzMTswMDsn\\\"\",\r\n            \"systemId\": \"3c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43126\",\r\n            \"name\": \"Riera de Gaià, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg2MDY1NTA4NzQzNjEwODk3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43127\",\r\n            \"name\": \"Riudecanyes\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY0Njc2MjcwNzc4MDU3ODQyMTswMDsn\\\"\",\r\n            \"systemId\": \"3e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43128\",\r\n            \"name\": \"Riudecols\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMxMTEwNjcwNjAxNDQ1NTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43129\",\r\n            \"name\": \"Riudoms\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk4ODYzMzA5ODQyMTgwNzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"405ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43130\",\r\n            \"name\": \"Rocafort de Queralt\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM3ODQxNzQ2MjQ2MzcwNzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"415ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43131\",\r\n            \"name\": \"Roda de Berà\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.867Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU0OTY1Nzk5NzY1NjIzMTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"425ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43132\",\r\n            \"name\": \"Rodonyà\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ4MDg4NjcxMDY1Mzg4NjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"435ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43133\",\r\n            \"name\": \"Roquetes\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ0NDIxODU2MDQwNTE1Nzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"445ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43134\",\r\n            \"name\": \"Rourell, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg5OTIxMjc2NDgyNzUwODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"455ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43135\",\r\n            \"name\": \"Salomó\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA5ODE1NTI4NDU2MDk1MDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"465ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43905\",\r\n            \"name\": \"Salou\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE1ODA3ODkzMzQ5NTc3ODM5MTswMDsn\\\"\",\r\n            \"systemId\": \"475ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43136\",\r\n            \"name\": \"Sant Carles de la Ràpita\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU1MzE5MjE0Mzg4NzgxMzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"485ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43137\",\r\n            \"name\": \"Sant Jaume dels Domenys\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDI2NDE1ODkyMzMzNzg1NDA2MTswMDsn\\\"\",\r\n            \"systemId\": \"495ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43902\",\r\n            \"name\": \"Sant Jaume d'Enveja\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgyMDc1OTYxNDIwNTcwNDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"4a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43138\",\r\n            \"name\": \"Santa Bàrbara\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkwOTk4ODM0Nzg3ODI1MTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43139\",\r\n            \"name\": \"Santa Coloma de Queralt\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQwNjk5NDQ0MDAwMzcwNTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"4c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43140\",\r\n            \"name\": \"Santa Oliva\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.87Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM2ODYzNTYxMjU2OTY4ODY1MTswMDsn\\\"\",\r\n            \"systemId\": \"4d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43142\",\r\n            \"name\": \"Sarral\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk2MDE5Mzk0OTQxNjgxNTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"4e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43143\",\r\n            \"name\": \"Savallà del Comtat\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTAzMDEwMDI3MjIwMzQxMTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"4f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43144\",\r\n            \"name\": \"Secuita, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg5Nzc1MjkzOTk0OTkzNjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"505ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43145\",\r\n            \"name\": \"Selva del Camp, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg0OTIxODkxNTM0MjM1OTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"515ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43146\",\r\n            \"name\": \"Senan\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkwMjY0NTAyODc2MDAzMDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"525ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43044\",\r\n            \"name\": \"Sénia, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.843Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc2OTcxODY5NTIyMzc4MTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"535ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43147\",\r\n            \"name\": \"Solivella\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA2MzU1NjczMDAwMzI1MjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"545ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43148\",\r\n            \"name\": \"Tarragona\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg4MzAyMzQxMjkxNjAyMDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"555ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43149\",\r\n            \"name\": \"Tivenys\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA1MjQ0NzYyMzUxMTIwOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"565ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43150\",\r\n            \"name\": \"Tivissa\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYyMjAxNzQ5NjEyMDEzNDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"575ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43151\",\r\n            \"name\": \"Torre de Fontaubella, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.873Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM5NjYzMzcxNzgwNTkxOTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"585ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43152\",\r\n            \"name\": \"Torre de l'Espanyol, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTUyMzcyNjEyNTM2NDMzODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"595ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43153\",\r\n            \"name\": \"Torredembarra\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEyNDIxMzg3MTczODU3MzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43154\",\r\n            \"name\": \"Torroja del Priorat\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA5MzI2NDc2NjQyMjg3NjYxMTswMDsn\\\"\",\r\n            \"systemId\": \"5b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43155\",\r\n            \"name\": \"Tortosa\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjExMTg0NDEwNzAxNzUwNzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"5c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43156\",\r\n            \"name\": \"Ulldecona\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE3ODU2Nzk5NzU5MTgxMTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"5d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43157\",\r\n            \"name\": \"Ulldemolins\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAxMDk0NjY5NDYzODU1NDgwMTswMDsn\\\"\",\r\n            \"systemId\": \"5e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43158\",\r\n            \"name\": \"Vallclara\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgzODU3NDAwOTEwNjE3Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"5f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43159\",\r\n            \"name\": \"Vallfogona de Riucorb\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.877Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk1MTc4MDI0NTM4MzYwNDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"605ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43160\",\r\n            \"name\": \"Vallmoll\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg5ODE4ODUzNzY2ODM0MTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"615ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43161\",\r\n            \"name\": \"Valls\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI5NTE5NzY3MjEzMzM2Nzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"625ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43162\",\r\n            \"name\": \"Vandellòs i l'Hospitalet de l'Infant\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUzNTgzMDQ5MDk3MTcxMjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"635ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43163\",\r\n            \"name\": \"Vendrell, El\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc4MDk5MzE4MTk1OTc0MjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"645ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43164\",\r\n            \"name\": \"Vespella de Gaià\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY0ODkyODYyNDAyMzk5NzE3MTswMDsn\\\"\",\r\n            \"systemId\": \"655ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43165\",\r\n            \"name\": \"Vilabella\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg4NjQ3MDQ5NjUxMzAwNjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"665ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43175\",\r\n            \"name\": \"Vilalba dels Arcs\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTczNTExMzAzOTUyMDA1NzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"675ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43166\",\r\n            \"name\": \"Vilallonga del Camp\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI4NDkwODczMTk1ODgzNDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"685ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43168\",\r\n            \"name\": \"Vilanova de Prades\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU4NDQ3MTcyMzkxMTQ3MDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"695ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43167\",\r\n            \"name\": \"Vilanova d'Escornalbou\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.88Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE5NTkyOTUxNTYzNjE4ODYyMTswMDsn\\\"\",\r\n            \"systemId\": \"6a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43169\",\r\n            \"name\": \"Vilaplana\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAzODQ5MTc1MjM3MjY0NDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"6b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43170\",\r\n            \"name\": \"Vila-rodona\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg4ODY5MjE4MjU4Mzc2MDc2MTswMDsn\\\"\",\r\n            \"systemId\": \"6c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43171\",\r\n            \"name\": \"Vila-seca\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTI4NzYxNzI4MTA2OTg0NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"6d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43172\",\r\n            \"name\": \"Vilaverd\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM0NzA2OTQ0NzI2NDgwNjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"6e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43173\",\r\n            \"name\": \"Vilella Alta, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIxOTI5NTU3MTk1NTY4NTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"6f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43174\",\r\n            \"name\": \"Vilella Baixa, La\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg5MDczOTkwMTMxNDc1NzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"705ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43176\",\r\n            \"name\": \"Vimbodí i Poblet\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI3MDg5OTI1ODEwNzMwNzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"715ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43177\",\r\n            \"name\": \"Vinebre\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY0MTA3Njk2Nzc5NzMwNTczMTswMDsn\\\"\",\r\n            \"systemId\": \"725ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43178\",\r\n            \"name\": \"Vinyols i els Arcs\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.883Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ3MjQxNjU3MDU5MzU2ODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"735ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"43052\",\r\n            \"name\": \"Xerta\",\r\n            \"provinceNo\": 43,\r\n            \"autonomousCommunityNo\": 9,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.847Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUyMjAyNDk5ODc1NzQxNzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"745ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44001\",\r\n            \"name\": \"Ababuj\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkxNTkzMjU4Mzk1MDU0OTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"755ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44002\",\r\n            \"name\": \"Abejuela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE5NzkyMzA1OTA3NDM2OTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"765ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44003\",\r\n            \"name\": \"Aguatón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU1NTM1ODcyNDg0NzI2MTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"775ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44004\",\r\n            \"name\": \"Aguaviva\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzczMTc0MzYzMTk0NTM1MzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"785ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44005\",\r\n            \"name\": \"Aguilar del Alfambra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ1NzkwNzYwNjExMDkwNzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"795ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44006\",\r\n            \"name\": \"Alacón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.887Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk1MjU5MjY2NTU1MTM3MzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44007\",\r\n            \"name\": \"Alba\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQyNjEzMTA4OTI2MDc5NjMyMTswMDsn\\\"\",\r\n            \"systemId\": \"7b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44008\",\r\n            \"name\": \"Albalate del Arzobispo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA1ODM0NTU2MDg5NzY0NjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"7c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44009\",\r\n            \"name\": \"Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ3MzQzNTIxMjA5MDc1OTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"7d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44010\",\r\n            \"name\": \"Albentosa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5NjY4NzA0MjI1NzA5MTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"7e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44011\",\r\n            \"name\": \"Alcaine\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODIxNDQ0OTE0MTgyNTg4NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"7f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44012\",\r\n            \"name\": \"Alcalá de la Selva\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgyNDE2NTUxMDQ0NDI4MjYzMTswMDsn\\\"\",\r\n            \"systemId\": \"805ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44013\",\r\n            \"name\": \"Alcañiz\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYyNTQ3Mzk2MTI5NDkyNTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"815ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44014\",\r\n            \"name\": \"Alcorisa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIzODg1MTU3NzgyMDU0NzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"825ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44016\",\r\n            \"name\": \"Alfambra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY1MTc0MTE5MTQwOTIzNzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"835ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44017\",\r\n            \"name\": \"Aliaga\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.89Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIwMjA2MDg5NTYzNzEyMTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"845ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44021\",\r\n            \"name\": \"Allepuz\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg1MTcwODU5MjcxNzcyNzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"855ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44022\",\r\n            \"name\": \"Alloza\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAxMjk5NzgzMDkzNzQxMTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"865ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44023\",\r\n            \"name\": \"Allueva\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMzNjU2MTAwMTI1MzEwMzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"875ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44018\",\r\n            \"name\": \"Almohaja\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA5NjgwODI2NTY2MjQ2OTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"885ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44019\",\r\n            \"name\": \"Alobras\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAyOTgwMzY0MTc0OTkwNjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"895ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44020\",\r\n            \"name\": \"Alpeñés\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY5NDkzNTEyODg0MzY3NDc5MTswMDsn\\\"\",\r\n            \"systemId\": \"8a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44024\",\r\n            \"name\": \"Anadón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODczNzQ4NjM3ODY4ODc3MTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"8b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44025\",\r\n            \"name\": \"Andorra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU3NjQ0MDI4MTM2MTc2ODA1MTswMDsn\\\"\",\r\n            \"systemId\": \"8c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44026\",\r\n            \"name\": \"Arcos de las Salinas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDIxNDI5MTkxOTg2NTA4NDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"8d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44027\",\r\n            \"name\": \"Arens de Lledó\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.893Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTIxNTA5MzU1MjY1ODAyMTczMTswMDsn\\\"\",\r\n            \"systemId\": \"8e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44028\",\r\n            \"name\": \"Argente\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg0NDI4MTU1OTQwMTE5MjgyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44029\",\r\n            \"name\": \"Ariño\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY3MzkwODUzODIyOTkxMzAyMTswMDsn\\\"\",\r\n            \"systemId\": \"905ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44031\",\r\n            \"name\": \"Azaila\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE2NDQ0NTU1OTEwNjUxNzg3MTswMDsn\\\"\",\r\n            \"systemId\": \"915ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44032\",\r\n            \"name\": \"Bádenas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQyNjYzNTEzMDYxMDkyNzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"925ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44033\",\r\n            \"name\": \"Báguena\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQzMDMzNTc2NjU0ODIwNTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"935ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44034\",\r\n            \"name\": \"Bañón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI0NzM4MDczODc2MjgzMzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"945ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44035\",\r\n            \"name\": \"Barrachina\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM5Nzk2MzgwODIzNTEwNTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"955ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44036\",\r\n            \"name\": \"Bea\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgxMjY5NDQ1Mjg3Mzg1MTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"965ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44037\",\r\n            \"name\": \"Beceite\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE0NjIwODI1MTA0NjEwNTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"975ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44039\",\r\n            \"name\": \"Bello\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk4OTI2MjkyMjY2MTA0NDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"985ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44038\",\r\n            \"name\": \"Belmonte de San José\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEwNDA0Mjg0MzI5Nzg3OTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"995ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44040\",\r\n            \"name\": \"Berge\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjExMzc0MzE1MzkyODkzMDQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"9a5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44041\",\r\n            \"name\": \"Bezas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.897Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc4NDg1MDkyNzgxNjIzNDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"9b5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44042\",\r\n            \"name\": \"Blancas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgxMzc3MTg4NzgwMzk2MzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9c5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44043\",\r\n            \"name\": \"Blesa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjk5Mzg3MzQ4OTk0ODA4NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"9d5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44044\",\r\n            \"name\": \"Bordón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMzMDkwOTUzNDQ2MTIzNTczMTswMDsn\\\"\",\r\n            \"systemId\": \"9e5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44045\",\r\n            \"name\": \"Bronchales\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQyODE2ODczMjczMDE4NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9f5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44046\",\r\n            \"name\": \"Bueña\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzcxNTYwNzAwNjIxNDI4NDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"a05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44047\",\r\n            \"name\": \"Burbáguena\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzcyNzQ4NjA2OTE3MjE1OTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"a15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44048\",\r\n            \"name\": \"Cabra de Mora\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQyNjM4MjA2MTUwODE0NTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"a25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44049\",\r\n            \"name\": \"Calaceite\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEzMjY0NzM0NTEyNjU1OTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"a35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44050\",\r\n            \"name\": \"Calamocha\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYyNDY1ODgwOTMxNDg4NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"a45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44051\",\r\n            \"name\": \"Calanda\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.9Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDMyOTg0NzUzMTM5NjgzNDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"a55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44052\",\r\n            \"name\": \"Calomarde\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc2MzY5NDE2MjQ5NTE5MTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"a65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44053\",\r\n            \"name\": \"Camañas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI4NTAzNzgzMDkxOTU1MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"a75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44054\",\r\n            \"name\": \"Camarena de la Sierra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM5MjI4NzMyNDkwNDQ3NjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"a85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44055\",\r\n            \"name\": \"Camarillas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA2MDM0MjU0NTUwNjYyMDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"a95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44056\",\r\n            \"name\": \"Caminreal\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQwODA1NTYwNzgxMjYxNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44059\",\r\n            \"name\": \"Cantavieja\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDcwNzkyNjgzNjY5NDQxMjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"ab5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44060\",\r\n            \"name\": \"Cañada de Benatanduz\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU1NjIzMTg0OTY2ODU2MzMyMTswMDsn\\\"\",\r\n            \"systemId\": \"ac5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44061\",\r\n            \"name\": \"Cañada de Verich, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg0MDg3NjcxNjk3OTkwODE4MTswMDsn\\\"\",\r\n            \"systemId\": \"ad5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44062\",\r\n            \"name\": \"Cañada Vellida\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTcwMzQzMDM2MTY5MTg0MTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"ae5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44063\",\r\n            \"name\": \"Cañizar del Olivar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.903Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg0ODExNjY1NjY0ODU4NzAzMTswMDsn\\\"\",\r\n            \"systemId\": \"af5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44064\",\r\n            \"name\": \"Cascante del Río\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ2MDM0MDU1MTk3NjAwMzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"b05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44065\",\r\n            \"name\": \"Castejón de Tornos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk1OTkxNDY0MjkyOTUyNTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"b15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44066\",\r\n            \"name\": \"Castel de Cabra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE3MzAwMTAxNDM1NTkzODQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"b25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44070\",\r\n            \"name\": \"Castellar, El\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEzNTE5MDY0NTM5MTkyNjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"b35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44071\",\r\n            \"name\": \"Castellote\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ0NDE5NjQ2MTQwMjg5MDk5MTswMDsn\\\"\",\r\n            \"systemId\": \"b45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44067\",\r\n            \"name\": \"Castelnou\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU1MDkyNzg1NjExODMwMjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"b55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44068\",\r\n            \"name\": \"Castelserás\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA5MDcxODQ3MjUxOTE5MDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"b65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44074\",\r\n            \"name\": \"Cedrillas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM1MzcwNDM2MDQ5ODEwMTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"b75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44075\",\r\n            \"name\": \"Celadas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA0MjEwODA0NTQwMDQ4MjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"b85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44076\",\r\n            \"name\": \"Cella\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMwODU0MDIwNjQ3MDExNDQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"b95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44077\",\r\n            \"name\": \"Cerollera, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQxNDk0MDM1NDM2MDc0NTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"ba5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44080\",\r\n            \"name\": \"Codoñera, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE0NzExMzM4ODY2MDIzMzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"bb5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44082\",\r\n            \"name\": \"Corbalán\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg1NjkwMjg3NjYxMzc2NjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"bc5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44084\",\r\n            \"name\": \"Cortes de Aragón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAyOTE0MjU5MzQ0MzYwMjE1MTswMDsn\\\"\",\r\n            \"systemId\": \"bd5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44085\",\r\n            \"name\": \"Cosa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.907Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU0MTAxNzYyOTg1MTAxMTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"be5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44086\",\r\n            \"name\": \"Cretas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYxMTEwNTA5NDYwMzg2MTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"bf5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44087\",\r\n            \"name\": \"Crivillén\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM4NDA5MDc1MjIxODgxODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"c05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44088\",\r\n            \"name\": \"Cuba, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU0MzUzMzU3NzE5ODU1NTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"c15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44089\",\r\n            \"name\": \"Cubla\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTAzMTE5MTE1NTI4NTQ3NTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"c25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44090\",\r\n            \"name\": \"Cucalón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA2NDYwOTU2NjA1NDk3MTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"c35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44092\",\r\n            \"name\": \"Cuervo, El\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDMwNTk1NTAzNTc4MTcxNTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"c45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44093\",\r\n            \"name\": \"Cuevas de Almudén\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU1NDkxNjExNTMyODA0ODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"c55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44094\",\r\n            \"name\": \"Cuevas Labradas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTYyODU4NDQ4MjYyOTIxOTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"c65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44096\",\r\n            \"name\": \"Ejulve\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY5ODIwMzI1MDYzMDU0NDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"c75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44097\",\r\n            \"name\": \"Escorihuela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.91Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgzMTc2MDE1NTcwMDA1MDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"c85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44099\",\r\n            \"name\": \"Escucha\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE4MDA5NjI1ODY5NDU0MDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"c95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44100\",\r\n            \"name\": \"Estercuel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc1Mjk0ODQ5ODI1Nzk0OTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"ca5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44101\",\r\n            \"name\": \"Ferreruela de Huerva\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ4Mjc3NDE5MjMzNzIwNjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"cb5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44102\",\r\n            \"name\": \"Fonfría\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM3NDU2NTk1MTY3NDUxNTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"cc5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44103\",\r\n            \"name\": \"Formiche Alto\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAwNzg4NzkwMjk4MTY0MDk0MTswMDsn\\\"\",\r\n            \"systemId\": \"cd5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44105\",\r\n            \"name\": \"Fórnoles\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI0MTg5MDAwMjY0NjUyMjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"ce5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44106\",\r\n            \"name\": \"Fortanete\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY3ODA3MDI3ODY4ODQ0OTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"cf5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44107\",\r\n            \"name\": \"Foz-Calanda\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY1ODI0NDE5OTA5ODQ5NTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"d05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44108\",\r\n            \"name\": \"Fresneda, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYyNzUzMDk3MDA2NDI3ODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44109\",\r\n            \"name\": \"Frías de Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.913Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIxMDQ5MjM5MTk0NzYzNjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"d25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44110\",\r\n            \"name\": \"Fuenferrada\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwMzY2NjUzOTMwNjkxOTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"d35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44111\",\r\n            \"name\": \"Fuentes Calientes\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk1MDgwNjUyNzcwNTI2NDExMTswMDsn\\\"\",\r\n            \"systemId\": \"d45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44112\",\r\n            \"name\": \"Fuentes Claras\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzExNDQyMDkzNTAxOTI1NzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44113\",\r\n            \"name\": \"Fuentes de Rubielos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjgxMjM0Mzg0MDUzNzMyOTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"d65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44114\",\r\n            \"name\": \"Fuentespalda\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQxNDkyODc1ODUwODI3OTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"d75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44115\",\r\n            \"name\": \"Galve\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk5NzE3ODYyMDAwMDg5OTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"d85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44116\",\r\n            \"name\": \"Gargallo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQ2MzQ5NTM2NDg1NDU1NzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"d95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44117\",\r\n            \"name\": \"Gea de Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQyNDkyMzU5MDQ1NDEwNTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"da5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44118\",\r\n            \"name\": \"Ginebrosa, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU3MDU4ODg4NTg5OTI1NTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"db5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44119\",\r\n            \"name\": \"Griegos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU2ODg1MDczODYyMTIyODc3MTswMDsn\\\"\",\r\n            \"systemId\": \"dc5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44120\",\r\n            \"name\": \"Guadalaviar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIxNDAyMzQwMDcwODg3Njg0MTswMDsn\\\"\",\r\n            \"systemId\": \"dd5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44121\",\r\n            \"name\": \"Gúdar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY5NTg2MDkyODA4NjAzMDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"de5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44122\",\r\n            \"name\": \"Híjar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.917Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM0MTA3NTkzNjU3MzgxNjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"df5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44123\",\r\n            \"name\": \"Hinojosa de Jarque\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY2MDU0MTY2ODAxMDgzNTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"e05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44124\",\r\n            \"name\": \"Hoz de la Vieja, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTUyNDY2MjM0MDMyMTY3ODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"e15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44125\",\r\n            \"name\": \"Huesa del Común\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDcwNzg1NDM2NDQ0OTA0MTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"e25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44126\",\r\n            \"name\": \"Iglesuela del Cid, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEwOTI3Nzg1NTQyNTU5MTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"e35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44127\",\r\n            \"name\": \"Jabaloyas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjIyNjcyMzM0MTkzNDkzMDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"e45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44128\",\r\n            \"name\": \"Jarque de la Val\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQxMTIyNDkzNzkwNTI5Mjk3MTswMDsn\\\"\",\r\n            \"systemId\": \"e55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44129\",\r\n            \"name\": \"Jatiel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg2Mzg2MTg3MTUwODk5MDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"e65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44130\",\r\n            \"name\": \"Jorcas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk0OTE2MDY1ODIzNjgwNTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"e75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44131\",\r\n            \"name\": \"Josa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.92Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU0NzA0NDU3MzcwOTA4Nzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"e85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44132\",\r\n            \"name\": \"Lagueruela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIxODUxMTM5ODE3NDMwNTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"e95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44133\",\r\n            \"name\": \"Lanzuela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc2ODU5NDkyNDYyMzExMzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"ea5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44135\",\r\n            \"name\": \"Libros\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkyOTY2NzM0NzYwNDQwMjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44136\",\r\n            \"name\": \"Lidón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzM1NTE4NjAzMTk3ODk5MDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"ec5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44137\",\r\n            \"name\": \"Linares de Mora\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU0MDAyODA0MDAyMzI1NzczMTswMDsn\\\"\",\r\n            \"systemId\": \"ed5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44141\",\r\n            \"name\": \"Lledó\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI3MTYzMzE5NzU2MDUzMjA1MTswMDsn\\\"\",\r\n            \"systemId\": \"ee5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44138\",\r\n            \"name\": \"Loscos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA1NDk4NzAyODgxOTk5OTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"ef5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44142\",\r\n            \"name\": \"Maicas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY4Mjc4MjcwNzUwODAxODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"f05ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44143\",\r\n            \"name\": \"Manzanera\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.923Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkyMjYxMDEyMDYwOTUxMDczMTswMDsn\\\"\",\r\n            \"systemId\": \"f15ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44144\",\r\n            \"name\": \"Martín del Río\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMwNDE1MzIxODA3NTM3MjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"f25ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44145\",\r\n            \"name\": \"Mas de las Matas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE0MjQ2NjEzOTUwMzc5Nzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"f35ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44146\",\r\n            \"name\": \"Mata de los Olmos, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE1MjU2NjI3Nzg5MDY2NDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"f45ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44147\",\r\n            \"name\": \"Mazaleón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA5ODg4NjI5NDE0NjY4MDM0MTswMDsn\\\"\",\r\n            \"systemId\": \"f55ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44148\",\r\n            \"name\": \"Mezquita de Jarque\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYwNzU4MzMxODc3NDY3NDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"f65ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44149\",\r\n            \"name\": \"Mirambel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEzNTQ1MTAyNTc5MDQzNDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"f75ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44150\",\r\n            \"name\": \"Miravete de la Sierra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5MTgyNjU4Mjg0ODE1MTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"f85ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44151\",\r\n            \"name\": \"Molinos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIyMDkyNTkwMDM0NjQ4NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"f95ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44152\",\r\n            \"name\": \"Monforte de Moyuela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYzNDUzNjgxMjU5NDkzNzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"fa5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44153\",\r\n            \"name\": \"Monreal del Campo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgwMTU4ODg0MTU1MzU1MzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"fb5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44154\",\r\n            \"name\": \"Monroyo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDcxMjkxNDg5MzU1ODYyMDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44155\",\r\n            \"name\": \"Montalbán\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkxMjU4Njk2MTUwNjY2MTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"fd5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44156\",\r\n            \"name\": \"Monteagudo del Castillo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.927Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIxOTYzMDk3NzIyNjkwNjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"fe5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44157\",\r\n            \"name\": \"Monterde de Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA2NzU5OTM0MjI5MTUwMDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"ff5ee034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44158\",\r\n            \"name\": \"Mora de Rubielos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDkyNzA5MDY3NzA0MDMzNzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"005fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44159\",\r\n            \"name\": \"Moscardón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIxNzY2OTg3NTAzNjc5NTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"015fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44160\",\r\n            \"name\": \"Mosqueruela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY2MDAxNDkxOTY2NDc0NDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"025fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44161\",\r\n            \"name\": \"Muniesa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA5ODU3NjgzMTY4NDM1OTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"035fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44163\",\r\n            \"name\": \"Noguera de Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg5NTU1NTY4NTAxODc1NzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"045fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44164\",\r\n            \"name\": \"Nogueras\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM5NzU4Njg3NDUxODg4NDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"055fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44165\",\r\n            \"name\": \"Nogueruelas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM5ODcyNDg4Mjc2OTgyNTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"065fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44167\",\r\n            \"name\": \"Obón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc5MTY5NzM5MTc0MTEwMjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"075fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44168\",\r\n            \"name\": \"Odón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.93Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM5NTA0NTU3ODA0NjE0MjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"085fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44169\",\r\n            \"name\": \"Ojos Negros\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE0MDYwMjQyMjI5ODUxMDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"095fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44171\",\r\n            \"name\": \"Olba\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjMxODk0NTcyNzM1MzIyMTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44172\",\r\n            \"name\": \"Oliete\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjcxNzc3MTU0NTA0NjYyNDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"0b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44173\",\r\n            \"name\": \"Olmos, Los\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ1NDY3ODU1NTQ2OTQwMjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44174\",\r\n            \"name\": \"Orihuela del Tremedal\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY2NTk5Nzg4MTE5ODAzMzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"0d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44175\",\r\n            \"name\": \"Orrios\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg1MDM4NjYxMDE2NDA4NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"0e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44176\",\r\n            \"name\": \"Palomar de Arroyos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA3NDI3MTI4MDkxMzU1MjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"0f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44177\",\r\n            \"name\": \"Pancrudo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI5NjAzNjU1NjIzMTQ3MDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"105fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44178\",\r\n            \"name\": \"Parras de Castellote, Las\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.933Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI2NDczMTk3NDUxNDA5MzExMTswMDsn\\\"\",\r\n            \"systemId\": \"115fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44179\",\r\n            \"name\": \"Peñarroya de Tastavins\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE3Njg2MTc2ODI5MTk0NTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"125fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44180\",\r\n            \"name\": \"Peracense\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODExNjMwNTkyODgxODA0MTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"135fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44181\",\r\n            \"name\": \"Peralejos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcwNDY4Nzc0NTYyMDcxNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"145fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44182\",\r\n            \"name\": \"Perales del Alfambra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk1MjkzOTQxNTQ0MTI3NDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"155fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44183\",\r\n            \"name\": \"Pitarque\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcxODY2NjI5NDUxODQ0NjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"165fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44184\",\r\n            \"name\": \"Plou\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU1NjA4MjAxNTQ2MzI2MDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"175fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44185\",\r\n            \"name\": \"Pobo, El\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk3MjYzNDI5OTAyNTA2NzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"185fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44187\",\r\n            \"name\": \"Portellada, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA3MjgwMjAyODg5MDA0MDg1MTswMDsn\\\"\",\r\n            \"systemId\": \"195fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44189\",\r\n            \"name\": \"Pozondón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU5Njk3NTE2NzEyNjMwNzYwMTswMDsn\\\"\",\r\n            \"systemId\": \"1a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44190\",\r\n            \"name\": \"Pozuel del Campo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM4Mzg2ODM3ODYzMzU2Mzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"1b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44191\",\r\n            \"name\": \"Puebla de Híjar, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ0MzM1NzQyMzkyMDg1NTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"1c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44192\",\r\n            \"name\": \"Puebla de Valverde, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ2NDcyNDA2NzIzMTY4MjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"1d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44193\",\r\n            \"name\": \"Puertomingalvo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM3MzU2MzQzOTM2OTk3NzY5MTswMDsn\\\"\",\r\n            \"systemId\": \"1e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44194\",\r\n            \"name\": \"Ráfales\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM5NTI4Njg4Mzc5MDU0NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"1f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44195\",\r\n            \"name\": \"Rillo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM2NDM1NTM3ODMxOTk2NjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"205fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44196\",\r\n            \"name\": \"Riodeva\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.937Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQ0NTk2MjYxNzIxMTcwODkzMTswMDsn\\\"\",\r\n            \"systemId\": \"215fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44197\",\r\n            \"name\": \"Ródenas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYyNjM3NjE4MjkwODk0ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"225fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44198\",\r\n            \"name\": \"Royuela\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI2OTA2OTY3NjU4MDE2MjA1MTswMDsn\\\"\",\r\n            \"systemId\": \"235fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44199\",\r\n            \"name\": \"Rubiales\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUwMTMwNTYwNjExMjcwNDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"245fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44200\",\r\n            \"name\": \"Rubielos de la Cérida\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAyNzA5NjY1MjUzMzg3NzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"255fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44201\",\r\n            \"name\": \"Rubielos de Mora\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzgxMjY2NDU5MjI4NTA2MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"265fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44203\",\r\n            \"name\": \"Salcedillo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU4MTQyOTU5MzI5NTA3MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"275fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44204\",\r\n            \"name\": \"Saldón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQxMTY0NTYyNDg3NTk0MDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"285fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44205\",\r\n            \"name\": \"Samper de Calanda\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYzMTEwNDk5NjE1Mjc4NjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"295fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44206\",\r\n            \"name\": \"San Agustín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIxNzQ5NjE5MTc3MDE3MTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"2a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44207\",\r\n            \"name\": \"San Martín del Río\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMyMjk5NzQ1Nzg2NDMwMDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"2b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44208\",\r\n            \"name\": \"Santa Cruz de Nogueras\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA0NDA0MTQwODY0OTI5OTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"2c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44209\",\r\n            \"name\": \"Santa Eulalia\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ5MjE2ODE0ODE4ODA3Mjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"2d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44210\",\r\n            \"name\": \"Sarrión\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYwMTI4MTUxNTM0NDczOTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"2e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44211\",\r\n            \"name\": \"Segura de los Baños\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.94Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxNzMzMTYzOTM5NjY3NjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"2f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44212\",\r\n            \"name\": \"Seno\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgzMzAyMDEwMjU2MTk3NDA1MTswMDsn\\\"\",\r\n            \"systemId\": \"305fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44213\",\r\n            \"name\": \"Singra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA0MTYyMDk0Njg5NTQxNDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"315fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44215\",\r\n            \"name\": \"Terriente\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUyMDg5OTg3NDExMjg1MzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"325fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44216\",\r\n            \"name\": \"Teruel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzcwOTg5MDIyMjk1Mjk0NjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"335fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44217\",\r\n            \"name\": \"Toril y Masegoso\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDUzMDUwMzU5MjA1MjUwNjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"345fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44218\",\r\n            \"name\": \"Tormón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3MzQ0MDM5OTA5OTUyMzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"355fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44219\",\r\n            \"name\": \"Tornos\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc1NzczNjI5MDIyNjYyODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"365fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44220\",\r\n            \"name\": \"Torralba de los Sisones\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg3MDUyNzkwODU3Mjk4Nzc3MTswMDsn\\\"\",\r\n            \"systemId\": \"375fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44223\",\r\n            \"name\": \"Torre de Arcas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY2MDc2MTE5MDM5ODU3MTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"385fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44224\",\r\n            \"name\": \"Torre de las Arcas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjEzODg4MzA2MjgyMTQyMDIwMTswMDsn\\\"\",\r\n            \"systemId\": \"395fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44225\",\r\n            \"name\": \"Torre del Compte\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE1MzQ0NzQ2Njk1NTc4MjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"3a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44227\",\r\n            \"name\": \"Torre los Negros\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ4OTExNzc3ODAxMjQyNTM0MTswMDsn\\\"\",\r\n            \"systemId\": \"3b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44221\",\r\n            \"name\": \"Torrecilla de Alcañiz\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.943Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUyNjkxODI3OTQ4MjA5MzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"3c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44222\",\r\n            \"name\": \"Torrecilla del Rebollar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY0ODQxMDY2MTI0NjUzOTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44226\",\r\n            \"name\": \"Torrelacárcel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk2NDUyMDQ4OTA4NDYyNTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"3e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44228\",\r\n            \"name\": \"Torremocha de Jiloca\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE0NTA3OTE5ODc5OTY5NDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44229\",\r\n            \"name\": \"Torres de Albarracín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc1Mjg2MDA2NDE5MzkxMDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"405fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44230\",\r\n            \"name\": \"Torrevelilla\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk0MTE3OTE2MTE5MDY3MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"415fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44231\",\r\n            \"name\": \"Torrijas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjg4NjA0NjA2MzI1MTQ2MTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"425fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44232\",\r\n            \"name\": \"Torrijo del Campo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA1NzkwNDYzMTk3MzMyMjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"435fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44234\",\r\n            \"name\": \"Tramacastiel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAxOTI4MjMxMTYxNTIyMTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"445fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44235\",\r\n            \"name\": \"Tramacastilla\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.947Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDExMzc5MTAzNjUwMDQxNzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"455fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44236\",\r\n            \"name\": \"Tronchón\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYzNTI1NDc0ODY0MjM4NTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"465fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44237\",\r\n            \"name\": \"Urrea de Gaén\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzczODY2Mzc2MDA2MzQzMjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"475fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44238\",\r\n            \"name\": \"Utrillas\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc5OTgyMzc5ODY2MzY0NDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"485fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44239\",\r\n            \"name\": \"Valacloche\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg2MzQzMzIwODUzODc0MDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"495fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44240\",\r\n            \"name\": \"Valbona\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM2NTkyMzI4MjQ2MDQzNTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"4a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44241\",\r\n            \"name\": \"Valdealgorfa\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA4NjQ0MzMyNzI4NTg4ODk1MTswMDsn\\\"\",\r\n            \"systemId\": \"4b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44243\",\r\n            \"name\": \"Valdecuenca\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE2NzIzNzI3MDQ4NjMzODU3MTswMDsn\\\"\",\r\n            \"systemId\": \"4c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44244\",\r\n            \"name\": \"Valdelinares\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU3MDUyMjU5NzYxODUxMzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"4d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44245\",\r\n            \"name\": \"Valdeltormo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.95Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUzNjQwNjIxODAwNjU0NDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"4e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44246\",\r\n            \"name\": \"Valderrobres\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY3MDMwMzI4MzUzNjczMTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"4f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44247\",\r\n            \"name\": \"Valjunquera\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI3ODYyMDA2OTUxNzU4OTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"505fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44249\",\r\n            \"name\": \"Vallecillo, El\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAwMDE4MjgyOTY0MTg0NjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"515fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44250\",\r\n            \"name\": \"Veguillas de la Sierra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM1NTEwNTc1MDEwMjg3MDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"525fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44251\",\r\n            \"name\": \"Villafranca del Campo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAxMTI1OTMwNDM4MTE1Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"535fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44252\",\r\n            \"name\": \"Villahermosa del Campo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg2ODkyMzY5MjM2NTU5NzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"545fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44256\",\r\n            \"name\": \"Villanueva del Rebollar de la Sierra\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEyMDA0NjE2NjQyMzA5OTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"555fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44257\",\r\n            \"name\": \"Villar del Cobo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY4OTU1NTQyNDI4ODc2NTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"565fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44258\",\r\n            \"name\": \"Villar del Salz\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQwNDc5MTU2NzA4NTYxNTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"575fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44260\",\r\n            \"name\": \"Villarluengo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.953Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMwNTY0NjI3MTg5MDY0MzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"585fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44261\",\r\n            \"name\": \"Villarquemado\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc0MzU2Nzk4MTk4MTg3MjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"595fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44262\",\r\n            \"name\": \"Villarroya de los Pinares\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk5NDgwMzAyOTMzNDA0MjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"5a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44263\",\r\n            \"name\": \"Villastar\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI3NTA3OTM2MTEyNDE4Mzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"5b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44264\",\r\n            \"name\": \"Villel\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAxMzgyOTI2ODM3MjA2OTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"5c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44265\",\r\n            \"name\": \"Vinaceite\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYyNDIyMTA1MzY2NzQ0NTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"5d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44266\",\r\n            \"name\": \"Visiedo\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY1NjcwOTE5NzE5MjE3Nzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"5e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44267\",\r\n            \"name\": \"Vivel del Río Martín\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjMwNjkwNjA5Mjk3MzI4MjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"5f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"44268\",\r\n            \"name\": \"Zoma, La\",\r\n            \"provinceNo\": 44,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU0ODk0MjUwNjg0MjQ1NDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"605fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45001\",\r\n            \"name\": \"Ajofrín\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkxNDEyMDA1NTgyOTU5NTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"615fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45002\",\r\n            \"name\": \"Alameda de la Sagra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ4MjYwNzIzMDkyOTM3NzAyMTswMDsn\\\"\",\r\n            \"systemId\": \"625fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45003\",\r\n            \"name\": \"Albarreal de Tajo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQxNzg5ODEyODg5NDk4MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"635fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45004\",\r\n            \"name\": \"Alcabón\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI3ODU2ODk1MTYyMzQxNzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"645fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45005\",\r\n            \"name\": \"Alcañizo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk1ODU4MzkwNjgyNDYyMDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"655fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45006\",\r\n            \"name\": \"Alcaudete de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ1NDU2NzAwMzM2NjEwMjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"665fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45007\",\r\n            \"name\": \"Alcolea de Tajo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.957Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY3NTQyNDIzODc2NzU5NTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"675fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45008\",\r\n            \"name\": \"Aldea en Cabo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU0MTAxOTY1OTgxMzQ5MTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"685fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45009\",\r\n            \"name\": \"Aldeanueva de Barbarroya\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDIwODQ5NjU3Nzk2MzgxOTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"695fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45010\",\r\n            \"name\": \"Aldeanueva de San Bartolomé\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU4MTA0MDQyNDc2NDU0MzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"6a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45011\",\r\n            \"name\": \"Almendral de la Cañada\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI3NTY5MzQ4ODY5OTk1MTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"6b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45012\",\r\n            \"name\": \"Almonacid de Toledo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcyOTczMzI4MTEwMTc2NjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"6c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45013\",\r\n            \"name\": \"Almorox\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAxODY5MzY0Mzg5ODMzNTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"6d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45014\",\r\n            \"name\": \"Añover de Tajo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMyMjI2MzE4MjUzODM1MzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"6e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45015\",\r\n            \"name\": \"Arcicóllar\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU2OTcyNTM3MTU5MjE3NjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"6f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45016\",\r\n            \"name\": \"Argés\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.96Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkyNjg3MjgzMTcwMDQ2OTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"705fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45017\",\r\n            \"name\": \"Azután\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQzNjE1MDcyMDMzMDYwNTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"715fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45018\",\r\n            \"name\": \"Barcience\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY2NTc2MzEzNjIwODE1MjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"725fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45019\",\r\n            \"name\": \"Bargas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkxMTM4NTk1Mjg1MDM5NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"735fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45020\",\r\n            \"name\": \"Belvís de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY3MTQ5NjkwMTk4NDM4MjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"745fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45021\",\r\n            \"name\": \"Borox\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUyNjY1NzA2MTg0NzQwMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"755fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45022\",\r\n            \"name\": \"Buenaventura\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE1NjgwMTY3MzI1OTcxMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"765fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45023\",\r\n            \"name\": \"Burguillos de Toledo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgwMzE3MTA2MTE3MzUzMDQwMTswMDsn\\\"\",\r\n            \"systemId\": \"775fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45024\",\r\n            \"name\": \"Burujón\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM4MjI0NDg2OTMzNjE2MTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"785fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45025\",\r\n            \"name\": \"Cabañas de la Sagra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY4NzkwNDY0MzU5NTA1NjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"795fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45026\",\r\n            \"name\": \"Cabañas de Yepes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.963Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY5MzA0ODYxODA3NzU4MTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"7a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45027\",\r\n            \"name\": \"Cabezamesada\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk5NjkzMTg4MDAxMjI1OTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"7b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45028\",\r\n            \"name\": \"Calera y Chozas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ1MDAwOTQzMDY4Njg1NzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"7c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45029\",\r\n            \"name\": \"Caleruela\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAyNDk4OTAzMjAwNzMwODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"7d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45030\",\r\n            \"name\": \"Calzada de Oropesa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgyNzAwMTI1OTk3MzUwOTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"7e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45031\",\r\n            \"name\": \"Camarena\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAzMjgwODEyNDU5MDE0OTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"7f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45032\",\r\n            \"name\": \"Camarenilla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYwNjkxNTU2Mzk1MDMwMDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"805fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45033\",\r\n            \"name\": \"Campillo de la Jara, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA0MTg3MjY5MTYzMTI5MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"815fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45034\",\r\n            \"name\": \"Camuñas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE5MTU5NDU1MDE4NzEzMTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"825fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45035\",\r\n            \"name\": \"Cardiel de los Montes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzUwNDI1OTU4NzMzMjk5NzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"835fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45036\",\r\n            \"name\": \"Carmena\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE2OTI1NjU0NDQxMzc3OTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"845fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45037\",\r\n            \"name\": \"Carpio de Tajo, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4MTU2NTkyMjg0NTMzNzM0MTswMDsn\\\"\",\r\n            \"systemId\": \"855fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45038\",\r\n            \"name\": \"Carranque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgxNjU0MTYxMDg1NTE5MzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"865fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45039\",\r\n            \"name\": \"Carriches\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4ODI1NTAxNTQwODg3NTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"875fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45040\",\r\n            \"name\": \"Casar de Escalona, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.967Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTExOTMzOTUxNjA3OTc5MDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"885fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45041\",\r\n            \"name\": \"Casarrubios del Monte\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEzNzEyMjYwNzU0NjY1OTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"895fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45042\",\r\n            \"name\": \"Casasbuenas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY4OTkzMDY3NjEyOTI1Mzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"8a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45043\",\r\n            \"name\": \"Castillo de Bayuela\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAxMjgxNjU1NDM4NjM4MTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"8b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45045\",\r\n            \"name\": \"Cazalegas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc2MDA1MTQ4NzIwOTUxOTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"8c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45046\",\r\n            \"name\": \"Cebolla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc2ODYyNTQyNDQ2NDMyMTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"8d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45047\",\r\n            \"name\": \"Cedillo del Condado\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE5ODYwOTU5Mjg3MDg5MTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"8e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45048\",\r\n            \"name\": \"Cerralbos, Los\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ1OTY3MTU1Njg1MDAyODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45049\",\r\n            \"name\": \"Cervera de los Montes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA3NzIwOTU3NTMzODQyMTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"905fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45056\",\r\n            \"name\": \"Chozas de Canales\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk5NjMzNzc3NTU1MDQyODc2MTswMDsn\\\"\",\r\n            \"systemId\": \"915fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45057\",\r\n            \"name\": \"Chueca\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3MTAyOTc3Mzc4NzA4MDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"925fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45050\",\r\n            \"name\": \"Ciruelos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUxOTQzMDE5ODk5NTI0NTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"935fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45051\",\r\n            \"name\": \"Cobeja\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc4MTY3MjcwMzEzODI0NDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"945fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45052\",\r\n            \"name\": \"Cobisa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY4Njg3OTUxNjE2NzI3OTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"955fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45053\",\r\n            \"name\": \"Consuegra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk4NjU1NDY5MjExODI2ODk1MTswMDsn\\\"\",\r\n            \"systemId\": \"965fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45054\",\r\n            \"name\": \"Corral de Almaguer\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUxODc1OTgyMTczNTM5OTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"975fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45055\",\r\n            \"name\": \"Cuerva\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.97Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE2NTY5MDUyNDI2NjkwMzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"985fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45058\",\r\n            \"name\": \"Domingo Pérez\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMzNjQ2MjI2NTQ4MDkyMzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"995fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45059\",\r\n            \"name\": \"Dosbarrios\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIyNzA3OTAwMTU5NTk4NTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"9a5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45060\",\r\n            \"name\": \"Erustes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk2NzQzNjM2MDU3OTk0Mzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"9b5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45061\",\r\n            \"name\": \"Escalona\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYxMzQyNDA3OTY5MDE0ODQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"9c5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45062\",\r\n            \"name\": \"Escalonilla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg1OTE1NDM2NDMzMTk4NjExMTswMDsn\\\"\",\r\n            \"systemId\": \"9d5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45063\",\r\n            \"name\": \"Espinoso del Rey\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ1Nzk2OTQxOTk2ODQ3MDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"9e5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45064\",\r\n            \"name\": \"Esquivias\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ3NzQxNjE2MTY1MzM0NTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"9f5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45065\",\r\n            \"name\": \"Estrella, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc1ODA5ODQwMjIwMDIxNTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"a05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45066\",\r\n            \"name\": \"Fuensalida\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.973Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU1NDgyMzk2ODY0Nzc0MDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"a15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45067\",\r\n            \"name\": \"Gálvez\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAwMTg2MzcxODI2Njk2MDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"a25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45068\",\r\n            \"name\": \"Garciotum\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMxNzI0MTU1OTY3OTI5MTEyMTswMDsn\\\"\",\r\n            \"systemId\": \"a35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45069\",\r\n            \"name\": \"Gerindote\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE0MjcxODQ4NDA4ODcyNjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"a45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45070\",\r\n            \"name\": \"Guadamur\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQ0NzkwOTIxOTY2MTQ1NDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"a55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45071\",\r\n            \"name\": \"Guardia, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc3ODEyODExNDg4NjI5NTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"a65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45072\",\r\n            \"name\": \"Herencias, Las\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA3MjI2MjMxMDI0MTQ3ODc1MTswMDsn\\\"\",\r\n            \"systemId\": \"a75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45073\",\r\n            \"name\": \"Herreruela de Oropesa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg2NzU5MTgyMDA0ODc2NDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"a85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45074\",\r\n            \"name\": \"Hinojosa de San Vicente\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk3ODU4Mzc2MjA2MjI3MDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"a95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45075\",\r\n            \"name\": \"Hontanar\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDMxNTk1MTYwOTIwMjA1MjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"aa5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45076\",\r\n            \"name\": \"Hormigos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDczMjAxNzI2NjAxNTU2NDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"ab5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45077\",\r\n            \"name\": \"Huecas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ5ODA0MTMzNDkyMTY3NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"ac5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45078\",\r\n            \"name\": \"Huerta de Valdecarábanos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.977Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg0OTYxOTA2MDY0OTY1MDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ad5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45079\",\r\n            \"name\": \"Iglesuela del Tiétar, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ3MTUyMTQ1MjQxNzYyMjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"ae5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45080\",\r\n            \"name\": \"Illán de Vacas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUwMjIzMTI1NzA3NDM1MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"af5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45081\",\r\n            \"name\": \"Illescas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ3NTc1MzczMzA3NzU3NTM1MTswMDsn\\\"\",\r\n            \"systemId\": \"b05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45082\",\r\n            \"name\": \"Lagartera\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYyNjA3NTgwNjU2Mjg0MzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"b15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45083\",\r\n            \"name\": \"Layos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEyMzMzNTgzMjc5MjM2NjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"b25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45084\",\r\n            \"name\": \"Lillo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU3NTA1Mjc2NTQ4OTk3NTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"b35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45085\",\r\n            \"name\": \"Lominchar\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTUwNzY1MTM3NzQwODE3MzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"b45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45086\",\r\n            \"name\": \"Lucillos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYzODM0OTM5NzE3MjAwOTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"b55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45087\",\r\n            \"name\": \"Madridejos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI3OTUyMDM5NzQ4NzQ0MjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"b65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45088\",\r\n            \"name\": \"Magán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.98Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgyNTc3NDcxMzMwMDIxMjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"b75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45089\",\r\n            \"name\": \"Malpica de Tajo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQyMjE1OTc1ODgyODkxMTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"b85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45090\",\r\n            \"name\": \"Manzaneque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQwNzc4Nzk1MzYwNzI5MjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"b95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45091\",\r\n            \"name\": \"Maqueda\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ3MTkwNDY5NTQ5Mjk4NTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"ba5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45092\",\r\n            \"name\": \"Marjaliza\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYzMzI2MzIwNTAwNTA1NDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"bb5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45093\",\r\n            \"name\": \"Marrupe\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc0MDM1NjcwOTY2MDA4MjIyMTswMDsn\\\"\",\r\n            \"systemId\": \"bc5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45094\",\r\n            \"name\": \"Mascaraque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcxNzk2MzYzMTUwMTg5ODA1MTswMDsn\\\"\",\r\n            \"systemId\": \"bd5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45095\",\r\n            \"name\": \"Mata, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU0OTYzODI5MTI0OTY4Mzg3MTswMDsn\\\"\",\r\n            \"systemId\": \"be5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45096\",\r\n            \"name\": \"Mazarambroz\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk4OTU0NTYwMDk1OTUyNzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"bf5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45097\",\r\n            \"name\": \"Mejorada\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTc5NDczODg4NDY0Nzk2NDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"c05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45098\",\r\n            \"name\": \"Menasalbas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.983Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ0MjIzODAzNDU4NjU0NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"c15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45099\",\r\n            \"name\": \"Méntrida\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg5MTYyNjExNjU3ODM3OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"c25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45100\",\r\n            \"name\": \"Mesegar de Tajo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE3NzQxNjU3ODE5OTcwNTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"c35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45101\",\r\n            \"name\": \"Miguel Esteban\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE5NDQ5MTI0NjUzNzk0Mjk1MTswMDsn\\\"\",\r\n            \"systemId\": \"c45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45102\",\r\n            \"name\": \"Mocejón\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM4OTY5MzQ0MDIyODE3NDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"c55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45103\",\r\n            \"name\": \"Mohedas de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTYwMjQyMTczODU4MDIxODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"c65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45104\",\r\n            \"name\": \"Montearagón\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY3NzY2MDM2NzQzNjY4OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"c75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45105\",\r\n            \"name\": \"Montesclaros\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDcxNTk4NTMyMDI3NDQ0MDY4MTswMDsn\\\"\",\r\n            \"systemId\": \"c85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45106\",\r\n            \"name\": \"Mora\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQyMTEwMzcwMjIyODI3NjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"c95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45107\",\r\n            \"name\": \"Nambroca\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgzNzk5MDE5MzQzOTMyNDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"ca5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45108\",\r\n            \"name\": \"Nava de Ricomalillo, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA5MTYwMjc5MTIyMDEwMTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"cb5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45109\",\r\n            \"name\": \"Navahermosa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTcxNDMyMDQ0MTc0NTAyODA0MTswMDsn\\\"\",\r\n            \"systemId\": \"cc5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45110\",\r\n            \"name\": \"Navalcán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.987Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEyNjczMjI1MDg3NDk2MDc4MTswMDsn\\\"\",\r\n            \"systemId\": \"cd5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45111\",\r\n            \"name\": \"Navalmoralejo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI0Mzk4NDYzNjc3NjEwMTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"ce5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45112\",\r\n            \"name\": \"Navalmorales, Los\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE1MzA0MDY1MjYzNDUwODEzMTswMDsn\\\"\",\r\n            \"systemId\": \"cf5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45113\",\r\n            \"name\": \"Navalucillos, Los\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYyNTQxMjI1OTkzOTQxODc2MTswMDsn\\\"\",\r\n            \"systemId\": \"d05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45114\",\r\n            \"name\": \"Navamorcuende\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg1MDA5Mjc1NzU5NTUzNjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"d15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45115\",\r\n            \"name\": \"Noblejas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk3NjQ1NTY1ODUyNjQ5NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"d25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45116\",\r\n            \"name\": \"Noez\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ4NzE0MjI2NzI1ODQ4MTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"d35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45117\",\r\n            \"name\": \"Nombela\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE0NzUyNTgzNjY5ODA4MzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"d45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45118\",\r\n            \"name\": \"Novés\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY4OTM3NzY0MjQyODIxMjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45119\",\r\n            \"name\": \"Numancia de la Sagra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA3NDA0NTcxNjkwMTg4MzYwMTswMDsn\\\"\",\r\n            \"systemId\": \"d65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45120\",\r\n            \"name\": \"Nuño Gómez\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.99Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzMxMDMyNTQyMDc0MTkzNzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"d75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45121\",\r\n            \"name\": \"Ocaña\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk1NzU4ODQ1MDk5MTUyMTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"d85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45122\",\r\n            \"name\": \"Olías del Rey\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUyNzYyMzQxNDQ3MTA1MTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"d95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45123\",\r\n            \"name\": \"Ontígola\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI5Njc5NDczNDQ1NTA1MjQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"da5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45124\",\r\n            \"name\": \"Orgaz\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg1OTAzOTM2NTM1OTYyMzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"db5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45125\",\r\n            \"name\": \"Oropesa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODcwNDAyOTU4OTA4Nzc0NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"dc5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45126\",\r\n            \"name\": \"Otero\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODYxMzg1NzM5MzIwMzMzODUyMTswMDsn\\\"\",\r\n            \"systemId\": \"dd5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45127\",\r\n            \"name\": \"Palomeque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQ4OTgwOTY1MDQwMjc5OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"de5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45128\",\r\n            \"name\": \"Pantoja\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU0NjYwNTEyNjI5MzA5MTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"df5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45129\",\r\n            \"name\": \"Paredes de Escalona\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEyNDM5NTc4NjAwNzczMzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"e05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45130\",\r\n            \"name\": \"Parrillas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.993Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTUzNDA3NDUzMDg5MTM5NzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"e15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45131\",\r\n            \"name\": \"Pelahustán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA2MjIyODQ1NTI5OTM4ODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"e25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45132\",\r\n            \"name\": \"Pepino\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ3NjA0MTEwMTUzNTQzMzgzMTswMDsn\\\"\",\r\n            \"systemId\": \"e35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45133\",\r\n            \"name\": \"Polán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcxOTczODA5NTU1NjQyNDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"e45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45134\",\r\n            \"name\": \"Portillo de Toledo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEzMzgyOTc0ODI5NDczMjE3MTswMDsn\\\"\",\r\n            \"systemId\": \"e55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45135\",\r\n            \"name\": \"Puebla de Almoradiel, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAyMjY5ODMyMDk3Njc0NDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"e65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45136\",\r\n            \"name\": \"Puebla de Montalbán, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcxMzcwMTk0NDE5NjgyMzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"e75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45137\",\r\n            \"name\": \"Pueblanueva, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkwMzY5MDgxMzUwNzUwNTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"e85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45138\",\r\n            \"name\": \"Puente del Arzobispo, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzExMzI1MDg4NjcwMTk4MzczMTswMDsn\\\"\",\r\n            \"systemId\": \"e95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45139\",\r\n            \"name\": \"Puerto de San Vicente\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjYyMTc4NjU3OTcyNDMwNDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"ea5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45140\",\r\n            \"name\": \"Pulgar\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI5NDAxOTg1MjY3NTM1Mzc2MTswMDsn\\\"\",\r\n            \"systemId\": \"eb5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45141\",\r\n            \"name\": \"Quero\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg0NjQzMDg2MjEyNTM3ODkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ec5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45142\",\r\n            \"name\": \"Quintanar de la Orden\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:16.997Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc3ODY4NDgxODE4MDQ5MTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"ed5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45143\",\r\n            \"name\": \"Quismondo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA1OTM2NDYzODIxMTEzNDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"ee5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45144\",\r\n            \"name\": \"Real de San Vicente, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIxNDY0MDQzOTk0NTg0OTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"ef5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45145\",\r\n            \"name\": \"Recas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMxMzAwNDMyMTc3MjI1NjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"f05fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45146\",\r\n            \"name\": \"Retamoso de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcyNjg5MTU3MTk2MjUwNzk3MTswMDsn\\\"\",\r\n            \"systemId\": \"f15fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45147\",\r\n            \"name\": \"Rielves\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjExNTgyOTU0MTE2Nzg2OTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"f25fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45148\",\r\n            \"name\": \"Robledo del Mazo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM5MzcwNTMwMzAwNDc2ODc4MTswMDsn\\\"\",\r\n            \"systemId\": \"f35fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45149\",\r\n            \"name\": \"Romeral, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ1NzA2NTY1OTk0NTI3MDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"f45fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45150\",\r\n            \"name\": \"San Bartolomé de las Abiertas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI0MjEwMDA1MDkzOTQzOTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"f55fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45151\",\r\n            \"name\": \"San Martín de Montalbán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY3NzkyMTk1Njg4NDA3OTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"f65fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45152\",\r\n            \"name\": \"San Martín de Pusa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEwMDIzNTYwNDQ1NTYwNDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"f75fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45153\",\r\n            \"name\": \"San Pablo de los Montes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA1Mjk0NzA4ODY3MjU4NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"f85fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45154\",\r\n            \"name\": \"San Román de los Montes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzczMDU2NjYyMDg5ODg5NTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"f95fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45155\",\r\n            \"name\": \"Santa Ana de Pusa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc0OTk0ODgyNzg5OTg3NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"fa5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45156\",\r\n            \"name\": \"Santa Cruz de la Zarza\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk2MjgxMDczODg4NzY2MDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"fb5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45157\",\r\n            \"name\": \"Santa Cruz del Retamar\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUyMjU3MzI0NjA0MDc4NDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"fc5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45158\",\r\n            \"name\": \"Santa Olalla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUwMzk4MTMxNDkzNzkzMDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"fd5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45901\",\r\n            \"name\": \"Santo Domingo-Caudilla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA0ODk1NzA2NTQ1NTIzOTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"fe5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45159\",\r\n            \"name\": \"Sartajada\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ2NTQ3MjE5OTAxMjIyMzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"ff5fe034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45160\",\r\n            \"name\": \"Segurilla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA5MjY2ODcyNDI4NTM5MDYyMTswMDsn\\\"\",\r\n            \"systemId\": \"0060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45161\",\r\n            \"name\": \"Seseña\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc0NTkyNzkwMDA4NjIzNzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"0160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45162\",\r\n            \"name\": \"Sevilleja de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE0MTAzNDk1NjcyODA1NDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"0260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45163\",\r\n            \"name\": \"Sonseca\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE4ODQzNjAzMTU3MjM2NTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"0360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45164\",\r\n            \"name\": \"Sotillo de las Palomas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwOTgwNjA4NTUxMDM1OTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"0460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45165\",\r\n            \"name\": \"Talavera de la Reina\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.003Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjMzMjUzMTg1NDQ3OTA0MTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"0560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45166\",\r\n            \"name\": \"Tembleque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQyNDA4NjI3MjE1Mjg2Mjg2MTswMDsn\\\"\",\r\n            \"systemId\": \"0660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45167\",\r\n            \"name\": \"Toboso, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwMTk3OTU5NTYxMzk2NzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"0760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45168\",\r\n            \"name\": \"Toledo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg2NDkwOTM3MzYwOTQ5MjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"0860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45169\",\r\n            \"name\": \"Torralba de Oropesa\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE1MTcwNTk1ODM5OTQ5MDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"0960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45171\",\r\n            \"name\": \"Torre de Esteban Hambrán, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ0NTg4ODUwNTI2MDE2OTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"0a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45170\",\r\n            \"name\": \"Torrecilla de la Jara\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE4NjExMDYzMzMwMzEwNjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"0b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45172\",\r\n            \"name\": \"Torrico\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI0NTY2NjExNzAyNTM3NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"0c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45173\",\r\n            \"name\": \"Torrijos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyMjYyMTE2NjYzMjM4MDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"0d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45174\",\r\n            \"name\": \"Totanés\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY5NDg0Njk4OTU1MzA1MzEzMTswMDsn\\\"\",\r\n            \"systemId\": \"0e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45175\",\r\n            \"name\": \"Turleque\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIzMzM5NjYwMzU5ODc1NzExMTswMDsn\\\"\",\r\n            \"systemId\": \"0f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45176\",\r\n            \"name\": \"Ugena\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI2ODM0MTM5MzY3NjMxNjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"1060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45177\",\r\n            \"name\": \"Urda\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc3MjU3NDU4OTU5MjI4NTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"1160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45179\",\r\n            \"name\": \"Valdeverdeja\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.007Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg4MTk2ODk2Njg5NTQ1MzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"1260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45180\",\r\n            \"name\": \"Valmojado\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE3MDIyODA1ODY0NzA0NTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"1360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45181\",\r\n            \"name\": \"Velada\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIwNjQ1OTI1MDEwMTc2MDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"1460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45182\",\r\n            \"name\": \"Ventas con Peña Aguilera, Las\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQzNTA5MTIzNDYwNzA3MjE4MTswMDsn\\\"\",\r\n            \"systemId\": \"1560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45183\",\r\n            \"name\": \"Ventas de Retamosa, Las\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkxODczMjQ2NjkwMzYyNTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"1660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45184\",\r\n            \"name\": \"Ventas de San Julián, Las\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ2NTMwNzYwNzgwNzAwNTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"1760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45186\",\r\n            \"name\": \"Villa de Don Fadrique, La\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU0OTM0NzcxMDg3NTk1OTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"1860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45185\",\r\n            \"name\": \"Villacañas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg4NzYwMjAxNjc0MDIyODY3MTswMDsn\\\"\",\r\n            \"systemId\": \"1960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45187\",\r\n            \"name\": \"Villafranca de los Caballeros\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzODc5MDQ3OTQ0MjU2ODExMTswMDsn\\\"\",\r\n            \"systemId\": \"1a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45188\",\r\n            \"name\": \"Villaluenga de la Sagra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.01Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI5MDQxODE2ODU4ODExNTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"1b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45189\",\r\n            \"name\": \"Villamiel de Toledo\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYzNzUwNDU2NDAzNTQ3Njg1MTswMDsn\\\"\",\r\n            \"systemId\": \"1c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45190\",\r\n            \"name\": \"Villaminaya\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDUwNTU1Mzk3NjkyMjY2MTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"1d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45191\",\r\n            \"name\": \"Villamuelas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg0ODY1OTM0ODkwNTM2MDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"1e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45192\",\r\n            \"name\": \"Villanueva de Alcardete\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE4MTkxNzE3OTA4OTY4MzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"1f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45193\",\r\n            \"name\": \"Villanueva de Bogas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc0NjU3NDE4MjY0MDgxMDA1MTswMDsn\\\"\",\r\n            \"systemId\": \"2060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45194\",\r\n            \"name\": \"Villarejo de Montalbán\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk2NDM0MjEzNjU5NjcyNDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"2160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45195\",\r\n            \"name\": \"Villarrubia de Santiago\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc5MTAzNzI4OTE4NjUwNDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"2260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45196\",\r\n            \"name\": \"Villaseca de la Sagra\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE4MDY4MTAyNzMyNjc1NDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"2360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45197\",\r\n            \"name\": \"Villasequilla\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkzNjU5MTA2MjA0MzAzMjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"2460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45198\",\r\n            \"name\": \"Villatobas\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.013Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAyMDc2MTIyODg0OTkwNzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45199\",\r\n            \"name\": \"Viso de San Juan, El\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMzMjk2MTI3NTk3MzQ2MTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"2660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45200\",\r\n            \"name\": \"Yébenes, Los\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzk0OTE5MzQzNTAyNzU3OTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"2760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45201\",\r\n            \"name\": \"Yeles\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODcwMDQxNTEyNTM1ODAxNzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"2860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45202\",\r\n            \"name\": \"Yepes\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYyMjMxMzU0OTEyNDc2MjE5MTswMDsn\\\"\",\r\n            \"systemId\": \"2960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45203\",\r\n            \"name\": \"Yuncler\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM1MjkxMTk1Nzg5MjA5NTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"2a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45204\",\r\n            \"name\": \"Yunclillos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY3MjAzMjc5ODg4OTg2NjExMTswMDsn\\\"\",\r\n            \"systemId\": \"2b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"45205\",\r\n            \"name\": \"Yuncos\",\r\n            \"provinceNo\": 45,\r\n            \"autonomousCommunityNo\": 8,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyMjkyNTU3OTA0NTIwMjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"2c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46001\",\r\n            \"name\": \"Ademuz\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUxOTIyMjMxODE2MjE4ODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"2d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46002\",\r\n            \"name\": \"Ador\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAwOTUwMjg5MjMwNDM1NjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"2e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46004\",\r\n            \"name\": \"Agullent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk4MjY4MDgwNjIxOTcyNzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"2f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46042\",\r\n            \"name\": \"Aielo de Malferit\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk3MDEzMTU1NzM3MDQ2OTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"3060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46043\",\r\n            \"name\": \"Aielo de Rugat\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE5MDE0OTcyMjc4Njg2MjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"3160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46005\",\r\n            \"name\": \"Alaquàs\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg5OTI5NDU1MTI4MDkwNjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"3260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46006\",\r\n            \"name\": \"Albaida\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYyMjA3OTY1MTM5NjE4NTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"3360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46007\",\r\n            \"name\": \"Albal\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTEzMzIyMzE4MTA0MTY2MDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"3460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46008\",\r\n            \"name\": \"Albalat de la Ribera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAzMTYxNTE5NzI4MzI2Mjk2MTswMDsn\\\"\",\r\n            \"systemId\": \"3560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46009\",\r\n            \"name\": \"Albalat dels Sorells\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc4NTQ3MDE5Nzc4MjM0NzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"3660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46010\",\r\n            \"name\": \"Albalat dels Tarongers\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY5NDc5ODcyNzI2NTc1MjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"3760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46011\",\r\n            \"name\": \"Alberic\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc2ODc3NTc1NTQwNjA1NzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"3860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46012\",\r\n            \"name\": \"Alborache\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc0MDg2MDU5MjczMjU1NTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"3960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46013\",\r\n            \"name\": \"Alboraia/Alboraya\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ3MTUzMzAzNjAxNDgyOTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"3a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46014\",\r\n            \"name\": \"Albuixech\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ3OTExMjY2NTY4ODQ4OTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"3b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46016\",\r\n            \"name\": \"Alcàntera de Xúquer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjAzMTEwNjU5MDE5Njg4NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"3c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46015\",\r\n            \"name\": \"Alcàsser\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.02Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM0MDM1MTUxMTAyMDcwNzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46018\",\r\n            \"name\": \"Alcublas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcyOTg1MTk0ODk1Nzg4OTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"3e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46020\",\r\n            \"name\": \"Alcúdia de Crespins, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgzNjc1MzY4OTk2MjgyNzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"3f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46019\",\r\n            \"name\": \"Alcúdia, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgzNzE5ODk4NzU2NTA1MzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"4060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46021\",\r\n            \"name\": \"Aldaia\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEzMDQwMzQ0NDcxNzIxODA1MTswMDsn\\\"\",\r\n            \"systemId\": \"4160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46022\",\r\n            \"name\": \"Alfafar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM1NzUwOTA5NDUyOTYwNDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"4260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46024\",\r\n            \"name\": \"Alfara de la Baronia\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzExNDA3NTc2NTMwMDQ1NjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"4360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46025\",\r\n            \"name\": \"Alfara del Patriarca\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg3ODI1MjczNzAxODQyMTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"4460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46026\",\r\n            \"name\": \"Alfarp\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY0NTM3NTUwNzU2OTE5NjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"4560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46027\",\r\n            \"name\": \"Alfarrasí\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYxNjA2MDU1NTIyMzc1Njc4MTswMDsn\\\"\",\r\n            \"systemId\": \"4660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46023\",\r\n            \"name\": \"Alfauir\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI1Mjg0MTg1MDk1NDIzOTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"4760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46028\",\r\n            \"name\": \"Algar de Palancia\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU0NjkxMTg2MzA2NTE5NjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"4860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46029\",\r\n            \"name\": \"Algemesí\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg3MjY2MzU3NjI0MTc5ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"4960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46030\",\r\n            \"name\": \"Algímia d'Alfara\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQwMTM0OTM1OTA5NTM2OTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"4a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46031\",\r\n            \"name\": \"Alginet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ0MDY5OTYzMTAxOTg0OTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"4b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46032\",\r\n            \"name\": \"Almàssera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg4ODA4OTU0MTE3NjAyNDYyMTswMDsn\\\"\",\r\n            \"systemId\": \"4c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46033\",\r\n            \"name\": \"Almiserà\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTAxNDQ5OTY0MDk0NjE5Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"4d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46034\",\r\n            \"name\": \"Almoines\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDczOTgxNjM2Njc4MTQzMjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"4e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46035\",\r\n            \"name\": \"Almussafes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDcwNTc2Njg2NTY2ODQ3MDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"4f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46036\",\r\n            \"name\": \"Alpuente\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI2MjQ5MTI0MDEyODk4MDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"5060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46037\",\r\n            \"name\": \"Alqueria de la Comtessa, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI0ODI4ODE1MjI3ODg0NjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"5160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46017\",\r\n            \"name\": \"Alzira\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.023Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTMxNjg1OTI1NDY5NjI4MDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"5260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46038\",\r\n            \"name\": \"Andilla\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.027Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkxNjE5MDgzMjU1NDI4NzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"5360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46039\",\r\n            \"name\": \"Anna\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU4MTA2OTQ0OTAxODc2MTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"5460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46040\",\r\n            \"name\": \"Antella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk3MjA1NDE4NTU5NDM3NjE3MTswMDsn\\\"\",\r\n            \"systemId\": \"5560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46041\",\r\n            \"name\": \"Aras de los Olmos\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDcxNjE1MjkxODY4ODY4MDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"5660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46003\",\r\n            \"name\": \"Atzeneta d'Albaida\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.017Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkzODUxMzgwMDcxNzQzNTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"5760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46044\",\r\n            \"name\": \"Ayora\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY1MDc5ODIzNjg1OTk3ODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"5860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46046\",\r\n            \"name\": \"Barx\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY4MTExOTY0NTUzMzM2MTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"5960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46045\",\r\n            \"name\": \"Barxeta\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkyMTkzNjQwMDg1NTIyODA5MTswMDsn\\\"\",\r\n            \"systemId\": \"5a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46047\",\r\n            \"name\": \"Bèlgida\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMyNzc4Mjg2ODExMTE1NTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"5b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46048\",\r\n            \"name\": \"Bellreguard\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA2NzQ0NDgyMDAxMjgxNDYxMTswMDsn\\\"\",\r\n            \"systemId\": \"5c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46049\",\r\n            \"name\": \"Bellús\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.03Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUwMDE1NDY2NjgwNjk2NDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"5d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46050\",\r\n            \"name\": \"Benagéber\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA1NjgxMTAzMDMyNDg1NTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"5e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46051\",\r\n            \"name\": \"Benaguasil\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjEyMjM5NDgyMzU0NTg5MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"5f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46052\",\r\n            \"name\": \"Benavites\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg0MjM0MzE0ODEwMjYzODAzMTswMDsn\\\"\",\r\n            \"systemId\": \"6060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46053\",\r\n            \"name\": \"Beneixida\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc1MTgwODA4NTgwNzkyODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46054\",\r\n            \"name\": \"Benetússer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMzOTk3NzI3ODk0NDE4NjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"6260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46055\",\r\n            \"name\": \"Beniarjó\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ5NjI4NTQyMzg0MDkzMzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"6360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46056\",\r\n            \"name\": \"Beniatjar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMzMzUwMjYwOTYzMjQwMDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"6460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46057\",\r\n            \"name\": \"Benicolet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU0MjU3MTM1MzIxNzc3ODYyMTswMDsn\\\"\",\r\n            \"systemId\": \"6560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46904\",\r\n            \"name\": \"Benicull de Xúquer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA3OTk3Mjc3ODYwMzg0MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"6660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46060\",\r\n            \"name\": \"Benifaió\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY1Nzc1OTU5OTMzMjQyMjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"6760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46059\",\r\n            \"name\": \"Benifairó de la Valldigna\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ4NDAzOTg5MzAzODM5NjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"6860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46058\",\r\n            \"name\": \"Benifairó de les Valls\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI0Njg4NDg3MTQzMDcyOTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"6960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46061\",\r\n            \"name\": \"Beniflá\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.033Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc3Mzc0NDkzMjk0Njc5ODk0MTswMDsn\\\"\",\r\n            \"systemId\": \"6a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46062\",\r\n            \"name\": \"Benigànim\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM0NDUzNjM0NTY0Mjk1MjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"6b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46063\",\r\n            \"name\": \"Benimodo\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkyMjk4Mzg4MjE2OTc4MzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"6c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46064\",\r\n            \"name\": \"Benimuslem\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTExNTkwMzg1MjY2MzAzNTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"6d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46065\",\r\n            \"name\": \"Beniparrell\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg5MDc3NTc4ODAzMjQ2ODIxMTswMDsn\\\"\",\r\n            \"systemId\": \"6e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46066\",\r\n            \"name\": \"Benirredrà\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgzNDc5NTgwNDMyNzAwMTExMTswMDsn\\\"\",\r\n            \"systemId\": \"6f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46067\",\r\n            \"name\": \"Benissanó\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk1OTg5MDE5MDQ0MDUxNjc3MTswMDsn\\\"\",\r\n            \"systemId\": \"7060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46068\",\r\n            \"name\": \"Benissoda\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA0MjMyMjExNTE2NjU1NTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46069\",\r\n            \"name\": \"Benissuera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTUxNjc5NzMzOTI1Mjk5NTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"7260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46070\",\r\n            \"name\": \"Bétera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTUwOTc5NTY4ODA3MTM5NDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"7360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46071\",\r\n            \"name\": \"Bicorp\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk1OTI1Njk0Mjg0ODM5OTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"7460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46072\",\r\n            \"name\": \"Bocairent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE5NjQ1NDMzOTI3NTcxNTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"7560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46073\",\r\n            \"name\": \"Bolbaite\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAyNDYxOTE2ODU1NjI2ODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"7660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46074\",\r\n            \"name\": \"Bonrepòs i Mirambell\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.037Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU2MzczNDkzNDU3ODE4NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46075\",\r\n            \"name\": \"Bufali\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA4MDA0MjE4ODA4MTIxMTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"7860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46076\",\r\n            \"name\": \"Bugarra\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkwNTEyMDM4NzgwNDMwNzk3MTswMDsn\\\"\",\r\n            \"systemId\": \"7960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46077\",\r\n            \"name\": \"Buñol\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMxMTY1MzUzNDA2MTQzMzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"7a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46078\",\r\n            \"name\": \"Burjassot\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAxNDI4NzQ3MjAzNjU2MjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"7b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46079\",\r\n            \"name\": \"Calles\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQxMDE1NDA2MzQ4NzQ5NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"7c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46080\",\r\n            \"name\": \"Camporrobles\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM1MzYxNjEyMTYzNzE4NDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"7d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46081\",\r\n            \"name\": \"Canals\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgzOTE0NjQ0NTc5MDE5NjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"7e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46082\",\r\n            \"name\": \"Canet d'En Berenguer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY4Nzk5Mzc4MTg4MDAzODQzMTswMDsn\\\"\",\r\n            \"systemId\": \"7f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46083\",\r\n            \"name\": \"Carcaixent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3MDMzNzM0NDI3NTU5NjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"8060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46084\",\r\n            \"name\": \"Càrcer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.04Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3NzU1NzgyOTU3MzgxNDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46085\",\r\n            \"name\": \"Carlet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU3NTgxNDUyMDQxNDYzNTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"8260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46086\",\r\n            \"name\": \"Carrícola\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcyNzMzNzY5NDU2MTM4NDk3MTswMDsn\\\"\",\r\n            \"systemId\": \"8360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46087\",\r\n            \"name\": \"Casas Altas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ3MjA4MzMxNjQ5MjMxNjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"8460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46088\",\r\n            \"name\": \"Casas Bajas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUyMDgwNzA3MzE1OTc0MzE3MTswMDsn\\\"\",\r\n            \"systemId\": \"8560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46089\",\r\n            \"name\": \"Casinos\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4Nzk5MDI3MjgzODQ0MDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"8660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46090\",\r\n            \"name\": \"Castelló de Rugat\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg5NTYwNzA2MDg2NTEwNzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"8760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46091\",\r\n            \"name\": \"Castellonet de la Conquesta\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODgzMDQ4NDk2NTQzMzQ2MDY3MTswMDsn\\\"\",\r\n            \"systemId\": \"8860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46092\",\r\n            \"name\": \"Castielfabib\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUzNzc5Njc4MzQxMDcyMjc3MTswMDsn\\\"\",\r\n            \"systemId\": \"8960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46093\",\r\n            \"name\": \"Catadau\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.043Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg4Nzg3NzIyODkyNTk1NjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"8a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46094\",\r\n            \"name\": \"Catarroja\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk4MTI0NzIxMjAzNzk1MzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"8b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46095\",\r\n            \"name\": \"Caudete de las Fuentes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg3MjU4NTY1NDM5MjcxMTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"8c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46096\",\r\n            \"name\": \"Cerdà\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMzNTY4MTQxNzk4MDM0NTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"8d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46107\",\r\n            \"name\": \"Chella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM3ODk4Nzk1NjEzMzk4NzE1MTswMDsn\\\"\",\r\n            \"systemId\": \"8e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46106\",\r\n            \"name\": \"Chelva\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQwMjQ3NDg2NDIwOTg0MDUzMTswMDsn\\\"\",\r\n            \"systemId\": \"8f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46108\",\r\n            \"name\": \"Chera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA3NTIxNzg0NzkwMDA0MzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"9060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46109\",\r\n            \"name\": \"Cheste\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgwNTY0NDM4MzgxNTU0ODc3MTswMDsn\\\"\",\r\n            \"systemId\": \"9160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46111\",\r\n            \"name\": \"Chiva\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3OTM1MjQyMzc2NjQ4NjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"9260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46112\",\r\n            \"name\": \"Chulilla\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk0NDQwMjI3MzAyMTUxMjc4MTswMDsn\\\"\",\r\n            \"systemId\": \"9360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46097\",\r\n            \"name\": \"Cofrentes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQxOTM0OTMwMzYyODE4NTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"9460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46098\",\r\n            \"name\": \"Corbera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYyNTExOTMzNDA4MDg1OTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"9560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46099\",\r\n            \"name\": \"Cortes de Pallás\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM5ODk5NzY4MzA4NDc4NzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"9660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46100\",\r\n            \"name\": \"Cotes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI5MDg0MzMxMTkzODEyNjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"9760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46105\",\r\n            \"name\": \"Cullera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE3Nzc2MjIxODM5Nzc5MjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46113\",\r\n            \"name\": \"Daimús\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY2NTA2MDYzNTU3NDM4NjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"9960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46114\",\r\n            \"name\": \"Domeño\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE5Nzg1NTE1ODIzNTY2ODE2MTswMDsn\\\"\",\r\n            \"systemId\": \"9a60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46115\",\r\n            \"name\": \"Dos Aguas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA1MzA4NDU1MDAzMTc4MzMzMTswMDsn\\\"\",\r\n            \"systemId\": \"9b60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46116\",\r\n            \"name\": \"Eliana, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzMwOTEyODY4NzQ2MzU5OTIyMTswMDsn\\\"\",\r\n            \"systemId\": \"9c60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46117\",\r\n            \"name\": \"Emperador\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2NzQ5NzI2NjgwNzk1Njk5MTswMDsn\\\"\",\r\n            \"systemId\": \"9d60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46118\",\r\n            \"name\": \"Enguera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYyNTA3MDkwOTA3NzQ2MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"9e60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46119\",\r\n            \"name\": \"Ènova, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEwNDQ2MDE1MDMzOTAwMTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"9f60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46120\",\r\n            \"name\": \"Estivella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMzNDQwNDEzNTQ4NTgyOTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"a060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46121\",\r\n            \"name\": \"Estubeny\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQzODU2NzQxMDc5MDUzODQwMTswMDsn\\\"\",\r\n            \"systemId\": \"a160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46122\",\r\n            \"name\": \"Faura\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzA4Njc4NTg0NzI0MTk4MzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"a260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46123\",\r\n            \"name\": \"Favara\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM3Njk2NzcxNjA5NDM2MzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"a360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46126\",\r\n            \"name\": \"Foios\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU1NzQyNjI2NjY1NTQ1MjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"a460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46128\",\r\n            \"name\": \"Font de la Figuera, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY1MDIyNDQ5NjAyMzQxNTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"a560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46127\",\r\n            \"name\": \"Font d'En Carròs, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI2MjM0MDA0Nzc4NTEwNzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"a660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46124\",\r\n            \"name\": \"Fontanars dels Alforins\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI1MTA3NzM3ODU1MjE4NzUzMTswMDsn\\\"\",\r\n            \"systemId\": \"a760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46125\",\r\n            \"name\": \"Fortaleny\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.053Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk2Mzk4NTI1MjgwOTY5ODc5MTswMDsn\\\"\",\r\n            \"systemId\": \"a860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46129\",\r\n            \"name\": \"Fuenterrobles\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEyNjY2OTEwNjI3ODIyOTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"a960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46131\",\r\n            \"name\": \"Gandia\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg2OTQwOTI2MTk2ODEzMjk4MTswMDsn\\\"\",\r\n            \"systemId\": \"aa60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46902\",\r\n            \"name\": \"Gátova\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTE1OTgzMjQ4Nzc2ODAzODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"ab60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46130\",\r\n            \"name\": \"Gavarda\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUzODI0MDQ3ODE1NzA3NDMyMTswMDsn\\\"\",\r\n            \"systemId\": \"ac60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46132\",\r\n            \"name\": \"Genovés, el\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk5MDQ3NjMzNjk1OTk3NzA0MTswMDsn\\\"\",\r\n            \"systemId\": \"ad60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46133\",\r\n            \"name\": \"Gestalgar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUwMzc0ODQ5NTY2MzA1MTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"ae60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46134\",\r\n            \"name\": \"Gilet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQ1NzkzNDY0NDc3Nzc1MDk5MTswMDsn\\\"\",\r\n            \"systemId\": \"af60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46135\",\r\n            \"name\": \"Godella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcxNjU1MzI2MDIyNTIzODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"b060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46136\",\r\n            \"name\": \"Godelleta\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTAwMjIzMzQ3MDI2ODM3NzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"b160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46137\",\r\n            \"name\": \"Granja de la Costera, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI5MzI1NjQ5NTQ0Nzk4ODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"b260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46138\",\r\n            \"name\": \"Guadasséquies\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMzMDU4MDQ5OTU4OTAxMjMyMTswMDsn\\\"\",\r\n            \"systemId\": \"b360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46139\",\r\n            \"name\": \"Guadassuar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.057Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExNTQ4NDEyODk3Mzk4MDMxMTswMDsn\\\"\",\r\n            \"systemId\": \"b460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46140\",\r\n            \"name\": \"Guardamar de la Safor\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM2OTU4MTAyMTQ2NTA3NDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"b560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46141\",\r\n            \"name\": \"Higueruelas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk0MzAzNjUxNTE0ODAwMjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"b660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46142\",\r\n            \"name\": \"Jalance\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk1NDU2MDQ0NjUwMDM1OTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"b760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46144\",\r\n            \"name\": \"Jarafuel\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM4Njg2MDYyNjg2MzA4NjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"b860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46154\",\r\n            \"name\": \"Llanera de Ranes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU1MzcyNjk1Mjc2NjQxNjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"b960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46155\",\r\n            \"name\": \"Llaurí\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg0NTUxMDE4OTgwNjMwMzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"ba60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46147\",\r\n            \"name\": \"Llíria\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI2NDk4NjIyOTkzOTAyMzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"bb60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46152\",\r\n            \"name\": \"Llocnou de la Corona\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY0MTMxMjc5MDk1NTAxMTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"bc60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46153\",\r\n            \"name\": \"Llocnou de Sant Jeroni\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEwODg3MjgyOTEwMjAxMzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"bd60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46151\",\r\n            \"name\": \"Llocnou d'En Fenollet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM5ODE2MDI2OTg5NzIxODkwMTswMDsn\\\"\",\r\n            \"systemId\": \"be60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46156\",\r\n            \"name\": \"Llombai\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAyMjg4OTgxMDQ3ODcyMDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"bf60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46157\",\r\n            \"name\": \"Llosa de Ranes, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU5OTg4NTUxMjQwOTczMjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"c060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46150\",\r\n            \"name\": \"Llutxent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTUxOTE3NjA5NjE4ODY5MDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"c160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46148\",\r\n            \"name\": \"Loriguilla\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIxNzcxODgyNjQ0NzgyODY5MTswMDsn\\\"\",\r\n            \"systemId\": \"c260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46149\",\r\n            \"name\": \"Losa del Obispo\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTEzMDY4ODc0MjkwODU3OTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"c360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46158\",\r\n            \"name\": \"Macastre\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ3NDkyMjM2MzQyMDQ1MDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"c460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46159\",\r\n            \"name\": \"Manises\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI5MjQ2OTE3MTI1OTIxMTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"c560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46160\",\r\n            \"name\": \"Manuel\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkyODE5MDUyOTQzNDM0ODg2MTswMDsn\\\"\",\r\n            \"systemId\": \"c660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46161\",\r\n            \"name\": \"Marines\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk1NTAxNzEyODExMjQzODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"c760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46162\",\r\n            \"name\": \"Massalavés\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk4NjU2Nzk1NTY5NjA5Njg5MTswMDsn\\\"\",\r\n            \"systemId\": \"c860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46163\",\r\n            \"name\": \"Massalfassar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.063Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc0ODUzMTA5MDAzMDA3MjQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"c960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46164\",\r\n            \"name\": \"Massamagrell\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgyNjUwODM3MDQ1MDU5OTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"ca60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46165\",\r\n            \"name\": \"Massanassa\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc4OTQ0ODEwOTM3MTkxMTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"cb60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46166\",\r\n            \"name\": \"Meliana\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk1ODgyODE2ODU4NTI4NzQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"cc60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46167\",\r\n            \"name\": \"Millares\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY5MzM3NzI0MjE2NzM5NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"cd60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46168\",\r\n            \"name\": \"Miramar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAxNDM4MjcxNTE0MTU5MjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"ce60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46169\",\r\n            \"name\": \"Mislata\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgwNzM2ODMxNDYyMjIwMzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"cf60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46170\",\r\n            \"name\": \"Mogente/Moixent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIzODY2NzY2MDMyOTA2NjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"d060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46171\",\r\n            \"name\": \"Moncada\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg5MDkwNTY4MjY4MDU1NzI4MTswMDsn\\\"\",\r\n            \"systemId\": \"d160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46173\",\r\n            \"name\": \"Montaverner\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEzODQ3NzM2NzE5ODUzMDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"d260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46174\",\r\n            \"name\": \"Montesa\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIwNDU5Njc0NTU2MjgxOTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"d360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46175\",\r\n            \"name\": \"Montitxelvo/Montichelvo\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA3ODkxMDE0MzkzOTMyMTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"d460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46176\",\r\n            \"name\": \"Montroi/Montroy\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM0NzQ2MDMxNDEyMDcyMDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"d560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46172\",\r\n            \"name\": \"Montserrat\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.067Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc1Mjk5MzY1ODI1NjE0Mzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"d660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46177\",\r\n            \"name\": \"Museros\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjkxNDk3MzU2ODY0NTM1ODY2MTswMDsn\\\"\",\r\n            \"systemId\": \"d760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46178\",\r\n            \"name\": \"Nàquera/Náquera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg0MTE5NDkzMzU2MzE4OTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"d860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46179\",\r\n            \"name\": \"Navarrés\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgzNDI4MjU1NjM4OTExMDczMTswMDsn\\\"\",\r\n            \"systemId\": \"d960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46180\",\r\n            \"name\": \"Novelé/Novetlè\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU2MTU0MTg1MDYyOTA1NjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"da60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46181\",\r\n            \"name\": \"Oliva\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY5MTc5NTcyOTk5OTk0Mzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"db60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46183\",\r\n            \"name\": \"Olleria, l'\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODYzMTM1NjAyMTQ1ODA5NzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"dc60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46182\",\r\n            \"name\": \"Olocau\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc2NTkxOTM4NTY0Nzk4MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"dd60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46184\",\r\n            \"name\": \"Ontinyent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIxMzQyMTc2MTg2NzE1NzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"de60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46185\",\r\n            \"name\": \"Otos\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU4NjY3MDg4NzU2NzQ4NzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"df60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46186\",\r\n            \"name\": \"Paiporta\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.07Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI4NzU1Mzg5ODI5NTY5Mzc2MTswMDsn\\\"\",\r\n            \"systemId\": \"e060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46187\",\r\n            \"name\": \"Palma de Gandía\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU2MjQ4MjM5ODI0NDMwOTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"e160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46188\",\r\n            \"name\": \"Palmera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA5ODY5NzMxNjU1MDE5OTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"e260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46189\",\r\n            \"name\": \"Palomar, el\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg0Nzc4OTMxODYzOTUxMzg1MTswMDsn\\\"\",\r\n            \"systemId\": \"e360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46190\",\r\n            \"name\": \"Paterna\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjE3MzA3NTgyNzc4NTM1OTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"e460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46191\",\r\n            \"name\": \"Pedralba\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjIzMzUyMzIwNDE0NTQxMjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"e560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46192\",\r\n            \"name\": \"Petrés\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY3Mzg4OTI1NzczMjUyMDIzMTswMDsn\\\"\",\r\n            \"systemId\": \"e660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46193\",\r\n            \"name\": \"Picanya\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTkxMjk2NzMwNzAwNDUwMzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"e760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46194\",\r\n            \"name\": \"Picassent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ0NzYxMjE0MTIzMTE2ODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"e860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46195\",\r\n            \"name\": \"Piles\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.073Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI0NDM1MjIyMDM1Njk4NDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"e960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46196\",\r\n            \"name\": \"Pinet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQxNDkwNjk1MDE0NDcyODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"ea60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46199\",\r\n            \"name\": \"Pobla de Farnals, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjcyMTE0Njg4MzY0Nzc5Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"eb60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46202\",\r\n            \"name\": \"Pobla de Vallbona, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcwNTkzNjgwNDkyMDU3ODA4MTswMDsn\\\"\",\r\n            \"systemId\": \"ec60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46200\",\r\n            \"name\": \"Pobla del Duc, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzM3MjA5NjA2ODcyNzA5ODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"ed60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46203\",\r\n            \"name\": \"Pobla Llarga, la\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIyNzUzODA5NjU4NDM5NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"ee60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46197\",\r\n            \"name\": \"Polinyà de Xúquer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA0Nzg2ODU0MTEyNTMwMjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"ef60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46198\",\r\n            \"name\": \"Potries\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU5ODcwMjE4Mjk4NjQ2NzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"f060e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46205\",\r\n            \"name\": \"Puçol\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg1MDcwMTU4NjI1OTA3ODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"f160e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46201\",\r\n            \"name\": \"Puebla de San Miguel\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAyMjIwODk3Mjc3NzcwMDc4MTswMDsn\\\"\",\r\n            \"systemId\": \"f260e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46204\",\r\n            \"name\": \"Puig de Santa Maria, el\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM2MTQ2NzQ3NDk0ODMzMTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"f360e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46101\",\r\n            \"name\": \"Quart de les Valls\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg0ODM4OTUyNzkwODEyNDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"f460e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46102\",\r\n            \"name\": \"Quart de Poblet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE1NTQxMzg5MjA5NTk1MTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"f560e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46103\",\r\n            \"name\": \"Quartell\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkyNTgzNDEzNzI0MDMyNTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"f660e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46104\",\r\n            \"name\": \"Quatretonda\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.047Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI2MDcxMTAxNzg0ODM5Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"f760e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46206\",\r\n            \"name\": \"Quesa\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA1MzExMzc2ODk4MDQ2MTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"f860e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46207\",\r\n            \"name\": \"Rafelbunyol\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc0MTU1NzE4NDQyMjIwMjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"f960e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46208\",\r\n            \"name\": \"Rafelcofer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.077Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM5ODc3OTE5NDI2MjE2OTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"fa60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46209\",\r\n            \"name\": \"Rafelguaraf\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY5ODg4NTIxMjQyNTUxNjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"fb60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46210\",\r\n            \"name\": \"Ráfol de Salem\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk1NDAyNjc5NDQ1ODA3MzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"fc60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46212\",\r\n            \"name\": \"Real\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAwMDEwOTk2NjgxMTI4NTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"fd60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46211\",\r\n            \"name\": \"Real de Gandia, el\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU5MzAxMDUwNDczNTY4MjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"fe60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46213\",\r\n            \"name\": \"Requena\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIwODgzMzc3OTc1MTgxMTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"ff60e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46214\",\r\n            \"name\": \"Riba-roja de Túria\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDkxMDM2MjU3NTQxMTI2ODUyMTswMDsn\\\"\",\r\n            \"systemId\": \"0061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46215\",\r\n            \"name\": \"Riola\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM0NDg3MjkwMjA3NzcwMjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"0161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46216\",\r\n            \"name\": \"Rocafort\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg3MTM5Nzg2OTgzOTk1MjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"0261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46217\",\r\n            \"name\": \"Rotglà i Corberà\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.08Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTMyMTIwOTY3NTE3MDcwMDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"0361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46218\",\r\n            \"name\": \"Rótova\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE5MTk3MDM3MjkyMjUzMTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"0461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46219\",\r\n            \"name\": \"Rugat\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjMyODc5NDY2NjU0NzA1NzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"0561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46220\",\r\n            \"name\": \"Sagunto/Sagunt\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwNDAxNDQ1NDkwMDUwOTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"0661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46221\",\r\n            \"name\": \"Salem\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYzODU5NjE3MzQ4OTA1OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"0761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46903\",\r\n            \"name\": \"San Antonio de Benagéber\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY3MzI5MjMzODkxMzU2MTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"0861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46222\",\r\n            \"name\": \"Sant Joanet\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY0OTM3MDg1OTM5MTkxMzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"0961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46223\",\r\n            \"name\": \"Sedaví\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjEzNDY2NTQzODAwNzYwNTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"0a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46224\",\r\n            \"name\": \"Segart\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUwOTg0OTU2MzEyNTY4ODE1MTswMDsn\\\"\",\r\n            \"systemId\": \"0b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46225\",\r\n            \"name\": \"Sellent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ5MzExMTc0OTcyODAzODg2MTswMDsn\\\"\",\r\n            \"systemId\": \"0c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46226\",\r\n            \"name\": \"Sempere\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM3MjI3Nzc0MzI4MTA5ODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"0d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46227\",\r\n            \"name\": \"Senyera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.083Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc1MjI0NzQyNDQyNTA2MTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"0e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46228\",\r\n            \"name\": \"Serra\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU2ODQ3OTY0Mjg1NDUzNzExMTswMDsn\\\"\",\r\n            \"systemId\": \"0f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46229\",\r\n            \"name\": \"Siete Aguas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODA0NTgxNzgwMDE4OTU2Njk3MTswMDsn\\\"\",\r\n            \"systemId\": \"1061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46230\",\r\n            \"name\": \"Silla\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc1MDY0NTU2MzUyMDk5OTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"1161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46231\",\r\n            \"name\": \"Simat de la Valldigna\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk5NTExMTQ4NjI0OTI2MDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"1261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46232\",\r\n            \"name\": \"Sinarcas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI3ODcyNTczNjM1MTI4ODMyMTswMDsn\\\"\",\r\n            \"systemId\": \"1361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46233\",\r\n            \"name\": \"Sollana\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc2NDc3MTMyOTI3OTAwNjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"1461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46234\",\r\n            \"name\": \"Sot de Chera\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEwODM4OTk0NzA2MjgyOTExMTswMDsn\\\"\",\r\n            \"systemId\": \"1561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46235\",\r\n            \"name\": \"Sueca\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY4NzQ4NzIwNjcyNzAyNzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"1661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46236\",\r\n            \"name\": \"Sumacàrcer\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU4NjMxNDAyNTIxNjI0NjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"1761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46237\",\r\n            \"name\": \"Tavernes Blanques\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc3ODY3ODY5ODMxODI2NTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"1861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46238\",\r\n            \"name\": \"Tavernes de la Valldigna\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU5NTE5MTQ3NzA4MTA1ODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"1961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46239\",\r\n            \"name\": \"Teresa de Cofrentes\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI1NzI4NzUxMzEwMTM5OTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"1a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46240\",\r\n            \"name\": \"Terrateig\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.087Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc2MDgyMTA4Mzk5NDk5MTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"1b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46241\",\r\n            \"name\": \"Titaguas\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQxNzIwNzQ1NjE2Nzk4NjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46242\",\r\n            \"name\": \"Torrebaja\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgwMzQ4MzMwNjEwODQ1OTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"1d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46243\",\r\n            \"name\": \"Torrella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE4NjI5MTI4OTc3ODAxODQwMTswMDsn\\\"\",\r\n            \"systemId\": \"1e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46244\",\r\n            \"name\": \"Torrent\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI3NzA2NzI4MjY2MTI1ODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"1f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46245\",\r\n            \"name\": \"Torres Torres\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE4MTkzMzE2Njg4MTUwMTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"2061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46246\",\r\n            \"name\": \"Tous\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk1NDYwOTYzODY5NDY0NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"2161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46247\",\r\n            \"name\": \"Tuéjar\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.09Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYwNTk1MjAwNzg5NTQ2NzA5MTswMDsn\\\"\",\r\n            \"systemId\": \"2261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46248\",\r\n            \"name\": \"Turís\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY0OTY5ODcwMzExMjE3MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"2361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46249\",\r\n            \"name\": \"Utiel\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE2NjQwMDk4ODMwODQ5MzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"2461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46250\",\r\n            \"name\": \"València\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODExMDMwNzg0MDU1MDY3NDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"2561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46251\",\r\n            \"name\": \"Vallada\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI5MDY0MzE2MTg4MjY5ODEzMTswMDsn\\\"\",\r\n            \"systemId\": \"2661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46252\",\r\n            \"name\": \"Vallanca\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQ1MjAwNTE3NDUwNTE3OTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"2761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46253\",\r\n            \"name\": \"Vallés\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIwOTI4MTgyMTUxNDAwNzQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"2861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46254\",\r\n            \"name\": \"Venta del Moro\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYzNjA4NjEyMjM0MzEzODc2MTswMDsn\\\"\",\r\n            \"systemId\": \"2961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46255\",\r\n            \"name\": \"Vilallonga/Villalonga\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODUyNzA5OTcxOTYzNjYwOTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"2a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46256\",\r\n            \"name\": \"Vilamarxant\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM1OTcxNDc5MjY0MzcyMjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"2b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46257\",\r\n            \"name\": \"Villanueva de Castellón\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM1NTM3Njg0NDM0NjU0MjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"2c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46258\",\r\n            \"name\": \"Villar del Arzobispo\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgwMDQ4OTc3NjQyMDUwNjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"2d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46259\",\r\n            \"name\": \"Villargordo del Cabriel\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc1NzEzMjQ1MTQyODY1MjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"2e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46260\",\r\n            \"name\": \"Vinalesa\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAzODg5NjYwODcyMDEwMDUwMTswMDsn\\\"\",\r\n            \"systemId\": \"2f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46145\",\r\n            \"name\": \"Xàtiva\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg3ODg4NjM0Njg2NjYwMDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"3061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46143\",\r\n            \"name\": \"Xeraco\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDIyNTQyNjM4MzAwOTk5Mzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"3161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46146\",\r\n            \"name\": \"Xeresa\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.06Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA3MDY3NDA4NjgxNzA5ODIyMTswMDsn\\\"\",\r\n            \"systemId\": \"3261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46110\",\r\n            \"name\": \"Xirivella\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.05Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc2NzAyMTk0MDE3NTM5OTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"3361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46261\",\r\n            \"name\": \"Yátova\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.093Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc5MjkzNTI2NDEzOTgyMjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"3461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46262\",\r\n            \"name\": \"Yesa, La\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM3NTU5OTcxMDY5Njg5NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"3561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"46263\",\r\n            \"name\": \"Zarra\",\r\n            \"provinceNo\": 46,\r\n            \"autonomousCommunityNo\": 10,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM2NTE2MTgxODMxMTU0MTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"3661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47001\",\r\n            \"name\": \"Adalia\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk1ODIwMjg3MDMxMTU0MjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"3761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47002\",\r\n            \"name\": \"Aguasal\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ0Mjc4MDMyNjQ2ODI2MDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"3861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47003\",\r\n            \"name\": \"Aguilar de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4Njk3MTA0MjMwNjUzNTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"3961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47004\",\r\n            \"name\": \"Alaejos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA5ODAzNTE2MDkzNDAzOTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"3a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47005\",\r\n            \"name\": \"Alcazarén\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcwNzU2NTQzNTE0MzIxODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"3b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47006\",\r\n            \"name\": \"Aldea de San Miguel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjAwNzQ0OTExNDkyODczNTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47007\",\r\n            \"name\": \"Aldeamayor de San Martín\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgyMTY3MTg3ODM3MDczODk4MTswMDsn\\\"\",\r\n            \"systemId\": \"3d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47008\",\r\n            \"name\": \"Almenara de Adaja\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.097Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY1ODQ0MjA5NzM4NzExNzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"3e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47009\",\r\n            \"name\": \"Amusquillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ0MjQxMDg2NDQ1MjI2MDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"3f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47010\",\r\n            \"name\": \"Arroyo de la Encomienda\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc5MDgzMDA2OTM5ODI3MjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"4061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47011\",\r\n            \"name\": \"Ataquines\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIyMDE1NDY0MDQ2OTc3OTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"4161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47012\",\r\n            \"name\": \"Bahabón\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI2Mzc0MzQwMTI5NDI5NjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"4261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47013\",\r\n            \"name\": \"Barcial de la Loma\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU3MzM5NDMxMjU2OTE0MDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"4361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47014\",\r\n            \"name\": \"Barruelo del Valle\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk3NjUxMzE0NTAwNzI4MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"4461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47015\",\r\n            \"name\": \"Becilla de Valderaduey\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAwMTgzOTU1MjY1NzkxNDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"4561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47016\",\r\n            \"name\": \"Benafarces\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY1Njk0NzI5MzIyMzA4NjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"4661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47017\",\r\n            \"name\": \"Bercero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ3NzAxMDAxNzM2MDk1MjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"4761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47018\",\r\n            \"name\": \"Berceruelo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.1Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDI0NDEyNzE3NjI5MzcyMTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"4861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47019\",\r\n            \"name\": \"Berrueces\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDkxMzMxMjA5NTM4NzM5NDg4MTswMDsn\\\"\",\r\n            \"systemId\": \"4961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47020\",\r\n            \"name\": \"Bobadilla del Campo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQyOTY2MTAwMzY2OTY4MTAwMTswMDsn\\\"\",\r\n            \"systemId\": \"4a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47021\",\r\n            \"name\": \"Bocigas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUzNDIxMDc4MTI5MDcxOTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"4b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47022\",\r\n            \"name\": \"Bocos de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ5MzA3NzU1Nzg3MjczOTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"4c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47023\",\r\n            \"name\": \"Boecillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI0ODI0MjMwMDUxNTc0MTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"4d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47024\",\r\n            \"name\": \"Bolaños de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc4OTAyMTEyMTc1MDA1MjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"4e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47025\",\r\n            \"name\": \"Brahojos de Medina\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMzNzkwMzk1OTk4NzQ4OTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"4f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47026\",\r\n            \"name\": \"Bustillo de Chaves\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM4MjA5NTEzNTA4OTUxNjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"5061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47027\",\r\n            \"name\": \"Cabezón de Pisuerga\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.103Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM3NDg2MzkwMDI1NTg1MTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"5161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47028\",\r\n            \"name\": \"Cabezón de Valderaduey\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU1OTk2NDgyODI3MTE2OTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"5261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47029\",\r\n            \"name\": \"Cabreros del Monte\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyODAzMTQwMDk3ODA1MDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"5361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47030\",\r\n            \"name\": \"Campaspero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc2MjYyNzM4NjA2NjkxNTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"5461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47031\",\r\n            \"name\": \"Campillo, El\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg0NTg4NDg5Nzc2NTU5NDA1MTswMDsn\\\"\",\r\n            \"systemId\": \"5561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47032\",\r\n            \"name\": \"Camporredondo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDUzOTc1NDA3NDAyMDg1NDM0MTswMDsn\\\"\",\r\n            \"systemId\": \"5661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47033\",\r\n            \"name\": \"Canalejas de Peñafiel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY1NDA2MzgyMDQ1NjEyMjg4MTswMDsn\\\"\",\r\n            \"systemId\": \"5761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47034\",\r\n            \"name\": \"Canillas de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc5ODE4ODMyMjE3MTgyMDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"5861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47035\",\r\n            \"name\": \"Carpio\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc2MjM0ODYxNjQ2ODMyNzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"5961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47036\",\r\n            \"name\": \"Casasola de Arión\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk5MDE0MTg5NTQyNjE1NzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"5a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47037\",\r\n            \"name\": \"Castrejón de Trabancos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA0MzU5NzU5NzkzMDg0MTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"5b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47038\",\r\n            \"name\": \"Castrillo de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU2Nzk4MDc5OTY3MTc3MTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"5c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47039\",\r\n            \"name\": \"Castrillo-Tejeriego\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ4MDMyNTE5NzM0MDgxOTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"5d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47040\",\r\n            \"name\": \"Castrobol\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.107Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY3MTUxNDQ1OTUzNjQ0MjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"5e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47041\",\r\n            \"name\": \"Castrodeza\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA1NDcyNzM0NjU0Mjc5NTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"5f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47042\",\r\n            \"name\": \"Castromembibre\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgyNjAxMzU5NDYwMTY4NDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"6061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47043\",\r\n            \"name\": \"Castromonte\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMyODQ0MjEwOTM2NTU0OTg3MTswMDsn\\\"\",\r\n            \"systemId\": \"6161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47044\",\r\n            \"name\": \"Castronuevo de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEzODQwMjU2NTkyOTY5NDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"6261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47045\",\r\n            \"name\": \"Castronuño\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMzOTc4MjM2Mjk4NDIxNDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"6361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47046\",\r\n            \"name\": \"Castroponce\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMzNTU2NTA2OTEzMzg5MTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"6461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47047\",\r\n            \"name\": \"Castroverde de Cerrato\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg2MjQ1NzEwMTA2NDMzMDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"6561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47048\",\r\n            \"name\": \"Ceinos de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE4NTM1MDgwNTc4MTc0OTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"6661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47049\",\r\n            \"name\": \"Cervillego de la Cruz\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTExNjIzODIzMDc3NjcwNjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"6761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47050\",\r\n            \"name\": \"Cigales\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.11Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE4MzAyODE4MTQ4NTY0MzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"6861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47051\",\r\n            \"name\": \"Ciguñuela\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDIwMjk1MzI0NDQzOTQxMTExMTswMDsn\\\"\",\r\n            \"systemId\": \"6961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47052\",\r\n            \"name\": \"Cistérniga\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA0MDgwMDY0NjY4MzE3MzQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"6a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47053\",\r\n            \"name\": \"Cogeces de Íscar\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc3NDc3NDk2MjEzMjM0NDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"6b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47054\",\r\n            \"name\": \"Cogeces del Monte\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAzMDcyNjQzODg0MjQ0ODY3MTswMDsn\\\"\",\r\n            \"systemId\": \"6c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47055\",\r\n            \"name\": \"Corcos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTI5NDYyMzgwMDgyMzgyNzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"6d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47056\",\r\n            \"name\": \"Corrales de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM5NTgyMTk1NjcwMTEzNTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"6e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47057\",\r\n            \"name\": \"Cubillas de Santa Marta\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDUxOTU4NTUwNjk2NDE5NDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"6f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47058\",\r\n            \"name\": \"Cuenca de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg2ODE5MzgyMTIxMzYwODMyMTswMDsn\\\"\",\r\n            \"systemId\": \"7061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47059\",\r\n            \"name\": \"Curiel de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.113Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk2NTEwMDYyMTUxMjI4Njk4MTswMDsn\\\"\",\r\n            \"systemId\": \"7161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47060\",\r\n            \"name\": \"Encinas de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc4Mzg0MjYzNzAzMzMxNjc3MTswMDsn\\\"\",\r\n            \"systemId\": \"7261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47061\",\r\n            \"name\": \"Esguevillas de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYwNDU4MDg2NzE0MTg1Mjk0MTswMDsn\\\"\",\r\n            \"systemId\": \"7361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47062\",\r\n            \"name\": \"Fombellida\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc0ODg0MjA5NTMxMzI2MDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"7461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47063\",\r\n            \"name\": \"Fompedraza\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUxMjgwNjY0MTE0MjY4MDA0MTswMDsn\\\"\",\r\n            \"systemId\": \"7561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47064\",\r\n            \"name\": \"Fontihoyuelo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk0MTQyNDQzMjk5NDAwMDY4MTswMDsn\\\"\",\r\n            \"systemId\": \"7661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47065\",\r\n            \"name\": \"Fresno el Viejo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjM1NDk1NTc5NzIxNDU3MDczMTswMDsn\\\"\",\r\n            \"systemId\": \"7761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47066\",\r\n            \"name\": \"Fuensaldaña\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ1ODQxODkzNDYwNDY2MDExMTswMDsn\\\"\",\r\n            \"systemId\": \"7861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47067\",\r\n            \"name\": \"Fuente el Sol\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY3NDExOTc2NDQ4MzM0MTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"7961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47068\",\r\n            \"name\": \"Fuente-Olmedo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg0NDQzMTA3MjA2NjkyMTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"7a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47069\",\r\n            \"name\": \"Gallegos de Hornija\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA4NzI5NzQ0MDc0ODQwNjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"7b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47070\",\r\n            \"name\": \"Gatón de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE2OTY0MzQ2NDQzNzMwNTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"7c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47071\",\r\n            \"name\": \"Geria\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQzNzIwNDYyNDgwNzY4NjM3MTswMDsn\\\"\",\r\n            \"systemId\": \"7d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47073\",\r\n            \"name\": \"Herrín de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.117Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQzMTY0MjM5NDg4NzQ3OTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"7e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47074\",\r\n            \"name\": \"Hornillos de Eresma\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE4NTM0MDQ0NDgyNDU4NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47075\",\r\n            \"name\": \"Íscar\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY4MzQwMzUyOTc5NjUyMzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"8061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47076\",\r\n            \"name\": \"Laguna de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcwNTMyNzM4Njg0MjAyODU2MTswMDsn\\\"\",\r\n            \"systemId\": \"8161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47077\",\r\n            \"name\": \"Langayo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ2MjY2MDk0MTM4NjY2MTAyMTswMDsn\\\"\",\r\n            \"systemId\": \"8261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47079\",\r\n            \"name\": \"Llano de Olmedo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0MTkwMjkxNjQ3NDQwNTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"8361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47078\",\r\n            \"name\": \"Lomoviejo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU2MzMyMTc5MjY4ODcwOTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"8461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47080\",\r\n            \"name\": \"Manzanillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODk3ODA0MTM4NTk1OTcyMjQxMTswMDsn\\\"\",\r\n            \"systemId\": \"8561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47081\",\r\n            \"name\": \"Marzales\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzkyNTI1ODE4NzM3MTQ0Mjc0MTswMDsn\\\"\",\r\n            \"systemId\": \"8661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47082\",\r\n            \"name\": \"Matapozuelos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQyODk3MjM4ODYxMjczMDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"8761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47083\",\r\n            \"name\": \"Matilla de los Caños\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.12Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA4ODU2ODQxOTE3ODE0Nzc2MTswMDsn\\\"\",\r\n            \"systemId\": \"8861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47084\",\r\n            \"name\": \"Mayorga\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYzOTQxNjQ1MDgxNzY4MzgxMTswMDsn\\\"\",\r\n            \"systemId\": \"8961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47086\",\r\n            \"name\": \"Medina de Rioseco\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc2NDcwMjk5NzA1ODEyNjQyMTswMDsn\\\"\",\r\n            \"systemId\": \"8a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47085\",\r\n            \"name\": \"Medina del Campo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA0NDU5OTM0NDEyNTg1MTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"8b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47087\",\r\n            \"name\": \"Megeces\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU1Mjg3NjI3MzYwNTk2Mjk1MTswMDsn\\\"\",\r\n            \"systemId\": \"8c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47088\",\r\n            \"name\": \"Melgar de Abajo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc2NjU3NjkxNDA5NzI1NTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47089\",\r\n            \"name\": \"Melgar de Arriba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwNDg0MzUwNjc3Njk3MzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47090\",\r\n            \"name\": \"Mojados\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUzMTA3NTM3ODU2NTM1NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"8f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47091\",\r\n            \"name\": \"Monasterio de Vega\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUwNTgzNTA4MTc2MDM5NTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"9061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47092\",\r\n            \"name\": \"Montealegre de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU5OTc1ODc1ODM0NDM1MjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"9161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47093\",\r\n            \"name\": \"Montemayor de Pililla\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.123Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIyMzEzMzc4MTk4MTE5OTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"9261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47094\",\r\n            \"name\": \"Moral de la Reina\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc5NDMxNzU5MTY5OTU4MTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"9361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47095\",\r\n            \"name\": \"Moraleja de las Panaderas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM4ODYxMzI5MjkwODE2OTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"9461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47096\",\r\n            \"name\": \"Morales de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc0MjA1MDc3ODkyNzY1NDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"9561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47097\",\r\n            \"name\": \"Mota del Marqués\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA2ODI2MzI2NjQwMDE0NTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"9661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47098\",\r\n            \"name\": \"Mucientes\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI5MjU0ODkwOTk4Mjg3NTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"9761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47099\",\r\n            \"name\": \"Mudarra, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAyMDQ3NDA2OTY1MDQ3ODY2MTswMDsn\\\"\",\r\n            \"systemId\": \"9861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47100\",\r\n            \"name\": \"Muriel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA5OTkzNjMxMzI2NTM4NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"9961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47101\",\r\n            \"name\": \"Nava del Rey\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAyNTUwOTgzODIwODUwMDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"9a61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47102\",\r\n            \"name\": \"Nueva Villa de las Torres\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg5OTMwNTg1NjAwMTE0MDM3MTswMDsn\\\"\",\r\n            \"systemId\": \"9b61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47103\",\r\n            \"name\": \"Olivares de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEyMzQ1Njg0MzI5MzIwNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"9c61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47104\",\r\n            \"name\": \"Olmedo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzUxNjAxMjUwMTU5MzE3NDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"9d61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47105\",\r\n            \"name\": \"Olmos de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc2Mzk4MzQyODA1ODQ1NDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"9e61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47106\",\r\n            \"name\": \"Olmos de Peñafiel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYwNjkwNDg4MzgyMTQwODkzMTswMDsn\\\"\",\r\n            \"systemId\": \"9f61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47109\",\r\n            \"name\": \"Palazuelo de Vedija\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQzNTI3ODMxMDE4MTAwMDU4MTswMDsn\\\"\",\r\n            \"systemId\": \"a061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47110\",\r\n            \"name\": \"Parrilla, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc5Njg1NzIzMjY2NTQ2NzczMTswMDsn\\\"\",\r\n            \"systemId\": \"a161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47111\",\r\n            \"name\": \"Pedraja de Portillo, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM0OTI3OTE3NTYyNzE3NzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"a261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47112\",\r\n            \"name\": \"Pedrajas de San Esteban\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.127Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE3NzkxNzI0NDIxNTMyOTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"a361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47113\",\r\n            \"name\": \"Pedrosa del Rey\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE3Njg5MDQxODIyNzY4MjU3MTswMDsn\\\"\",\r\n            \"systemId\": \"a461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47114\",\r\n            \"name\": \"Peñafiel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE1OTA0ODI3NDIxNzkwMjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"a561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47115\",\r\n            \"name\": \"Peñaflor de Hornija\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc0ODI2MDU4OTcyNzU2NTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"a661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47116\",\r\n            \"name\": \"Pesquera de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM2MzU1MzgzOTYwMzg4OTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"a761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47117\",\r\n            \"name\": \"Piña de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDczOTA4ODEwNDAyMjc4MTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"a861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47118\",\r\n            \"name\": \"Piñel de Abajo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkwMTUwMzkxODI2NTU3OTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"a961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47119\",\r\n            \"name\": \"Piñel de Arriba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY0ODczMDczMjYzNzUwMjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"aa61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47121\",\r\n            \"name\": \"Pollos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTE4MDEwMzg5NTc2NTgyNjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"ab61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47122\",\r\n            \"name\": \"Portillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.13Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA3NjEwNTc0NTg2OTQ4MTcwMTswMDsn\\\"\",\r\n            \"systemId\": \"ac61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47123\",\r\n            \"name\": \"Pozal de Gallinas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY5MjA3ODExNTkwNzY5NTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"ad61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47124\",\r\n            \"name\": \"Pozaldez\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc2MTkxMDM4Nzg4OTAyNTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"ae61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47125\",\r\n            \"name\": \"Pozuelo de la Orden\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg2ODc5MzEwOTUxNzYzMTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"af61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47126\",\r\n            \"name\": \"Puras\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM0MjA4ODMxMzQwMzY2MTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"b061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47127\",\r\n            \"name\": \"Quintanilla de Arriba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkzMjQ0MzI4MzY4OTk2Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"b161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47129\",\r\n            \"name\": \"Quintanilla de Onésimo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ4OTQ2NTY0MjIwNTQzNjExMTswMDsn\\\"\",\r\n            \"systemId\": \"b261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47130\",\r\n            \"name\": \"Quintanilla de Trigueros\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUzODI1MDgzMzg1MDMwNDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"b361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47128\",\r\n            \"name\": \"Quintanilla del Molar\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYxNDg3NzkyMjUzODUxMDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"b461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47131\",\r\n            \"name\": \"Rábano\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc5MDA3MDYxNjg0MzQyMDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"b561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47132\",\r\n            \"name\": \"Ramiro\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.133Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcxODYyNDE4MTM3NzQwNTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"b661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47133\",\r\n            \"name\": \"Renedo de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI4MDY5MzM5MzcyOTQwMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"b761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47134\",\r\n            \"name\": \"Roales de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg1NDg1Nzc5ODA5NTA0Njc3MTswMDsn\\\"\",\r\n            \"systemId\": \"b861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47135\",\r\n            \"name\": \"Robladillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk1OTc1NDQ3OTQzMTM1Mjc5MTswMDsn\\\"\",\r\n            \"systemId\": \"b961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47137\",\r\n            \"name\": \"Roturas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ0ODgwOTIwMDM5MzM4MTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"ba61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47138\",\r\n            \"name\": \"Rubí de Bracamonte\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU4NDE1NDQxNDUxNzE1ODc1MTswMDsn\\\"\",\r\n            \"systemId\": \"bb61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47139\",\r\n            \"name\": \"Rueda\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUzMjI4MzI0MDc3Njg0NDg0MTswMDsn\\\"\",\r\n            \"systemId\": \"bc61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47140\",\r\n            \"name\": \"Saelices de Mayorga\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMyNTEwOTIzMTkyNTcxNTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"bd61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47141\",\r\n            \"name\": \"Salvador de Zapardiel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcyMjEyMzg2Njg3MjM2ODA3MTswMDsn\\\"\",\r\n            \"systemId\": \"be61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47142\",\r\n            \"name\": \"San Cebrián de Mazote\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY1NDE2ODcxMDA5Nzk3MTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"bf61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47143\",\r\n            \"name\": \"San Llorente\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU1NzM2NjYwMzAzODkyOTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"c061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47144\",\r\n            \"name\": \"San Martín de Valvení\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg1MzUzNTMyMDk0NjA0Njc0MTswMDsn\\\"\",\r\n            \"systemId\": \"c161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47145\",\r\n            \"name\": \"San Miguel del Arroyo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIyMDU5NTI1OTc3MDA1MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"c261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47146\",\r\n            \"name\": \"San Miguel del Pino\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.137Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk5MDgyNTA1OTA3MzMwMjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"c361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47147\",\r\n            \"name\": \"San Pablo de la Moraleja\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk0MTEyNTgwNDM0NjM1MzY3MTswMDsn\\\"\",\r\n            \"systemId\": \"c461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47148\",\r\n            \"name\": \"San Pedro de Latarce\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ3NzUyNTUwMjQzNzU2NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"c561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47149\",\r\n            \"name\": \"San Pelayo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE0ODYxMTY1NTAyNTYxNDc4MTswMDsn\\\"\",\r\n            \"systemId\": \"c661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47150\",\r\n            \"name\": \"San Román de Hornija\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgyNzU0MDc4NjAwMDI4NDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"c761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47151\",\r\n            \"name\": \"San Salvador\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYwODcwMzM4MDg2MDg2Njc2MTswMDsn\\\"\",\r\n            \"systemId\": \"c861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47156\",\r\n            \"name\": \"San Vicente del Palacio\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTEyMDEwNzc5Nzg0NDI5MDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"c961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47152\",\r\n            \"name\": \"Santa Eufemia del Arroyo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgyNjUwMzUxNzQyMzM3ODQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"ca61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47153\",\r\n            \"name\": \"Santervás de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk3MjkxOTY0MDk1OTI5MDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"cb61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47154\",\r\n            \"name\": \"Santibáñez de Valcorba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM1MDkyNTI5MTUyNDU0NTI2MTswMDsn\\\"\",\r\n            \"systemId\": \"cc61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47155\",\r\n            \"name\": \"Santovenia de Pisuerga\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.14Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYyNzMzOTgzNDg2MzM0MDMwMTswMDsn\\\"\",\r\n            \"systemId\": \"cd61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47157\",\r\n            \"name\": \"Sardón de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIwMTA2Njg3NjUwNzg5MDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"ce61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47158\",\r\n            \"name\": \"Seca, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU4MDA3Mzg4OTM3MjM5NTExMTswMDsn\\\"\",\r\n            \"systemId\": \"cf61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47159\",\r\n            \"name\": \"Serrada\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMwMzY4NTQ1OTY3NTQwMTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"d061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47160\",\r\n            \"name\": \"Siete Iglesias de Trabancos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU3MzI3Njc5NDk4MDA4NDE1MTswMDsn\\\"\",\r\n            \"systemId\": \"d161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47161\",\r\n            \"name\": \"Simancas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI0NDM4NDE3NTk3ODIwMjkzMTswMDsn\\\"\",\r\n            \"systemId\": \"d261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47162\",\r\n            \"name\": \"Tamariz de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMyMzg1MzI5MDU1MDI0NjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"d361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47163\",\r\n            \"name\": \"Tiedra\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ1MjQxMDA3MjY0MDg1MTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"d461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47164\",\r\n            \"name\": \"Tordehumos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzYxMjU4NTA1MTUwNTM5ODczMTswMDsn\\\"\",\r\n            \"systemId\": \"d561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47165\",\r\n            \"name\": \"Tordesillas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.143Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIxNTU0NTA0NDIzNDk3MjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"d661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47169\",\r\n            \"name\": \"Torre de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQzMTMwNTkzNTI0NzA4NTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"d761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47170\",\r\n            \"name\": \"Torre de Peñafiel\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk3ODgwNTAyNDY1ODcxMjc2MTswMDsn\\\"\",\r\n            \"systemId\": \"d861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47166\",\r\n            \"name\": \"Torrecilla de la Abadesa\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE3NjE0MTgxODI3NDA1NTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"d961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47167\",\r\n            \"name\": \"Torrecilla de la Orden\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY0ODc5MDk3MjM5NjM4MzM0MTswMDsn\\\"\",\r\n            \"systemId\": \"da61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47168\",\r\n            \"name\": \"Torrecilla de la Torre\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgyOTUxNDE5OTE4MjQ5ODI1MTswMDsn\\\"\",\r\n            \"systemId\": \"db61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47171\",\r\n            \"name\": \"Torrelobatón\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQxMTMyNzk0MDcxMTEwNjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"dc61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47172\",\r\n            \"name\": \"Torrescárcela\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA4NDI1MjA4ODc2MjkwNTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"dd61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47173\",\r\n            \"name\": \"Traspinedo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY1MzE1NDIxMDE3Mjk4MTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"de61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47174\",\r\n            \"name\": \"Trigueros del Valle\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM1OTg5NDc3MzgxNzk4Mzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"df61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47175\",\r\n            \"name\": \"Tudela de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU1NTM3NDk0NjY1NTkzMDcyMTswMDsn\\\"\",\r\n            \"systemId\": \"e061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47176\",\r\n            \"name\": \"Unión de Campos, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU4ODA2MTk5MTgwNjI0NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"e161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47177\",\r\n            \"name\": \"Urones de Castroponce\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc5OTAzMTg5NzE5NjI2ODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"e261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47178\",\r\n            \"name\": \"Urueña\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.147Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA3MjUwOTc2NDYzMTEzMzY1MTswMDsn\\\"\",\r\n            \"systemId\": \"e361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47179\",\r\n            \"name\": \"Valbuena de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM5ODEzNDA2Nzc3NzE3Mzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"e461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47180\",\r\n            \"name\": \"Valdearcos de la Vega\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk1NDQ5NDgwNzYzNDMyODE4MTswMDsn\\\"\",\r\n            \"systemId\": \"e561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47181\",\r\n            \"name\": \"Valdenebro de los Valles\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTgxMDY0ODc5NjI0NDEwNjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"e661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47182\",\r\n            \"name\": \"Valdestillas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTgxMjUwMDUwNjk3MjgxNzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"e761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47183\",\r\n            \"name\": \"Valdunquillo\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY2OTY3MDAzNDM3OTY2MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"e861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47186\",\r\n            \"name\": \"Valladolid\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY1NDQ4MzgxNzUxNzQ4MTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"e961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47184\",\r\n            \"name\": \"Valoria la Buena\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI0MjIxNDQ5Mjg4MjUzOTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"ea61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47185\",\r\n            \"name\": \"Valverde de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjcwNjIxMjQzNjM0NjgzMDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"eb61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47187\",\r\n            \"name\": \"Vega de Ruiponce\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYyMDg1NTQxOTg1NTIxNTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"ec61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47188\",\r\n            \"name\": \"Vega de Valdetronco\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.15Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzUyMTg1NzQ0NDM3NDE0OTgzMTswMDsn\\\"\",\r\n            \"systemId\": \"ed61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47189\",\r\n            \"name\": \"Velascálvaro\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzM3NDgzODI3NzU3NzYzMzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"ee61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47190\",\r\n            \"name\": \"Velilla\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI1MDc1NjYxNTg2MTYwMDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"ef61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47191\",\r\n            \"name\": \"Velliza\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA1OTEzODAyNzg1MTg4NDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"f061e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47192\",\r\n            \"name\": \"Ventosa de la Cuesta\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ0OTQwNjUwMDIxNzgyODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"f161e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47193\",\r\n            \"name\": \"Viana de Cega\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg3NDI1NDAyMjUzNzM4NTYyMTswMDsn\\\"\",\r\n            \"systemId\": \"f261e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47195\",\r\n            \"name\": \"Villabáñez\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUwMjAyNzI0ODg1OTE0OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"f361e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47196\",\r\n            \"name\": \"Villabaruz de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ5MTc2MDU4NDIxODE2NjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"f461e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47197\",\r\n            \"name\": \"Villabrágima\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAyNjk2OTc0MzQyMjIzNzIwMTswMDsn\\\"\",\r\n            \"systemId\": \"f561e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47198\",\r\n            \"name\": \"Villacarralón\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg5MjExMzcxNTcyODQ1MzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"f661e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47199\",\r\n            \"name\": \"Villacid de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYzMjI3OTA0Nzg5NDQ4NzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"f761e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47200\",\r\n            \"name\": \"Villaco\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk0Njk1Mjk5MTY1MjQ0MTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"f861e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47203\",\r\n            \"name\": \"Villafrades de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgyMDYyNTQ5NDY4MTA5ODI3MTswMDsn\\\"\",\r\n            \"systemId\": \"f961e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47204\",\r\n            \"name\": \"Villafranca de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY2NTE0Mzc1NDUwNTM2NjExMTswMDsn\\\"\",\r\n            \"systemId\": \"fa61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47205\",\r\n            \"name\": \"Villafrechós\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAzOTM1MTE2MDQ3MDcwNzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"fb61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47206\",\r\n            \"name\": \"Villafuerte\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ2OTcwOTA1NTg3ODE5OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"fc61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47207\",\r\n            \"name\": \"Villagarcía de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg2ODM0MTM1MDE4MzQ0MzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"fd61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47208\",\r\n            \"name\": \"Villagómez la Nueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUyNTUwNzY4MTE5NDAzNDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"fe61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47209\",\r\n            \"name\": \"Villalán de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIyMjI5OTUzNjg4NTg0ODkzMTswMDsn\\\"\",\r\n            \"systemId\": \"ff61e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47210\",\r\n            \"name\": \"Villalar de los Comuneros\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg3ODkwMTA1NDY4NTE0Nzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"0062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47211\",\r\n            \"name\": \"Villalba de la Loma\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE2NjcyMjI0MTYyMzM3NjAwMTswMDsn\\\"\",\r\n            \"systemId\": \"0162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47212\",\r\n            \"name\": \"Villalba de los Alcores\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU4NDcwNTc0NTg2NzIwNzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"0262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47213\",\r\n            \"name\": \"Villalbarba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE2OTM0ODA0NDQzODE0NTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"0362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47214\",\r\n            \"name\": \"Villalón de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkwNjUyODE3OTczMDQwNzc2MTswMDsn\\\"\",\r\n            \"systemId\": \"0462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47215\",\r\n            \"name\": \"Villamuriel de Campos\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM4OTQ4MzY3MDY3NTczNjk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47216\",\r\n            \"name\": \"Villán de Tordesillas\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYwMjQ4ODI1NDczNjIyODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"0662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47217\",\r\n            \"name\": \"Villanubla\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.157Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYyMzA5NTY4NjkwODA0Nzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"0762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47218\",\r\n            \"name\": \"Villanueva de Duero\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzAyNTIxNzg1NzU5ODE4NTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"0862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47219\",\r\n            \"name\": \"Villanueva de la Condesa\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg1MzQ3NDEzMDM5MjQyNjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"0962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47220\",\r\n            \"name\": \"Villanueva de los Caballeros\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQzNTU3NzMwODQzMDgxMDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"0a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47221\",\r\n            \"name\": \"Villanueva de los Infantes\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY1NTI2NDcwNzk5NTU2MjYwMTswMDsn\\\"\",\r\n            \"systemId\": \"0b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47222\",\r\n            \"name\": \"Villanueva de San Mancio\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE3MzMzNjQxNjAyOTQzOTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"0c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47223\",\r\n            \"name\": \"Villardefrades\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUxNDUyNTA3MDg1MzY3MTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"0d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47224\",\r\n            \"name\": \"Villarmentero de Esgueva\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI0MjE5NDc3OTA4MTQ4OTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"0e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47225\",\r\n            \"name\": \"Villasexmir\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzEyODUxODg5MTIwMTAyOTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"0f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47226\",\r\n            \"name\": \"Villavaquerín\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.16Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODMyMzAxNTM3NTY5MjUxODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"1062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47227\",\r\n            \"name\": \"Villavellid\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ3MTEyMjA2MjYzNDQ5MjE4MTswMDsn\\\"\",\r\n            \"systemId\": \"1162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47228\",\r\n            \"name\": \"Villaverde de Medina\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzkyNzkxMDYxNTAwNTU5NTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"1262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47229\",\r\n            \"name\": \"Villavicencio de los Caballeros\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc5NDQ4NDUxNTQxMDg1ODc5MTswMDsn\\\"\",\r\n            \"systemId\": \"1362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47194\",\r\n            \"name\": \"Viloria\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.153Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk3MzI2MzE0NDgxNjg2MzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"1462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47230\",\r\n            \"name\": \"Wamba\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkyODkyNDE3ODcxMDY0MjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"1562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47231\",\r\n            \"name\": \"Zaratán\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODUxOTk0MzQzMTA4NjI3ODQyMTswMDsn\\\"\",\r\n            \"systemId\": \"1662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"47232\",\r\n            \"name\": \"Zarza, La\",\r\n            \"provinceNo\": 47,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ5MTE5NzE2OTc2MDY1MTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"1762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48001\",\r\n            \"name\": \"Abadiño\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAyOTA4MjkwNDU4NzgxNDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"1862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48002\",\r\n            \"name\": \"Abanto y Ciérvana-Abanto Zierbena\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY3Mjc0OTkyMTI1MDM1MzM5MTswMDsn\\\"\",\r\n            \"systemId\": \"1962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48911\",\r\n            \"name\": \"Ajangiz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ5NzI2NTQ3MzkyNjg0NDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"1a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48912\",\r\n            \"name\": \"Alonsotegi\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM4ODAzNjM3MjY1OTAyMTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"1b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48003\",\r\n            \"name\": \"Amorebieta-Etxano\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ3NTg1MTA1MDk5MjUyMjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"1c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48004\",\r\n            \"name\": \"Amoroto\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.163Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY4OTMyOTc5NDQ5MDgxOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"1d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48005\",\r\n            \"name\": \"Arakaldo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk3MjQxNzI3MTMxMTU5NTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"1e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48006\",\r\n            \"name\": \"Arantzazu\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE0MTkwODg0Nzc3NDU2MjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"1f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48093\",\r\n            \"name\": \"Areatza\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzAyMzkxNjE5MzkzNTcyMzQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"2062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48009\",\r\n            \"name\": \"Arrankudiaga\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzIwMTA3MDkzNTI4NzYwODQxMTswMDsn\\\"\",\r\n            \"systemId\": \"2162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48914\",\r\n            \"name\": \"Arratzu\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjcwODEwMjE1OTI2ODkzNDMyMTswMDsn\\\"\",\r\n            \"systemId\": \"2262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48010\",\r\n            \"name\": \"Arrieta\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc2ODczMjc2NTMwNTY3NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"2362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48011\",\r\n            \"name\": \"Arrigorriaga\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc2NzI1MTY0NDczMDUxNTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"2462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48023\",\r\n            \"name\": \"Artea\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI3MjIzMzg2MzIwOTExODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"2562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48008\",\r\n            \"name\": \"Artzentales\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc2OTY4OTQzODI3NTA3MzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"2662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48091\",\r\n            \"name\": \"Atxondo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkxNTIyMjU5NjM0NjcxNjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"2762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48070\",\r\n            \"name\": \"Aulesti\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgwMzUxOTE4NjEyODcxMzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"2862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48012\",\r\n            \"name\": \"Bakio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQxNDI5NTcyNTc4NzY2MDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"2962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48090\",\r\n            \"name\": \"Balmaseda\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM3ODE1MDIxNzQ1NzUyNzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"2a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48013\",\r\n            \"name\": \"Barakaldo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE4MjIxODY0MzI1MjUwMjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"2b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48014\",\r\n            \"name\": \"Barrika\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE2MTk1NjEyMjY4NjU4MDcyMTswMDsn\\\"\",\r\n            \"systemId\": \"2c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48015\",\r\n            \"name\": \"Basauri\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY5NTcyMTU0MDUzNTY5MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"2d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48092\",\r\n            \"name\": \"Bedia\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTExMDY3NTgwODU4NzI4NjY3MTswMDsn\\\"\",\r\n            \"systemId\": \"2e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48016\",\r\n            \"name\": \"Berango\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgyMjY3NjE3ODI1MDU1Mjg4MTswMDsn\\\"\",\r\n            \"systemId\": \"2f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48017\",\r\n            \"name\": \"Bermeo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg2ODA5NjUzOTU5MTEzODAxMTswMDsn\\\"\",\r\n            \"systemId\": \"3062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48018\",\r\n            \"name\": \"Berriatua\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDU2OTI3OTY1NjA4MzY1MTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"3162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48019\",\r\n            \"name\": \"Berriz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQzMjkyODI5ODA5MzM5NjAyMTswMDsn\\\"\",\r\n            \"systemId\": \"3262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48020\",\r\n            \"name\": \"Bilbao\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEwNTM2NDg3NTQwNzM2NzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"3362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48021\",\r\n            \"name\": \"Busturia\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTIwMjE2ODg0MzU4NTE1NTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"3462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48901\",\r\n            \"name\": \"Derio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk3NjUwNjAzNzI5MTg4MTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"3562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48026\",\r\n            \"name\": \"Dima\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ4NTUzOTIxMjk5OTYxODcwMTswMDsn\\\"\",\r\n            \"systemId\": \"3662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48027\",\r\n            \"name\": \"Durango\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc0NjY4MTM1MjA5ODIyNjQwMTswMDsn\\\"\",\r\n            \"systemId\": \"3762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48028\",\r\n            \"name\": \"Ea\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkxNTk3MDgxNzUxMzYyMzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"3862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48031\",\r\n            \"name\": \"Elantxobe\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA3MjY5NzUxMzI5MTM4MTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"3962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48032\",\r\n            \"name\": \"Elorrio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQzNTAxNDE5NTgzMzQ5ODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"3a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48902\",\r\n            \"name\": \"Erandio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTIxNDc1MjYxNzMzNTU0Mzk3MTswMDsn\\\"\",\r\n            \"systemId\": \"3b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48033\",\r\n            \"name\": \"Ereño\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM5OTMwNDU1NDcyODQyNjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"3c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48034\",\r\n            \"name\": \"Ermua\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxMzY2ODMyMzI3NDkzNzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"3d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48079\",\r\n            \"name\": \"Errigoiti\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg5Mzc4MjUzODg5NjgyOTkwMTswMDsn\\\"\",\r\n            \"systemId\": \"3e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48029\",\r\n            \"name\": \"Etxebarri\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgyNDI4ODEwMDUyMjE4MzkyMTswMDsn\\\"\",\r\n            \"systemId\": \"3f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48030\",\r\n            \"name\": \"Etxebarria\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc3NjEwMDU3NTI2MTMwNjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"4062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48906\",\r\n            \"name\": \"Forua\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjkwNDkwNzA5ODMxNzIwMDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"4162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48035\",\r\n            \"name\": \"Fruiz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ0NzcwNDA0OTQ0MTkyOTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"4262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48036\",\r\n            \"name\": \"Galdakao\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.173Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUyMzc3NTIzMzQwNDMzMzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"4362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48037\",\r\n            \"name\": \"Galdames\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUwOTI5NTkyMDkwNDg4MTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"4462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48038\",\r\n            \"name\": \"Gamiz-Fika\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkwMTQwNzcyMDQ0NDMwMTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"4562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48039\",\r\n            \"name\": \"Garai\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUzMDMyODAyMTYxNjYxMzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"4662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48040\",\r\n            \"name\": \"Gatika\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYzNTA5ODQ1Njc0MDgzNzU1MTswMDsn\\\"\",\r\n            \"systemId\": \"4762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48041\",\r\n            \"name\": \"Gautegiz Arteaga\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQxMDE4MzM3Njg4MjAwNjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"4862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48046\",\r\n            \"name\": \"Gernika-Lumo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU2OTAzNzgyOTA5NzM1NDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"4962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48044\",\r\n            \"name\": \"Getxo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDIyODMxNzc1MTY5MDYxNzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"4a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48047\",\r\n            \"name\": \"Gizaburuaga\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA5NjM3NDQ5MDM0Nzk4MTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"4b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48042\",\r\n            \"name\": \"Gordexola\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEwMzY4MTM3NjY4NDMzOTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"4c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48043\",\r\n            \"name\": \"Gorliz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM4MjAxOTAyOTYyODAxNTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"4d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48045\",\r\n            \"name\": \"Güeñes\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY5MzMxMTU0NzgwNjI5MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"4e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48048\",\r\n            \"name\": \"Ibarrangelu\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMzMDQ1MTc2MTI3ODU1MTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"4f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48094\",\r\n            \"name\": \"Igorre\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIxOTUzMzM0MzYwNTg3ODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"5062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48049\",\r\n            \"name\": \"Ispaster\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.177Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQwNzA5Njk2NTM0NDEwMTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"5162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48910\",\r\n            \"name\": \"Iurreta\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU1Mjk4OTMzOTU0MTk2OTY4MTswMDsn\\\"\",\r\n            \"systemId\": \"5262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48050\",\r\n            \"name\": \"Izurtza\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIxMjA4NTA2NzEzNjkwNjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"5362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48022\",\r\n            \"name\": \"Karrantza Harana/Valle de Carranza\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg0ODczNjg4NDAxNzIzODkxMTswMDsn\\\"\",\r\n            \"systemId\": \"5462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48907\",\r\n            \"name\": \"Kortezubi\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0NzA2NjQ2Mzk2Njk3NDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"5562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48051\",\r\n            \"name\": \"Lanestosa\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyMjk0ODQ1MzM4Njc4NTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"5662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48052\",\r\n            \"name\": \"Larrabetzu\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg3ODIwNjMxMjcyNjQyNDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"5762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48053\",\r\n            \"name\": \"Laukiz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE5MjIzNjAwOTQyNjIzOTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"5862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48054\",\r\n            \"name\": \"Leioa\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQxMDE1MTAyNzcxNzc4NTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"5962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48057\",\r\n            \"name\": \"Lekeitio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0NjM4NDg2Njg5MTY4MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"5a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48055\",\r\n            \"name\": \"Lemoa\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU5MDU3Mjc0MTM5NDEwNDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"5b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48056\",\r\n            \"name\": \"Lemoiz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAyODYzNjc1MDc0NzI3MDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"5c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48081\",\r\n            \"name\": \"Lezama\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc1NjkxMzAzOTA2MjE0NzQxMTswMDsn\\\"\",\r\n            \"systemId\": \"5d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48903\",\r\n            \"name\": \"Loiu\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA0NjQ2NjIzMDI2MDI0MDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"5e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48058\",\r\n            \"name\": \"Mallabia\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY5MTYwMzc1NjEwNTMyOTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"5f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48059\",\r\n            \"name\": \"Mañaria\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.18Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODYxMDY3NDgwODMwNjA0MDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"6062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48060\",\r\n            \"name\": \"Markina-Xemein\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk2NjAxODkwMTI3MjU2ODUxMTswMDsn\\\"\",\r\n            \"systemId\": \"6162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48061\",\r\n            \"name\": \"Maruri-Jatabe\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI2MTcwMDA0NDYyODQ4OTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"6262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48062\",\r\n            \"name\": \"Mendata\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkzNzEzMjM5MzA1ODcyMDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"6362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48063\",\r\n            \"name\": \"Mendexa\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc1MzAyNzI2NzcxNTI2MTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"6462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48064\",\r\n            \"name\": \"Meñaka\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU1MzQ2NzM0NTgxNjA3NjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"6562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48066\",\r\n            \"name\": \"Morga\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEwNTIzNTgxOTc1NjgwNTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"6662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48068\",\r\n            \"name\": \"Mundaka\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE4MjAxMDAxNDM4NTU0NTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"6762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48069\",\r\n            \"name\": \"Mungia\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDExMjMwODkwNzA5MDQzMzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"6862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48007\",\r\n            \"name\": \"Munitibar-Arbatzegi Gerrikaitz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.167Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcyMDM0MDY0ODgyNzA4NTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"6962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48908\",\r\n            \"name\": \"Murueta\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYxOTkyNjE4MzY4MzEzMjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"6a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48071\",\r\n            \"name\": \"Muskiz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAyNTI2NzMwMTM1MTM5MDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"6b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48067\",\r\n            \"name\": \"Muxika\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0MjIyNTYwNTcyNDY4NjE5MTswMDsn\\\"\",\r\n            \"systemId\": \"6c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48909\",\r\n            \"name\": \"Nabarniz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk0NDY4NDUzNDU5ODAxOTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"6d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48073\",\r\n            \"name\": \"Ondarroa\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY1NDQxNDEzNDEyOTg2ODQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"6e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48075\",\r\n            \"name\": \"Orozko\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYyMzIwNDE3MTg4MDk1MjcxMTswMDsn\\\"\",\r\n            \"systemId\": \"6f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48083\",\r\n            \"name\": \"Ortuella\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg2OTcyMzM0MTkwMDg2NDczMTswMDsn\\\"\",\r\n            \"systemId\": \"7062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48072\",\r\n            \"name\": \"Otxandio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk0NzEwMjYxMjI4MjIzMDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"7162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48077\",\r\n            \"name\": \"Plentzia\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc2ODY0NDc4MjIzMjUyMDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"7262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48078\",\r\n            \"name\": \"Portugalete\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM3MzU2NDQ3NzI2NjEzOTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"7362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48082\",\r\n            \"name\": \"Santurtzi\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ3OTM1NjE3OTU4MTA5MTM4MTswMDsn\\\"\",\r\n            \"systemId\": \"7462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48084\",\r\n            \"name\": \"Sestao\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU4ODEyNTgyMzM1NzA1MjExMTswMDsn\\\"\",\r\n            \"systemId\": \"7562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48904\",\r\n            \"name\": \"Sondika\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjExODgyODc0MzU1NzUyNjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"7662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48085\",\r\n            \"name\": \"Sopela\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEyMDY2MzcxNzYxODY2MDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"7762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48086\",\r\n            \"name\": \"Sopuerta\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzIxMjExNDQyMDg1MjU2ODM0MTswMDsn\\\"\",\r\n            \"systemId\": \"7862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48076\",\r\n            \"name\": \"Sukarrieta\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYyNzIyMjQwMTIxNTQ2NTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"7962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48087\",\r\n            \"name\": \"Trucios-Turtzioz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.19Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI0NTYzMTEwMjE2ODE3MjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"7a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48088\",\r\n            \"name\": \"Ubide\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMyMDM5NzE2OTM4NDA4NzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"7b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48065\",\r\n            \"name\": \"Ugao-Miraballes\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.183Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg4NzY2OTE1NDg0ODE1MDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"7c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48089\",\r\n            \"name\": \"Urduliz\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.193Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAzNDIzOTQ4ODk4NDUzODEzMTswMDsn\\\"\",\r\n            \"systemId\": \"7d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48074\",\r\n            \"name\": \"Urduña/Orduña\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg2ODU5MzgzNTc1NjEyNDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"7e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48080\",\r\n            \"name\": \"Valle de Trápaga-Trapagaran\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.187Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAzMzAzMjQ3NzIxMTAxOTczMTswMDsn\\\"\",\r\n            \"systemId\": \"7f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48095\",\r\n            \"name\": \"Zaldibar\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg1OTUwNzIyNzczNzQyOTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"8062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48096\",\r\n            \"name\": \"Zalla\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcwNDk5MTM3NDkxMDk3MjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"8162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48905\",\r\n            \"name\": \"Zamudio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzAxNTEzNjU1OTIxNTA1NDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48097\",\r\n            \"name\": \"Zaratamo\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.197Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI0NzQwNTI4OTI2NTI1NjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"8362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48024\",\r\n            \"name\": \"Zeanuri\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI1MjIzMTUzMTk0NDUxOTcxMTswMDsn\\\"\",\r\n            \"systemId\": \"8462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48025\",\r\n            \"name\": \"Zeberio\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.17Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI4ODk1MzQzNjI0MTY1NjI3MTswMDsn\\\"\",\r\n            \"systemId\": \"8562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48913\",\r\n            \"name\": \"Zierbena\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAwOTc4MTMwMTM1NzUyODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"8662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"48915\",\r\n            \"name\": \"Ziortza-Bolibar\",\r\n            \"provinceNo\": 48,\r\n            \"autonomousCommunityNo\": 16,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMyMzg4NDQwOTUzMzE3NTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"8762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49002\",\r\n            \"name\": \"Abezames\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTExODA5OTEzMTU3NzQ0NDQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"8862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49003\",\r\n            \"name\": \"Alcañices\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTIzMzcwOTQyMTg2ODY1MjM1MTswMDsn\\\"\",\r\n            \"systemId\": \"8962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49004\",\r\n            \"name\": \"Alcubilla de Nogales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.2Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA3NjU5NjY3MTU2MDM3Njk4MTswMDsn\\\"\",\r\n            \"systemId\": \"8a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49005\",\r\n            \"name\": \"Alfaraz de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAyOTI3MjE3MDE3MTI4NTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"8b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49006\",\r\n            \"name\": \"Algodre\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDIzODE2OTU5MjM1NzE1MDAzMTswMDsn\\\"\",\r\n            \"systemId\": \"8c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49007\",\r\n            \"name\": \"Almaraz de Duero\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc1NDEyNzgzMzAzNjQ2MzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"8d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49008\",\r\n            \"name\": \"Almeida de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc0MDk3NDE5MzM5ODA2MzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"8e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49009\",\r\n            \"name\": \"Andavías\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTcyNTUxNjY4MjY2Nzk4MjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"8f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49010\",\r\n            \"name\": \"Arcenillas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc0NzUxMTg2Njk4MjkyOTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"9062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49011\",\r\n            \"name\": \"Arcos de la Polvorosa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgwNzA3MDEyODAyMjQzODYwMTswMDsn\\\"\",\r\n            \"systemId\": \"9162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49012\",\r\n            \"name\": \"Argañín\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQxNjQzMjYwNzA1Njk4NjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"9262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49013\",\r\n            \"name\": \"Argujillo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.203Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY4OTAzMTc1MzgwMTM4MDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"9362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49014\",\r\n            \"name\": \"Arquillinos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTMxODg0MTU0MTM5Nzk2MTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"9462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49015\",\r\n            \"name\": \"Arrabalde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYwNzM1ODExNjcwMDcyNzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"9562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49016\",\r\n            \"name\": \"Aspariegos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE4ODAwNDc3MTQ2NzQzNzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"9662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49017\",\r\n            \"name\": \"Asturianos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ1MDUyNzcyNDQ0NzIyMTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"9762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49018\",\r\n            \"name\": \"Ayoó de Vidriales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIwMjcxMTEzNjQ0MjUxMDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"9862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49019\",\r\n            \"name\": \"Barcial del Barco\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE3ODY0NTczMTMwMTUzNTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"9962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49020\",\r\n            \"name\": \"Belver de los Montes\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYzMzU1MTQ1ODcwMzMyMjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"9a62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49021\",\r\n            \"name\": \"Benavente\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI2MzUzMjk1MjI0MTA3ODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"9b62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49022\",\r\n            \"name\": \"Benegiles\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc5NzE5NTI4MzY2MDA1MzQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"9c62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49023\",\r\n            \"name\": \"Bermillo de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI0ODkyMDczNzE0NDUxNTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"9d62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49024\",\r\n            \"name\": \"Bóveda de Toro, La\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjcwNDA5NTYyODgyNDE1ODI2MTswMDsn\\\"\",\r\n            \"systemId\": \"9e62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49025\",\r\n            \"name\": \"Bretó\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA3NDEzMzUxNjQ5NDEzMDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"9f62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49026\",\r\n            \"name\": \"Bretocino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.207Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM5NTI3NTYzODE2NzA2NzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"a062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49027\",\r\n            \"name\": \"Brime de Sog\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk0MTYxMDc0OTgzNzU0MTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"a162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49028\",\r\n            \"name\": \"Brime de Urz\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE1NTI0NzQ4NzkzMDUwODgxMTswMDsn\\\"\",\r\n            \"systemId\": \"a262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49029\",\r\n            \"name\": \"Burganes de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUyMjU4OTE5ODc2NzQ0NjM0MTswMDsn\\\"\",\r\n            \"systemId\": \"a362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49030\",\r\n            \"name\": \"Bustillo del Oro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYxMzU1Nzc1MzYyOTEzNDc0MTswMDsn\\\"\",\r\n            \"systemId\": \"a462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49031\",\r\n            \"name\": \"Cabañas de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY3Njc5Nzg3OTU3MDUyNjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"a562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49032\",\r\n            \"name\": \"Calzadilla de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzkxOTg4Mzg3MjkzOTQwMDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"a662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49033\",\r\n            \"name\": \"Camarzana de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQxODEzOTE4MTIyNDAxNzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"a762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49034\",\r\n            \"name\": \"Cañizal\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTAzMjc1MzM0OTA5MjE2NDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"a862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49035\",\r\n            \"name\": \"Cañizo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.21Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM2NTQ0Njk2MTY2NTkxMTAzMTswMDsn\\\"\",\r\n            \"systemId\": \"a962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49036\",\r\n            \"name\": \"Carbajales de Alba\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYyMjY4NTkwMDE3NDI5NDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"aa62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49037\",\r\n            \"name\": \"Carbellino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA4NTI0NzYzMTE3Mjk2MzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"ab62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49038\",\r\n            \"name\": \"Casaseca de Campeán\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU1MDQwNzY0MTgxMzc0MzQwMTswMDsn\\\"\",\r\n            \"systemId\": \"ac62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49039\",\r\n            \"name\": \"Casaseca de las Chanas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg3MzAyNzA0MjcwNjU4MzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"ad62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49040\",\r\n            \"name\": \"Castrillo de la Guareña\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA5NDQyMDUzNzY5MDU2ODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"ae62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49041\",\r\n            \"name\": \"Castrogonzalo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg1NjUzMzk1MDU0NzUwMzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"af62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49042\",\r\n            \"name\": \"Castronuevo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI3NDI2MTEyNDAxNzA2OTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"b062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49043\",\r\n            \"name\": \"Castroverde de Campos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA4NjI2MzY2ODM4MTc0NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"b162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49044\",\r\n            \"name\": \"Cazurra\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUyNjQyNTA4MjQyODkzNTQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"b262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49046\",\r\n            \"name\": \"Cerecinos de Campos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.213Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMyNzQwNjIyNDgxODU3MDYzMTswMDsn\\\"\",\r\n            \"systemId\": \"b362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49047\",\r\n            \"name\": \"Cerecinos del Carrizal\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA0NDM2NjA3MDUyOTM3NTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"b462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49048\",\r\n            \"name\": \"Cernadilla\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM4NjI3ODY2NTUwMDczNDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"b562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49050\",\r\n            \"name\": \"Cobreros\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgyMzUyNjQ1ODU1NTIwNDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"b662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49052\",\r\n            \"name\": \"Coomonte\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExNDgzNzgxNjkwODAzNTMyMTswMDsn\\\"\",\r\n            \"systemId\": \"b762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49053\",\r\n            \"name\": \"Coreses\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQwMDI3NDI0NTQxMjgyMTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"b862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49054\",\r\n            \"name\": \"Corrales del Vino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYyMTQ5NzMzOTAzNzM0NTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"b962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49055\",\r\n            \"name\": \"Cotanes del Monte\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY4MzAxMTUzNTkxODQ5MDE4MTswMDsn\\\"\",\r\n            \"systemId\": \"ba62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49056\",\r\n            \"name\": \"Cubillos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE4OTIyNDE1NTY2MTE2NjU5MTswMDsn\\\"\",\r\n            \"systemId\": \"bb62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49057\",\r\n            \"name\": \"Cubo de Benavente\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg5NjQ2MzE3NjkyOTMwMzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"bc62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49058\",\r\n            \"name\": \"Cubo de Tierra del Vino, El\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgwMDM4OTQ4MTkzODYyMDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"bd62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49059\",\r\n            \"name\": \"Cuelgamures\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ1MjY4OTEyOTEzMTY0ODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"be62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49061\",\r\n            \"name\": \"Entrala\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY3MTAzMzM1NjA4MDkwMDE5MTswMDsn\\\"\",\r\n            \"systemId\": \"bf62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49062\",\r\n            \"name\": \"Espadañedo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.217Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTcwMzgwNTc4MTY0MjI4MjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"c062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49063\",\r\n            \"name\": \"Faramontanos de Tábara\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk1Mzg4NzM0OTMzMDMxMDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"c162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49064\",\r\n            \"name\": \"Fariza\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI4OTAxNjcyMTQ4ODU0Njg2MTswMDsn\\\"\",\r\n            \"systemId\": \"c262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49065\",\r\n            \"name\": \"Fermoselle\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQwODU0ODM2MTgzNTc3MDkxMTswMDsn\\\"\",\r\n            \"systemId\": \"c362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49066\",\r\n            \"name\": \"Ferreras de Abajo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI5MTAwMDE0NDYwMDMxNDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"c462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49067\",\r\n            \"name\": \"Ferreras de Arriba\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM3NTE0NTY2NTE3MzEyOTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"c562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49068\",\r\n            \"name\": \"Ferreruela\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg0Mzk0NzQ4NjA2ODk3NzI1MTswMDsn\\\"\",\r\n            \"systemId\": \"c662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49069\",\r\n            \"name\": \"Figueruela de Arriba\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTg5MzQ2ODc1ODI1OTYzMzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"c762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49071\",\r\n            \"name\": \"Fonfría\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgxMzc3ODg2NjIxNTc5NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"c862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49075\",\r\n            \"name\": \"Fresno de la Polvorosa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI5Njc5OTYwMjMwMDc4OTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"c962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49076\",\r\n            \"name\": \"Fresno de la Ribera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg1NTI2NjI4NjU3NzczNDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"ca62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49077\",\r\n            \"name\": \"Fresno de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ4OTY3NDgyNjg3OTA0MDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"cb62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49078\",\r\n            \"name\": \"Friera de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU5MjMwNTI0MTQ1ODc1NTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"cc62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49079\",\r\n            \"name\": \"Fuente Encalada\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg0MTMxMjc1ODM5MTIzMzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"cd62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49080\",\r\n            \"name\": \"Fuentelapeña\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk4OTc0Mzc4MzcwNjc5NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"ce62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49082\",\r\n            \"name\": \"Fuentes de Ropel\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1Mjg3MDU4NTQyNjM2MDkzMTswMDsn\\\"\",\r\n            \"systemId\": \"cf62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49081\",\r\n            \"name\": \"Fuentesaúco\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.22Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg4Mzg0Njc5ODI3NDI2ODEyMTswMDsn\\\"\",\r\n            \"systemId\": \"d062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49083\",\r\n            \"name\": \"Fuentesecas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY1ODgyODQwNjcyMjQ3NDY2MTswMDsn\\\"\",\r\n            \"systemId\": \"d162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49084\",\r\n            \"name\": \"Fuentespreadas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM3NTUzNDY4MTgyODgwMTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"d262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49085\",\r\n            \"name\": \"Galende\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjAyNzc2Nzk2NTg1ODUyMzkzMTswMDsn\\\"\",\r\n            \"systemId\": \"d362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49086\",\r\n            \"name\": \"Gallegos del Pan\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE0NTk4ODk5OTI2NjczOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"d462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49087\",\r\n            \"name\": \"Gallegos del Río\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU5MjA2OTU4MTY4OTg2NTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"d562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49088\",\r\n            \"name\": \"Gamones\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg0MTgzNzk5NzE4MDEyMTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"d662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49090\",\r\n            \"name\": \"Gema\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc1MTk0OTU4NDQ1NjQ1MzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"d762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49091\",\r\n            \"name\": \"Granja de Moreruela\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgwOTM4NzI2MzYzNzM0MzU5MTswMDsn\\\"\",\r\n            \"systemId\": \"d862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49092\",\r\n            \"name\": \"Granucillo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg5NTgyMTg1NTI5NzM2MzMxMTswMDsn\\\"\",\r\n            \"systemId\": \"d962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49093\",\r\n            \"name\": \"Guarrate\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.223Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ3NTI2MDEzMjczNjkyMTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"da62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49094\",\r\n            \"name\": \"Hermisende\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzYxMTcwNDkyMzA5OTQ1OTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"db62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49095\",\r\n            \"name\": \"Hiniesta, La\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkwMTkxOTM4NTMxMjgxMTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"dc62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49096\",\r\n            \"name\": \"Jambrina\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkyMzIwNzQ3OTkxOTkwNTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"dd62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49097\",\r\n            \"name\": \"Justel\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMxNDY4NjU2MzU4NDM4NTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"de62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49098\",\r\n            \"name\": \"Losacino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY4OTQyNTgxNTc4OTUzNDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"df62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49099\",\r\n            \"name\": \"Losacio\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU2MTY0NTYzNTA4MTAxOTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"e062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49100\",\r\n            \"name\": \"Lubián\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc3MzQyODk0OTkwNDUwMTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"e162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49101\",\r\n            \"name\": \"Luelmo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE4NjQwMDA2MzI2MjQxNzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"e262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49102\",\r\n            \"name\": \"Maderal, El\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAwMjAwMTc3ODM1NzAyNjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"e362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49103\",\r\n            \"name\": \"Madridanos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTgxMjU0ODIzMjMzOTI2MTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"e462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49104\",\r\n            \"name\": \"Mahide\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjYwMDc4MjUyNzk5NDk3OTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"e562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49105\",\r\n            \"name\": \"Maire de Castroponce\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTgzMjE1OTcxMDM3NTEzOTMwMTswMDsn\\\"\",\r\n            \"systemId\": \"e662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49107\",\r\n            \"name\": \"Malva\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.227Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc1ODcxMDc4MTYxMDE4NzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"e762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49108\",\r\n            \"name\": \"Manganeses de la Lampreana\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA3Mjc1Mjg5NjQwNzA4ODE2MTswMDsn\\\"\",\r\n            \"systemId\": \"e862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49109\",\r\n            \"name\": \"Manganeses de la Polvorosa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA4ODYwNjI4OTA4MzA5MzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"e962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49110\",\r\n            \"name\": \"Manzanal de Arriba\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc0MjEyMzkyMTQ5OTAwNTQ3MTswMDsn\\\"\",\r\n            \"systemId\": \"ea62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49112\",\r\n            \"name\": \"Manzanal de los Infantes\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjcwMzE2MTIzNjU5NjUzMjI4MTswMDsn\\\"\",\r\n            \"systemId\": \"eb62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49111\",\r\n            \"name\": \"Manzanal del Barco\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ0OTcwNzg3OTA1ODE0MjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"ec62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49113\",\r\n            \"name\": \"Matilla de Arzón\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgwMDA3ODQ3MTQwNTk4NjE1MTswMDsn\\\"\",\r\n            \"systemId\": \"ed62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49114\",\r\n            \"name\": \"Matilla la Seca\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk4ODg1MjI2NTY0MzE3MDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"ee62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49115\",\r\n            \"name\": \"Mayalde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk5MzAzNTI1NTg1MzQ2MDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"ef62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49116\",\r\n            \"name\": \"Melgar de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.23Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIxODg2NjQ3Mjg3OTY1Nzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"f062e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49117\",\r\n            \"name\": \"Micereces de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU1NTIyNjA2NjQ0MDU4OTYzMTswMDsn\\\"\",\r\n            \"systemId\": \"f162e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49118\",\r\n            \"name\": \"Milles de la Polvorosa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM1NzAyNzYwMjAyNjcwNTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"f262e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49119\",\r\n            \"name\": \"Molacillos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEwOTgxMDYyNTQxMzA2NDEwMTswMDsn\\\"\",\r\n            \"systemId\": \"f362e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49120\",\r\n            \"name\": \"Molezuelas de la Carballeda\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzMzNTgxMjU0MTQzODE1ODA2MTswMDsn\\\"\",\r\n            \"systemId\": \"f462e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49121\",\r\n            \"name\": \"Mombuey\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI1MTM2MTA2OTUwNjg0MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"f562e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49122\",\r\n            \"name\": \"Monfarracinos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkyNDYxOTg3MDIyMjcwNzg2MTswMDsn\\\"\",\r\n            \"systemId\": \"f662e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49123\",\r\n            \"name\": \"Montamarta\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI0NDEyMzE1Nzk0ODUxMzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"f762e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49124\",\r\n            \"name\": \"Moral de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc1MTE0MDQwNjYwMzI1NDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"f862e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49126\",\r\n            \"name\": \"Moraleja de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM2MjY1NDE5MzExNTc0OTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"f962e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49125\",\r\n            \"name\": \"Moraleja del Vino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.233Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU1NDMxNTYwMDY0MjQyOTI3MTswMDsn\\\"\",\r\n            \"systemId\": \"fa62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49128\",\r\n            \"name\": \"Morales de Rey\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzcyMzg5NTg2MzU2NjU2NjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"fb62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49129\",\r\n            \"name\": \"Morales de Toro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY2Njg0MDczNDY3ODY0NDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"fc62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49130\",\r\n            \"name\": \"Morales de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ1NjkzMDgxMzcwNjEzODIzMTswMDsn\\\"\",\r\n            \"systemId\": \"fd62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49127\",\r\n            \"name\": \"Morales del Vino\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUwOTk5MTY2NTQ0MjE5Njk1MTswMDsn\\\"\",\r\n            \"systemId\": \"fe62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49131\",\r\n            \"name\": \"Moralina\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDExMTIwOTg2OTQxOTU1NDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"ff62e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49132\",\r\n            \"name\": \"Moreruela de los Infanzones\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTMzMjcyMTkzMzUxMTM1NTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49133\",\r\n            \"name\": \"Moreruela de Tábara\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUxNDIyMzMyMjQyNjg1NDI5MTswMDsn\\\"\",\r\n            \"systemId\": \"0163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49134\",\r\n            \"name\": \"Muelas de los Caballeros\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgxMjk4MTczNTM0OTQ1ODg2MTswMDsn\\\"\",\r\n            \"systemId\": \"0263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49135\",\r\n            \"name\": \"Muelas del Pan\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAzNTU2OTcwODQ5NDc5NTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"0363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49136\",\r\n            \"name\": \"Muga de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYzNjA4NDcyNDg0MTE0MjMwMTswMDsn\\\"\",\r\n            \"systemId\": \"0463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49137\",\r\n            \"name\": \"Navianos de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwNjQzMTE1MDY2MzU2MzI2MTswMDsn\\\"\",\r\n            \"systemId\": \"0563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49138\",\r\n            \"name\": \"Olmillos de Castro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc5NDQ0Njk3MDg1Njk2OTkxMTswMDsn\\\"\",\r\n            \"systemId\": \"0663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49139\",\r\n            \"name\": \"Otero de Bodas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.237Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA5NTYwOTY4MTk3MTE0MTA0MTswMDsn\\\"\",\r\n            \"systemId\": \"0763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49141\",\r\n            \"name\": \"Pajares de la Lampreana\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU3NjAwMDE4MDcwMzIwODk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49143\",\r\n            \"name\": \"Palacios de Sanabria\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkxNjM4MzI1MzA1OTY0NzM4MTswMDsn\\\"\",\r\n            \"systemId\": \"0963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49142\",\r\n            \"name\": \"Palacios del Pan\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjIzOTI5OTM1NDM3MDcwMjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"0a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49145\",\r\n            \"name\": \"Pedralba de la Pradería\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE2ODMwOTk0NTEyMDA2NjczMTswMDsn\\\"\",\r\n            \"systemId\": \"0b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49146\",\r\n            \"name\": \"Pego, El\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE0NTE1MzcwMjc0NDE2NDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"0c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49147\",\r\n            \"name\": \"Peleagonzalo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY0MzE3OTg1OTM1MTc0Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"0d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49148\",\r\n            \"name\": \"Peleas de Abajo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA2NzkwMjU3Nzk0MTYzODQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"0e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49149\",\r\n            \"name\": \"Peñausende\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkyOTAzOTcwMTUzMDA0ODc3MTswMDsn\\\"\",\r\n            \"systemId\": \"0f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49150\",\r\n            \"name\": \"Peque\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.24Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODAwNzg4NDQ0MDM4OTk4NDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"1063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49151\",\r\n            \"name\": \"Perdigón, El\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc0MzQxMDc1ODg3NTEwOTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"1163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49152\",\r\n            \"name\": \"Pereruela\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE4ODg3MTE2MDgzNjU4NzExMTswMDsn\\\"\",\r\n            \"systemId\": \"1263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49153\",\r\n            \"name\": \"Perilla de Castro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc1NDA3NjUwMjY5ODIzMDgyMTswMDsn\\\"\",\r\n            \"systemId\": \"1363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49154\",\r\n            \"name\": \"Pías\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI3MzAwMjI1MTMzNjQ0NzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"1463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49155\",\r\n            \"name\": \"Piedrahita de Castro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQyODM5NzM0ODYzODE5NDE0MTswMDsn\\\"\",\r\n            \"systemId\": \"1563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49156\",\r\n            \"name\": \"Pinilla de Toro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ5MjA3OTM2OTA4MDY1ODQyMTswMDsn\\\"\",\r\n            \"systemId\": \"1663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49157\",\r\n            \"name\": \"Pino del Oro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTE2MjE5MDEwMDA3MTc1NzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"1763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49158\",\r\n            \"name\": \"Piñero, El\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDEwMjU4OTgyMTc2MzIzNDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"1863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49160\",\r\n            \"name\": \"Pobladura de Valderaduey\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY0MDQ0Njg0NTM3Nzg0NjYyMTswMDsn\\\"\",\r\n            \"systemId\": \"1963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49159\",\r\n            \"name\": \"Pobladura del Valle\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.243Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAxODk1MDYwMzQ0NTU1Njg3MTswMDsn\\\"\",\r\n            \"systemId\": \"1a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49162\",\r\n            \"name\": \"Porto\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg5OTM3NDUzOTI5NjE1MDQzMTswMDsn\\\"\",\r\n            \"systemId\": \"1b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49163\",\r\n            \"name\": \"Pozoantiguo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMzMDk1NDIzNjYxMDcxNjU2MTswMDsn\\\"\",\r\n            \"systemId\": \"1c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49164\",\r\n            \"name\": \"Pozuelo de Tábara\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg5MzcyNjc5NTE0MTA3NDM0MTswMDsn\\\"\",\r\n            \"systemId\": \"1d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49165\",\r\n            \"name\": \"Prado\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMyMjEyNzI2NzY1NDI5Nzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"1e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49166\",\r\n            \"name\": \"Puebla de Sanabria\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk1NDU5ODk0Njg3MDU0MTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"1f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49167\",\r\n            \"name\": \"Pueblica de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc1NjAxOTM5OTY5MzgwNzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"2063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49170\",\r\n            \"name\": \"Quintanilla de Urz\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM3NDIwNzQ2MTYzNjk2MTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"2163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49168\",\r\n            \"name\": \"Quintanilla del Monte\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYxOTc0ODUwNDc3MjEwOTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"2263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49169\",\r\n            \"name\": \"Quintanilla del Olmo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY0ODgyMDQ3NDY0Mzk1Mzg4MTswMDsn\\\"\",\r\n            \"systemId\": \"2363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49171\",\r\n            \"name\": \"Quiruelas de Vidriales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg2MzE5MTMwNDQwODE3OTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"2463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49172\",\r\n            \"name\": \"Rabanales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkxMTYwODg5Nzg0NzU5NzU4MTswMDsn\\\"\",\r\n            \"systemId\": \"2563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49173\",\r\n            \"name\": \"Rábano de Aliste\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYzMzA4MTk0MTM2MjQyOTQzMTswMDsn\\\"\",\r\n            \"systemId\": \"2663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49174\",\r\n            \"name\": \"Requejo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.247Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc0MTExNjI3OTM0OTkxMjE4MTswMDsn\\\"\",\r\n            \"systemId\": \"2763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49175\",\r\n            \"name\": \"Revellinos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg5ODEyOTI2NjM0NDg2ODI0MTswMDsn\\\"\",\r\n            \"systemId\": \"2863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49176\",\r\n            \"name\": \"Riofrío de Aliste\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTEwNzgzMzk4Nzk3MTMxMzA1MTswMDsn\\\"\",\r\n            \"systemId\": \"2963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49177\",\r\n            \"name\": \"Rionegro del Puente\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAxNDE5OTEzNDE2MjE0NTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"2a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49178\",\r\n            \"name\": \"Roales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE3OTUwNTY4NjIzMjY0NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"2b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49179\",\r\n            \"name\": \"Robleda-Cervantes\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5MDA3ODA3OTM0NDIwNDU2MTswMDsn\\\"\",\r\n            \"systemId\": \"2c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49180\",\r\n            \"name\": \"Roelos de Sayago\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ4NjgyMzc3MjI1MjUwMzAzMTswMDsn\\\"\",\r\n            \"systemId\": \"2d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49181\",\r\n            \"name\": \"Rosinos de la Requejada\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxODY0NzEyMDcxOTkxMjIxMTswMDsn\\\"\",\r\n            \"systemId\": \"2e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49183\",\r\n            \"name\": \"Salce\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk0OTY3MzczMzkyODI5Njk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49184\",\r\n            \"name\": \"Samir de los Caños\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ3ODk1MTU0OTQ0MzQyMDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"3063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49185\",\r\n            \"name\": \"San Agustín del Pozo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQyMDUzODk5MTk4MjU1MDI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49186\",\r\n            \"name\": \"San Cebrián de Castro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk1NDI4NTc3NDk5Njc0NTA4MTswMDsn\\\"\",\r\n            \"systemId\": \"3263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49187\",\r\n            \"name\": \"San Cristóbal de Entreviñas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.25Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEzMzU5MDM5Mzc0NzU4ODcyMTswMDsn\\\"\",\r\n            \"systemId\": \"3363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49188\",\r\n            \"name\": \"San Esteban del Molar\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc0OTI4MTA2MDYwNjE4MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"3463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49189\",\r\n            \"name\": \"San Justo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc5Mzk5NTA3NTY2MDc5MjQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"3563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49190\",\r\n            \"name\": \"San Martín de Valderaduey\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQyMjU3MDg0NzEyODcyNTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"3663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49191\",\r\n            \"name\": \"San Miguel de la Ribera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAyNzQwNzAyNjg4Mjk5MTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"3763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49192\",\r\n            \"name\": \"San Miguel del Valle\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYzMzM2MzMzOTE2Mzg2OTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"3863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49193\",\r\n            \"name\": \"San Pedro de Ceque\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTU5Njc4MTg0ODYzMTcxNDU1MTswMDsn\\\"\",\r\n            \"systemId\": \"3963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49194\",\r\n            \"name\": \"San Pedro de la Nave-Almendra\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYwMDg5MzgyMzc3NDU5OTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"3a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49208\",\r\n            \"name\": \"San Vicente de la Cabeza\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI4NjkzMTY5NDM4Mzg1MDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"3b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49209\",\r\n            \"name\": \"San Vitero\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU1ODE4OTQ1Nzg1NzQ1NjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"3c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49197\",\r\n            \"name\": \"Santa Clara de Avedillo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgzODk2MDc0OTY0ODU5MTU3MTswMDsn\\\"\",\r\n            \"systemId\": \"3d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49199\",\r\n            \"name\": \"Santa Colomba de las Monjas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI3MzQyODQ3OTY1OTMzNjg0MTswMDsn\\\"\",\r\n            \"systemId\": \"3e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49200\",\r\n            \"name\": \"Santa Cristina de la Polvorosa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.253Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4MjE2MjEyMjk4MTA4MTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"3f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49201\",\r\n            \"name\": \"Santa Croya de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjcxNTg0NjA3MTgzMzA3OTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"4063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49202\",\r\n            \"name\": \"Santa Eufemia del Barco\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM0MTYxMDI5ODk2MTY1NDE3MTswMDsn\\\"\",\r\n            \"systemId\": \"4163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49203\",\r\n            \"name\": \"Santa María de la Vega\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk2MTc2NDI4NjI0NDA2MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"4263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49204\",\r\n            \"name\": \"Santa María de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjg1MjcxNzc4NDY5OTI4NjE2MTswMDsn\\\"\",\r\n            \"systemId\": \"4363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49205\",\r\n            \"name\": \"Santibáñez de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgyNDQ5NTM0MzQzMTEwODQwMTswMDsn\\\"\",\r\n            \"systemId\": \"4463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49206\",\r\n            \"name\": \"Santibáñez de Vidriales\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDEzNTEzOTY4NDUwNDczOTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"4563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49207\",\r\n            \"name\": \"Santovenia\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE4MjMyMjE5MzQ0MjU5MzQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"4663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49210\",\r\n            \"name\": \"Sanzoles\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg3ODI4MDQ0Nzk4ODk4MDQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"4763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49214\",\r\n            \"name\": \"Tábara\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQyNDMzNTk4NTYyMjI0MjY0MTswMDsn\\\"\",\r\n            \"systemId\": \"4863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49216\",\r\n            \"name\": \"Tapioles\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgwODQzNTkxNDc2MjUwODYzMTswMDsn\\\"\",\r\n            \"systemId\": \"4963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49219\",\r\n            \"name\": \"Toro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.257Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMyMjA5MTU2ODY1NjEyNjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"4a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49220\",\r\n            \"name\": \"Torre del Valle, La\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk2OTc3ODY3MTI2MTc0NTUxMTswMDsn\\\"\",\r\n            \"systemId\": \"4b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49221\",\r\n            \"name\": \"Torregamones\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg5NTkzNzU1ODY0OTE3NjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"4c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49222\",\r\n            \"name\": \"Torres del Carrizal\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTAwNDkwMTgxNzUxNjQwMjEzMTswMDsn\\\"\",\r\n            \"systemId\": \"4d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49223\",\r\n            \"name\": \"Trabazos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg0NTU1OTM4MzA1MTMzMDYwMTswMDsn\\\"\",\r\n            \"systemId\": \"4e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49224\",\r\n            \"name\": \"Trefacio\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDcxNjcyNTA2MjA3MDUzNDAyMTswMDsn\\\"\",\r\n            \"systemId\": \"4f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49225\",\r\n            \"name\": \"Uña de Quintana\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc2NTk5OTI3MzgwNTUwNTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"5063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49226\",\r\n            \"name\": \"Vadillo de la Guareña\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIwMTMwNjAyMDk4MDEwODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"5163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49227\",\r\n            \"name\": \"Valcabado\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY2ODMzNjIyMzM1MDc2MTg4MTswMDsn\\\"\",\r\n            \"systemId\": \"5263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49228\",\r\n            \"name\": \"Valdefinjas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.26Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE1NDEzNDMxMjM1NDgwNzIzMTswMDsn\\\"\",\r\n            \"systemId\": \"5363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49229\",\r\n            \"name\": \"Valdescorriel\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg1MjA5MDkxNzU4MjEzNTA5MTswMDsn\\\"\",\r\n            \"systemId\": \"5463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49230\",\r\n            \"name\": \"Vallesa de la Guareña\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY5MDcxMDAwOTAyMDM5ODM1MTswMDsn\\\"\",\r\n            \"systemId\": \"5563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49231\",\r\n            \"name\": \"Vega de Tera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE2NzM2OTkzMzQxMDU5NTk4MTswMDsn\\\"\",\r\n            \"systemId\": \"5663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49232\",\r\n            \"name\": \"Vega de Villalobos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU1NzU0NjEzNjU1NDMyMTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"5763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49233\",\r\n            \"name\": \"Vegalatrave\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgwMTA4ODUyNTc1NjIwNDU0MTswMDsn\\\"\",\r\n            \"systemId\": \"5863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49234\",\r\n            \"name\": \"Venialbo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM1MzY5NTg1NzE2NTAxMjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"5963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49235\",\r\n            \"name\": \"Vezdemarbán\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0OTgwODgzMDk4MjMyNjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"5a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49236\",\r\n            \"name\": \"Vidayanes\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ0MjM5OTY0MzIzNDEyNTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"5b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49237\",\r\n            \"name\": \"Videmala\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxNDMxMTkzOTUwODA1MzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"5c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49238\",\r\n            \"name\": \"Villabrázaro\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.263Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY0NzYwOTM0NTEyMDg4NTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"5d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49239\",\r\n            \"name\": \"Villabuena del Puente\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTUxNjMwNDc3NzYzOTM0NTc4MTswMDsn\\\"\",\r\n            \"systemId\": \"5e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49240\",\r\n            \"name\": \"Villadepera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg4NzY5NTQyNjM1Nzg0MDEzMTswMDsn\\\"\",\r\n            \"systemId\": \"5f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49241\",\r\n            \"name\": \"Villaescusa\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgyMzk3MTgwOTE5NjcxNjQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"6063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49242\",\r\n            \"name\": \"Villafáfila\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg5MjkyNTUxOTAzMDk1MDU3MTswMDsn\\\"\",\r\n            \"systemId\": \"6163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49243\",\r\n            \"name\": \"Villaferrueña\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODY2ODA0NDU5MTk2NjMxMDQxMTswMDsn\\\"\",\r\n            \"systemId\": \"6263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49244\",\r\n            \"name\": \"Villageriz\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg3OTI1Mjg1Nzk0MzEzMTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"6363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49245\",\r\n            \"name\": \"Villalazán\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwNjkxNzg2MDczNTI5OTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"6463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49246\",\r\n            \"name\": \"Villalba de la Lampreana\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYyNjM4Mjk2MjIzODk3OTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"6563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49247\",\r\n            \"name\": \"Villalcampo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg2MDE5OTM1OTE5MzM5MjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"6663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49248\",\r\n            \"name\": \"Villalobos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI3MjQ4Nzg5MDIyNzU3MDI4MTswMDsn\\\"\",\r\n            \"systemId\": \"6763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49249\",\r\n            \"name\": \"Villalonso\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYwMzcyNjE3NDcxMjQ3NzgwMTswMDsn\\\"\",\r\n            \"systemId\": \"6863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49250\",\r\n            \"name\": \"Villalpando\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgzNDY4NDMzMzkzMDA1NjA4MTswMDsn\\\"\",\r\n            \"systemId\": \"6963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49251\",\r\n            \"name\": \"Villalube\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.267Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE5ODI5NDI0Mjk2MDQ2ODU5MTswMDsn\\\"\",\r\n            \"systemId\": \"6a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49252\",\r\n            \"name\": \"Villamayor de Campos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM2Nzk5MTY3MzMxMjQ4NTk2MTswMDsn\\\"\",\r\n            \"systemId\": \"6b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49255\",\r\n            \"name\": \"Villamor de los Escuderos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTI0OTU4MjgxMDk3MDkxMjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"6c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49256\",\r\n            \"name\": \"Villanázar\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUyNzU5NDQ0MjAyNTM1NjY1MTswMDsn\\\"\",\r\n            \"systemId\": \"6d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49257\",\r\n            \"name\": \"Villanueva de Azoague\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcxNjAwMjU2NzAxODA1MzU3MTswMDsn\\\"\",\r\n            \"systemId\": \"6e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49258\",\r\n            \"name\": \"Villanueva de Campeán\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU2NzQwNjMzNTE2MTIxNjkxMTswMDsn\\\"\",\r\n            \"systemId\": \"6f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49259\",\r\n            \"name\": \"Villanueva de las Peras\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYzOTQ3NDM1MDM0MjM4MzAxMTswMDsn\\\"\",\r\n            \"systemId\": \"7063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49260\",\r\n            \"name\": \"Villanueva del Campo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc0OTQ3NTM1MTQ0ODgzMjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"7163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49263\",\r\n            \"name\": \"Villar de Fallaves\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ4NzEwMjMwNjcxNzM4MjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"7263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49264\",\r\n            \"name\": \"Villar del Buey\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTUxOTk0MjgyODkwNzQ2Njg0MTswMDsn\\\"\",\r\n            \"systemId\": \"7363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49261\",\r\n            \"name\": \"Villaralbo\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQzMDAxMzkxMzc1Mzk2NzQzMTswMDsn\\\"\",\r\n            \"systemId\": \"7463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49262\",\r\n            \"name\": \"Villardeciervos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA5OTA5MjMzMTMwNDQ2NDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"7563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49265\",\r\n            \"name\": \"Villardiegua de la Ribera\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.27Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU2MTQxNzI1MTI5NTUzNjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"7663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49266\",\r\n            \"name\": \"Villárdiga\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY3NDkwMzc3MDM5NjMzODUwMTswMDsn\\\"\",\r\n            \"systemId\": \"7763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49267\",\r\n            \"name\": \"Villardondiego\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE2MzQzOTg4MTY2NDE4MTg1MTswMDsn\\\"\",\r\n            \"systemId\": \"7863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49268\",\r\n            \"name\": \"Villarrín de Campos\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI1NTMwNjA2MDA4MDYyNDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"7963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49269\",\r\n            \"name\": \"Villaseco del Pan\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA2MDEyMjIyODk5MzIyMTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"7a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49270\",\r\n            \"name\": \"Villavendimio\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAzMDY0NjkxNDY1MTAyNDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"7b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49272\",\r\n            \"name\": \"Villaveza de Valverde\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI4OTIyNTI2NzEzOTg4MDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"7c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49271\",\r\n            \"name\": \"Villaveza del Agua\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA4MDYzMDE5NDcwMTE1NzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"7d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49273\",\r\n            \"name\": \"Viñas\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYyNTM5NDI3MDE2NDg0NTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"7e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"49275\",\r\n            \"name\": \"Zamora\",\r\n            \"provinceNo\": 49,\r\n            \"autonomousCommunityNo\": 7,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkzOTYzOTcyNjc4NjczMTI4MTswMDsn\\\"\",\r\n            \"systemId\": \"7f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50001\",\r\n            \"name\": \"Abanto\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.273Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU1OTg0MjI1MzMwMzA0NDM5MTswMDsn\\\"\",\r\n            \"systemId\": \"8063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50002\",\r\n            \"name\": \"Acered\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYxMjI0NDY5NDAwNTk3MjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50003\",\r\n            \"name\": \"Agón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIwMzAyMjA2NTMxMTM1MTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"8263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50004\",\r\n            \"name\": \"Aguarón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg2MDIxMTMyMDIzMDY4MDI1MTswMDsn\\\"\",\r\n            \"systemId\": \"8363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50005\",\r\n            \"name\": \"Aguilón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODYzMTc1MzMyNTkxMjk5MDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"8463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50006\",\r\n            \"name\": \"Ainzón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUzNzA3ODIyOTc1MzI5NTYxMTswMDsn\\\"\",\r\n            \"systemId\": \"8563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50007\",\r\n            \"name\": \"Aladrén\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIzNzUxNDYzMjgwNzYzMDg5MTswMDsn\\\"\",\r\n            \"systemId\": \"8663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50008\",\r\n            \"name\": \"Alagón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI1MjAxMDUwOTQ2OTY4NTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"8763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50009\",\r\n            \"name\": \"Alarba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM1NTg0NDUzNjQ4Mzg4NjM2MTswMDsn\\\"\",\r\n            \"systemId\": \"8863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50010\",\r\n            \"name\": \"Alberite de San Juan\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA4Njk2MzI2MzY3ODg4NTc5MTswMDsn\\\"\",\r\n            \"systemId\": \"8963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50011\",\r\n            \"name\": \"Albeta\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODkzODYzOTkxNTE3MjI1OTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"8a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50012\",\r\n            \"name\": \"Alborge\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE3NzM2ODcwMDcxOTUyNDc1MTswMDsn\\\"\",\r\n            \"systemId\": \"8b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50013\",\r\n            \"name\": \"Alcalá de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg1MjU2MTc1ODAwNzI1NDY4MTswMDsn\\\"\",\r\n            \"systemId\": \"8c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50014\",\r\n            \"name\": \"Alcalá de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.277Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg5MTY2MTAzMjg1MjYyMTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"8d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50015\",\r\n            \"name\": \"Alconchel de Ariza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ4NTE0MDk0NzQzMTQ4MjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"8e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50016\",\r\n            \"name\": \"Aldehuela de Liestos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQxMzU3ODk4MzQ4ODA0MTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"8f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50017\",\r\n            \"name\": \"Alfajarín\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc3MTE2MjczMDUxMzA3NTU0MTswMDsn\\\"\",\r\n            \"systemId\": \"9063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50018\",\r\n            \"name\": \"Alfamén\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk2MDYzODA2NTA4ODU1Nzk1MTswMDsn\\\"\",\r\n            \"systemId\": \"9163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50019\",\r\n            \"name\": \"Alforque\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDYwMTAxMDYyMTI4MzAwOTY1MTswMDsn\\\"\",\r\n            \"systemId\": \"9263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50020\",\r\n            \"name\": \"Alhama de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI0NjgzOTkwNzUyMDg0MTgyMTswMDsn\\\"\",\r\n            \"systemId\": \"9363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50021\",\r\n            \"name\": \"Almochuel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU2MzQ5Njg5NTIyNjU0ODg3MTswMDsn\\\"\",\r\n            \"systemId\": \"9463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50022\",\r\n            \"name\": \"Almolda, La\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU3Mjk0Njg5MjM3OTgzMzk2MTswMDsn\\\"\",\r\n            \"systemId\": \"9563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50023\",\r\n            \"name\": \"Almonacid de la Cuba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.28Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTMzNDczMTY2ODQwNTgyMDQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"9663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50024\",\r\n            \"name\": \"Almonacid de la Sierra\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA4MzY5MjY4MDQ0Mzk5MjY5MTswMDsn\\\"\",\r\n            \"systemId\": \"9763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50025\",\r\n            \"name\": \"Almunia de Doña Godina, La\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEwMjQ2MzE4NzUzNjQxMjc1MTswMDsn\\\"\",\r\n            \"systemId\": \"9863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50026\",\r\n            \"name\": \"Alpartir\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIyOTQ0NTM2NjMxODI4NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"9963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50027\",\r\n            \"name\": \"Ambel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjExNzg4ODMzMDc0MTI0MjU4MTswMDsn\\\"\",\r\n            \"systemId\": \"9a63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50028\",\r\n            \"name\": \"Anento\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgwNjQzNDY0OTUxODIzMTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"9b63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50029\",\r\n            \"name\": \"Aniñón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI0MzM2OTcxOTUyNTI1NzkwMTswMDsn\\\"\",\r\n            \"systemId\": \"9c63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50030\",\r\n            \"name\": \"Añón de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzMwMDc0ODIzMDYzODQ3MDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"9d63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50031\",\r\n            \"name\": \"Aranda de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc3MjIzODE0NzIwNjU2Njc4MTswMDsn\\\"\",\r\n            \"systemId\": \"9e63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50032\",\r\n            \"name\": \"Arándiga\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYyMjg2ODc4MTQ4NDczMDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"9f63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50033\",\r\n            \"name\": \"Ardisa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzczNzAzNjU2MDU4NjExMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"a063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50034\",\r\n            \"name\": \"Ariza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.283Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYwNTI4NDg4OTg1MDc4NTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"a163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50035\",\r\n            \"name\": \"Artieda\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5OTg1MjU0MzY2NzkwNDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"a263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50036\",\r\n            \"name\": \"Asín\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYyODI1NDY4NzgyMzk1NjMzMTswMDsn\\\"\",\r\n            \"systemId\": \"a363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50037\",\r\n            \"name\": \"Atea\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI0MzQ4OTQ3Nzg5OTUwNzcwMTswMDsn\\\"\",\r\n            \"systemId\": \"a463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50038\",\r\n            \"name\": \"Ateca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQ0ODM3OTMxNTc5ODA2OTUzMTswMDsn\\\"\",\r\n            \"systemId\": \"a563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50039\",\r\n            \"name\": \"Azuara\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk0MTM5Mjg4OTYwOTI5ODM2MTswMDsn\\\"\",\r\n            \"systemId\": \"a663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50040\",\r\n            \"name\": \"Badules\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM0Njk1OTYwNDE4MTA3MzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"a763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50041\",\r\n            \"name\": \"Bagüés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMyNTMyNzQzMjk1NTMyNzIyMTswMDsn\\\"\",\r\n            \"systemId\": \"a863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50042\",\r\n            \"name\": \"Balconchán\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQzMDY1NjQ0OTE3MzM4Mjg4MTswMDsn\\\"\",\r\n            \"systemId\": \"a963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50043\",\r\n            \"name\": \"Bárboles\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU1NTMwNzczMTIxOTUxMzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"aa63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50044\",\r\n            \"name\": \"Bardallur\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY3ODgwMjAzOTY1NDY0NTIzMTswMDsn\\\"\",\r\n            \"systemId\": \"ab63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50045\",\r\n            \"name\": \"Belchite\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc3NTkxNjQ2MTYwMzM3MzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"ac63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50046\",\r\n            \"name\": \"Belmonte de Gracián\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE5OTYxNjA2Mjg3MzAzMDAxMTswMDsn\\\"\",\r\n            \"systemId\": \"ad63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50047\",\r\n            \"name\": \"Berdejo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.287Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI5Njk3OTIxODE5NDYwNTI1MTswMDsn\\\"\",\r\n            \"systemId\": \"ae63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50048\",\r\n            \"name\": \"Berrueco\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYxMDU0NDMxODg3MTE2Mjk2MTswMDsn\\\"\",\r\n            \"systemId\": \"af63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50901\",\r\n            \"name\": \"Biel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM1MTcwNjA1NTc5MjI0ODg4MTswMDsn\\\"\",\r\n            \"systemId\": \"b063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50050\",\r\n            \"name\": \"Bijuesca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY4NjY3NTY4MDQ2MDkxOTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"b163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50051\",\r\n            \"name\": \"Biota\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUxOTE4MDAwMjMzMjg1NzU2MTswMDsn\\\"\",\r\n            \"systemId\": \"b263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50052\",\r\n            \"name\": \"Bisimbre\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQyNzEzNTI4MTY0MDk0NzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"b363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50053\",\r\n            \"name\": \"Boquiñeni\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYwODYwODQ4MjEzMDIzOTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"b463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50054\",\r\n            \"name\": \"Bordalba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTcxNjQ5MzQxMDE3NTQxOTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"b563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50055\",\r\n            \"name\": \"Borja\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxMTY5MDUwNzk4NzM3MjQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"b663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50056\",\r\n            \"name\": \"Botorrita\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE3MjYzODA0Mzc4MTc0NzU2MTswMDsn\\\"\",\r\n            \"systemId\": \"b763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50057\",\r\n            \"name\": \"Brea de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMwMzY2NjEwMDg5NjEwMzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"b863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50058\",\r\n            \"name\": \"Bubierca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.29Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI3NjU4NzI5Mjc5NzYyNzAyMTswMDsn\\\"\",\r\n            \"systemId\": \"b963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50059\",\r\n            \"name\": \"Bujaraloz\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkyOTc1MjE0MzQ5Mzc3MTEzMTswMDsn\\\"\",\r\n            \"systemId\": \"ba63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50060\",\r\n            \"name\": \"Bulbuente\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg5MDM5MjU5Mzg5ODU4Nzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"bb63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50061\",\r\n            \"name\": \"Bureta\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE2MjE2MzMwNjE2NTI1Nzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"bc63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50062\",\r\n            \"name\": \"Burgo de Ebro, El\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAwNDg3NzA1NzM4MTUxODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"bd63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50063\",\r\n            \"name\": \"Buste, El\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcwMDQyOTEzNzQ2NzI5MTExMTswMDsn\\\"\",\r\n            \"systemId\": \"be63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50064\",\r\n            \"name\": \"Cabañas de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc5MTYyNjAyNzMyNDU1MTU2MTswMDsn\\\"\",\r\n            \"systemId\": \"bf63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50065\",\r\n            \"name\": \"Cabolafuente\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM4NTYyMDczMDUxMzUwMDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"c063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50066\",\r\n            \"name\": \"Cadrete\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMwOTAzNjM3OTg1NTUyMzY4MTswMDsn\\\"\",\r\n            \"systemId\": \"c163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50067\",\r\n            \"name\": \"Calatayud\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.293Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc4OTY0NDY3MDg0MDM2NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"c263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50068\",\r\n            \"name\": \"Calatorao\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTAyMzQwNDk0MDM4OTk2NzE4MTswMDsn\\\"\",\r\n            \"systemId\": \"c363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50069\",\r\n            \"name\": \"Calcena\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDIwMTk1NDE1ODU0MTk2ODk2MTswMDsn\\\"\",\r\n            \"systemId\": \"c463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50070\",\r\n            \"name\": \"Calmarza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDMxMDIwMjg4ODIxMjY1MTA2MTswMDsn\\\"\",\r\n            \"systemId\": \"c563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50071\",\r\n            \"name\": \"Campillo de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTYxNDU5MDI1MzUyNDA4Mjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"c663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50072\",\r\n            \"name\": \"Carenas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM0MjAxMDM4NzE0ODMwOTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"c763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50073\",\r\n            \"name\": \"Cariñena\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk2OTYzNDI4MjI2Nzc0NjMxMTswMDsn\\\"\",\r\n            \"systemId\": \"c863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50074\",\r\n            \"name\": \"Caspe\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIxMzc4NzcxODU3NzY2Mzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"c963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50075\",\r\n            \"name\": \"Castejón de Alarba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQwMTI2MjU3NTA1Nzc4NzQyMTswMDsn\\\"\",\r\n            \"systemId\": \"ca63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50076\",\r\n            \"name\": \"Castejón de las Armas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgyMTg2NTU4NjcwNjAxNDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"cb63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50077\",\r\n            \"name\": \"Castejón de Valdejasa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU5OTE0OTE2NTIyMzQ0Nzc1MTswMDsn\\\"\",\r\n            \"systemId\": \"cc63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50078\",\r\n            \"name\": \"Castiliscar\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1NzUzODYzODA0MTQ4ODgxMTswMDsn\\\"\",\r\n            \"systemId\": \"cd63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50079\",\r\n            \"name\": \"Cervera de la Cañada\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI4NzYxNjY1ODUxNTM1NTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"ce63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50080\",\r\n            \"name\": \"Cerveruela\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYyNTc2MTU1NTQ1OTk4NzEyMTswMDsn\\\"\",\r\n            \"systemId\": \"cf63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50081\",\r\n            \"name\": \"Cetina\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.297Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjgwOTc3MDEyMTgzNTY3MzU0MTswMDsn\\\"\",\r\n            \"systemId\": \"d063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50092\",\r\n            \"name\": \"Chiprana\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM2NTQwNTc4Njk0NTM2OTA1MTswMDsn\\\"\",\r\n            \"systemId\": \"d163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50093\",\r\n            \"name\": \"Chodes\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwMDgyMDgwNTAzODQxNDk2MTswMDsn\\\"\",\r\n            \"systemId\": \"d263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50082\",\r\n            \"name\": \"Cimballa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA1NTg4MjE3NTkzMjg1ODc4MTswMDsn\\\"\",\r\n            \"systemId\": \"d363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50083\",\r\n            \"name\": \"Cinco Olivas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAzMTc4OTMzMzkxNTc4MzA2MTswMDsn\\\"\",\r\n            \"systemId\": \"d463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50084\",\r\n            \"name\": \"Clarés de Ribota\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE3MzcxMTk2MzA3MTU4NDM2MTswMDsn\\\"\",\r\n            \"systemId\": \"d563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50085\",\r\n            \"name\": \"Codo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAxNTk1NDgwMzg2MTAyODIwMTswMDsn\\\"\",\r\n            \"systemId\": \"d663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50086\",\r\n            \"name\": \"Codos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE5OTQxMjE3MzY1NTg5MTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"d763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50087\",\r\n            \"name\": \"Contamina\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEyNjY1MTc2ODY1ODcxMjM4MTswMDsn\\\"\",\r\n            \"systemId\": \"d863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50088\",\r\n            \"name\": \"Cosuenda\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA1ODY3NjYxMTYxNTE1MDUzMTswMDsn\\\"\",\r\n            \"systemId\": \"d963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50089\",\r\n            \"name\": \"Cuarte de Huerva\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkzMTMxNjUyODQ1NjAwNjE4MTswMDsn\\\"\",\r\n            \"systemId\": \"da63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50090\",\r\n            \"name\": \"Cubel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.3Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU0OTI2MzcwNTExNzg4MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"db63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50091\",\r\n            \"name\": \"Cuerlas, Las\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY0NTYwMjMzODQyODI2OTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"dc63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50094\",\r\n            \"name\": \"Daroca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIyNzIxMjM1Njk5MTkzNTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"dd63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50095\",\r\n            \"name\": \"Ejea de los Caballeros\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODcxMTIxNTk4MzAwNjc3OTI0MTswMDsn\\\"\",\r\n            \"systemId\": \"de63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50096\",\r\n            \"name\": \"Embid de Ariza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODgxNTIzMDMzMTYxMzcxMDg0MTswMDsn\\\"\",\r\n            \"systemId\": \"df63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50098\",\r\n            \"name\": \"Encinacorba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTYwNzY5Njc2MTMzNjIyMDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"e063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50099\",\r\n            \"name\": \"Épila\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM4MDM0MTMxODA2MzMxNDMzMTswMDsn\\\"\",\r\n            \"systemId\": \"e163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50100\",\r\n            \"name\": \"Erla\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA3NjE1NTMwNjgyODEyOTM1MTswMDsn\\\"\",\r\n            \"systemId\": \"e263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50101\",\r\n            \"name\": \"Escatrón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIyNTIyMTk4MTU3MzEyMDg3MTswMDsn\\\"\",\r\n            \"systemId\": \"e363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50102\",\r\n            \"name\": \"Fabara\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjE4MTE2NDkzNzg1MDkwNjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"e463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50104\",\r\n            \"name\": \"Farlete\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.303Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ2NjExNTY5ODEwMzM0MzM3MTswMDsn\\\"\",\r\n            \"systemId\": \"e563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50105\",\r\n            \"name\": \"Fayón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ4NDYzNjE1MDY4Nzg1MjY2MTswMDsn\\\"\",\r\n            \"systemId\": \"e663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50106\",\r\n            \"name\": \"Fayos, Los\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA2MzI1Mjk4Njc1NTMyMzc0MTswMDsn\\\"\",\r\n            \"systemId\": \"e763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50107\",\r\n            \"name\": \"Figueruelas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk2MzM4NTk2MjQ2NzgwNTMxMTswMDsn\\\"\",\r\n            \"systemId\": \"e863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50108\",\r\n            \"name\": \"Fombuena\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY1MzQ2MTQ5OTI4MjUxMjAxMTswMDsn\\\"\",\r\n            \"systemId\": \"e963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50109\",\r\n            \"name\": \"Frago, El\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI5NDY0NTEzMTU1MTYzMTY3MTswMDsn\\\"\",\r\n            \"systemId\": \"ea63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50110\",\r\n            \"name\": \"Frasno, El\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc5OTQwOTA3MjU0Njk4NDcwMTswMDsn\\\"\",\r\n            \"systemId\": \"eb63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50111\",\r\n            \"name\": \"Fréscano\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ2MTkxMzkyNTY5MzU5MTE5MTswMDsn\\\"\",\r\n            \"systemId\": \"ec63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50113\",\r\n            \"name\": \"Fuendejalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU0OTExODYzODM5NTQ1NzA4MTswMDsn\\\"\",\r\n            \"systemId\": \"ed63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50114\",\r\n            \"name\": \"Fuendetodos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIzNzg0ODYxMDkxMTY2MzA3MTswMDsn\\\"\",\r\n            \"systemId\": \"ee63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50115\",\r\n            \"name\": \"Fuentes de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE4MzY2OTE5OTkyMzI1MDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"ef63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50116\",\r\n            \"name\": \"Fuentes de Jiloca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQxNDE5NzkzNjU5MzExMzY0MTswMDsn\\\"\",\r\n            \"systemId\": \"f063e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50117\",\r\n            \"name\": \"Gallocanta\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMyNDQwODczNTExNjY1ODM3MTswMDsn\\\"\",\r\n            \"systemId\": \"f163e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50118\",\r\n            \"name\": \"Gallur\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.307Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc2NTA5NDI0OTk3NDA5NTk3MTswMDsn\\\"\",\r\n            \"systemId\": \"f263e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50119\",\r\n            \"name\": \"Gelsa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMxNTk1NzU1NDg0ODQ1OTU1MTswMDsn\\\"\",\r\n            \"systemId\": \"f363e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50120\",\r\n            \"name\": \"Godojos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4MzE3Njc1MDk0MjE3NDI3MTswMDsn\\\"\",\r\n            \"systemId\": \"f463e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50121\",\r\n            \"name\": \"Gotor\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYzODkyMDExMzg3Njc1NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"f563e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50122\",\r\n            \"name\": \"Grisel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQzMzM4Njg0NzU1NDI3MDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"f663e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50123\",\r\n            \"name\": \"Grisén\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIwMDA2MzI4MTc0MDIzNzk0MTswMDsn\\\"\",\r\n            \"systemId\": \"f763e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50124\",\r\n            \"name\": \"Herrera de los Navarros\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc0NDIyNjUxMjYwNjAzMjg5MTswMDsn\\\"\",\r\n            \"systemId\": \"f863e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50125\",\r\n            \"name\": \"Ibdes\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk2NzAxNjQ2MTk4MDI4ODA3MTswMDsn\\\"\",\r\n            \"systemId\": \"f963e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50126\",\r\n            \"name\": \"Illueca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ3NzM4NzczMDk3MjIwMTI5MTswMDsn\\\"\",\r\n            \"systemId\": \"fa63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50128\",\r\n            \"name\": \"Isuerre\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAwOTQzOTA2ODM3NjQ0ODg1MTswMDsn\\\"\",\r\n            \"systemId\": \"fb63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50129\",\r\n            \"name\": \"Jaraba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.31Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ5NjAwMjk2MDI2NjIyNzczMTswMDsn\\\"\",\r\n            \"systemId\": \"fc63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50130\",\r\n            \"name\": \"Jarque de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQyMjAyNjE4NDYzODI1NDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"fd63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50131\",\r\n            \"name\": \"Jaulín\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM3NTgxMjUwODk4NTY3OTc3MTswMDsn\\\"\",\r\n            \"systemId\": \"fe63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50132\",\r\n            \"name\": \"Joyosa, La\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0NzY3NDExOTU4ODE4MzE0MTswMDsn\\\"\",\r\n            \"systemId\": \"ff63e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50133\",\r\n            \"name\": \"Lagata\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQwNzM5Njg5ODAyNzk0Njk4MTswMDsn\\\"\",\r\n            \"systemId\": \"0064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50134\",\r\n            \"name\": \"Langa del Castillo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY4NjUzODQ4NTc1ODExMDkwMTswMDsn\\\"\",\r\n            \"systemId\": \"0164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50135\",\r\n            \"name\": \"Layana\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA5NzU0MzAzMjQ3MTk5NjA2MTswMDsn\\\"\",\r\n            \"systemId\": \"0264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50136\",\r\n            \"name\": \"Lécera\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk2ODIyNzE0NzMwNTg2MjI2MTswMDsn\\\"\",\r\n            \"systemId\": \"0364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50138\",\r\n            \"name\": \"Lechón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkzODAyOTc0MTYzODE3MjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"0464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50137\",\r\n            \"name\": \"Leciñena\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk0ODYzODkxNTA5OTIzNTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"0564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50139\",\r\n            \"name\": \"Letux\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ3Mzc5NzI1NzI2NTA5ODAxMTswMDsn\\\"\",\r\n            \"systemId\": \"0664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50140\",\r\n            \"name\": \"Litago\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjAwMjk0MzI4MTEyNzI3MTY2MTswMDsn\\\"\",\r\n            \"systemId\": \"0764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50141\",\r\n            \"name\": \"Lituénigo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.313Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM4NDgyMDgyNzc0OTQ0NDU5MTswMDsn\\\"\",\r\n            \"systemId\": \"0864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50142\",\r\n            \"name\": \"Lobera de Onsella\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjgwMjI2MjE1MDEzNzk4MzYzMTswMDsn\\\"\",\r\n            \"systemId\": \"0964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50143\",\r\n            \"name\": \"Longares\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjAwODA4NTc4MjE3MDcwNTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"0a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50144\",\r\n            \"name\": \"Longás\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjIwMDc1MTM3NDc4NDMxNzY2MTswMDsn\\\"\",\r\n            \"systemId\": \"0b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50146\",\r\n            \"name\": \"Lucena de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI5OTMxNjE3NDkwNDk1NzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"0c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50147\",\r\n            \"name\": \"Luceni\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg0NTI1MTQ4MDgyNzYyNjEyMTswMDsn\\\"\",\r\n            \"systemId\": \"0d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50148\",\r\n            \"name\": \"Luesia\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA5MTM1NDEyMzQ5NDYyNDgzMTswMDsn\\\"\",\r\n            \"systemId\": \"0e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50149\",\r\n            \"name\": \"Luesma\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg4NTEwNDEwMjY1MzQwMzIxMTswMDsn\\\"\",\r\n            \"systemId\": \"0f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50150\",\r\n            \"name\": \"Lumpiaque\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ4NDg2ODI1Njc1ODc0MTk5MTswMDsn\\\"\",\r\n            \"systemId\": \"1064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50151\",\r\n            \"name\": \"Luna\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI5Njg4NDM4ODA4NDIzMTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"1164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50152\",\r\n            \"name\": \"Maella\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI1OTM3NzE5MDc4MDQ2ODU0MTswMDsn\\\"\",\r\n            \"systemId\": \"1264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50153\",\r\n            \"name\": \"Magallón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.317Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQxNjE2NTIzNzc5OTU4Mjk3MTswMDsn\\\"\",\r\n            \"systemId\": \"1364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50154\",\r\n            \"name\": \"Mainar\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgyMDQxNjA4MzQzOTA2MTE3MTswMDsn\\\"\",\r\n            \"systemId\": \"1464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50155\",\r\n            \"name\": \"Malanquilla\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM1OTc1OTI4NzAwNzQ2NjA5MTswMDsn\\\"\",\r\n            \"systemId\": \"1564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50156\",\r\n            \"name\": \"Maleján\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk3ODY2MzMxOTY0NjM0ODM4MTswMDsn\\\"\",\r\n            \"systemId\": \"1664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50160\",\r\n            \"name\": \"Mallén\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgwMjY2MDc4NTQzNjE0MDIxMTswMDsn\\\"\",\r\n            \"systemId\": \"1764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50157\",\r\n            \"name\": \"Malón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTkzMDQwMjI3NzQ3MjE3MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"1864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50159\",\r\n            \"name\": \"Maluenda\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA4NDY1ODM2NDQ1NzY5NTAxMTswMDsn\\\"\",\r\n            \"systemId\": \"1964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50161\",\r\n            \"name\": \"Manchones\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA0OTc5MzU0MzEyOTEwMTIwMTswMDsn\\\"\",\r\n            \"systemId\": \"1a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50162\",\r\n            \"name\": \"Mara\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ4OTM5NTMxNjAyMTEzNzk5MTswMDsn\\\"\",\r\n            \"systemId\": \"1b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50163\",\r\n            \"name\": \"María de Huerva\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE4MjE0NjI5NTAyNzM3NzgyMTswMDsn\\\"\",\r\n            \"systemId\": \"1c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50902\",\r\n            \"name\": \"Marracos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgwNzAyMzgxNTg1NDIwMzg3MTswMDsn\\\"\",\r\n            \"systemId\": \"1d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50164\",\r\n            \"name\": \"Mediana de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.32Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg1MDQ1NTEwMTI5Nzc5MDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"1e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50165\",\r\n            \"name\": \"Mequinenza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIzMzQzMDA0NDMyMzYzMDA3MTswMDsn\\\"\",\r\n            \"systemId\": \"1f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50166\",\r\n            \"name\": \"Mesones de Isuela\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg3MTA3NDU2MjA5MzczMjI5MTswMDsn\\\"\",\r\n            \"systemId\": \"2064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50167\",\r\n            \"name\": \"Mezalocha\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE3MzQxNzk0MTc2NjI5NTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"2164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50168\",\r\n            \"name\": \"Mianos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ3ODIwODU0ODQ4NTc5NzM1MTswMDsn\\\"\",\r\n            \"systemId\": \"2264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50169\",\r\n            \"name\": \"Miedes de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjczODI2OTk3OTI0NzI0MjkwMTswMDsn\\\"\",\r\n            \"systemId\": \"2364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50170\",\r\n            \"name\": \"Monegrillo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAxMjM4NTg0NDQwMTk3MjQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"2464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50171\",\r\n            \"name\": \"Moneva\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzcyOTIwNTE3MDUyODM5NjkyMTswMDsn\\\"\",\r\n            \"systemId\": \"2564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50172\",\r\n            \"name\": \"Monreal de Ariza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU3MzM3MzkxOTY5MDAxNDQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"2664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50173\",\r\n            \"name\": \"Monterde\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQzNjgyNDUyOTkyNTM2NDc5MTswMDsn\\\"\",\r\n            \"systemId\": \"2764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50174\",\r\n            \"name\": \"Montón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.323Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI4ODg1OTgyNjEwMjgzMTgxMTswMDsn\\\"\",\r\n            \"systemId\": \"2864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50175\",\r\n            \"name\": \"Morata de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg1MzkxOTAwMjU3MzUxNDk4MTswMDsn\\\"\",\r\n            \"systemId\": \"2964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50176\",\r\n            \"name\": \"Morata de Jiloca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM3ODYxODQwNjU4NTg0MzcxMTswMDsn\\\"\",\r\n            \"systemId\": \"2a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50177\",\r\n            \"name\": \"Morés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU2NTUyNzY1NTEyMzkwODk5MTswMDsn\\\"\",\r\n            \"systemId\": \"2b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50178\",\r\n            \"name\": \"Moros\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA1Njk1OTUxMzI0Njc3Njc5MTswMDsn\\\"\",\r\n            \"systemId\": \"2c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50179\",\r\n            \"name\": \"Moyuela\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTcyMzcxODIwMDAwNjU0NDk1MTswMDsn\\\"\",\r\n            \"systemId\": \"2d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50180\",\r\n            \"name\": \"Mozota\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY3NDUyNzgwNTU5MzA2MTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"2e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50181\",\r\n            \"name\": \"Muel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTIxMDc3NjA1MDM1MDE1ODUzMTswMDsn\\\"\",\r\n            \"systemId\": \"2f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50182\",\r\n            \"name\": \"Muela, La\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA5OTM0OTYwODQxNTAxNzg5MTswMDsn\\\"\",\r\n            \"systemId\": \"3064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50183\",\r\n            \"name\": \"Munébrega\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI3NDM4NjcxODc1Mzg3ODg2MTswMDsn\\\"\",\r\n            \"systemId\": \"3164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50184\",\r\n            \"name\": \"Murero\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzkwNTA5NTgzMTI2NjAyODc5MTswMDsn\\\"\",\r\n            \"systemId\": \"3264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50185\",\r\n            \"name\": \"Murillo de Gállego\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAzNjMxMDMyMTU4NTIwOTg5MTswMDsn\\\"\",\r\n            \"systemId\": \"3364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50186\",\r\n            \"name\": \"Navardún\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc0MTQyNDM5OTM1Nzc5NDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"3464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50187\",\r\n            \"name\": \"Nigüella\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.327Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTIxMjY0MzAxMjE3MDA1MzYyMTswMDsn\\\"\",\r\n            \"systemId\": \"3564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50188\",\r\n            \"name\": \"Nombrevilla\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc0MjMxMTAwNzQ5MTUxMDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"3664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50189\",\r\n            \"name\": \"Nonaspe\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDUyNDE1NTgzMjY0NzU5MDg2MTswMDsn\\\"\",\r\n            \"systemId\": \"3764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50190\",\r\n            \"name\": \"Novallas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ3ODgwMjQ5MjYyNDQ4NTUyMTswMDsn\\\"\",\r\n            \"systemId\": \"3864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50191\",\r\n            \"name\": \"Novillas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA2ODAzOTkzNDYxODM1MjUwMTswMDsn\\\"\",\r\n            \"systemId\": \"3964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50192\",\r\n            \"name\": \"Nuévalos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMzMzAwNTMwMTUzODk4MjcyMTswMDsn\\\"\",\r\n            \"systemId\": \"3a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50193\",\r\n            \"name\": \"Nuez de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI5MjQyOTIxNTkyMTUwOTM1MTswMDsn\\\"\",\r\n            \"systemId\": \"3b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50194\",\r\n            \"name\": \"Olvés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA3NTMyNzM1MDE2MDg4Mzk4MTswMDsn\\\"\",\r\n            \"systemId\": \"3c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50195\",\r\n            \"name\": \"Orcajo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI4ODIzMDA2MTQ3NDA1MDAwMTswMDsn\\\"\",\r\n            \"systemId\": \"3d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50196\",\r\n            \"name\": \"Orera\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg3NDgzMzY0ODcwNzgyNjk5MTswMDsn\\\"\",\r\n            \"systemId\": \"3e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50197\",\r\n            \"name\": \"Orés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.33Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk5MzU3Mjk1MDI5MTA0NjIwMTswMDsn\\\"\",\r\n            \"systemId\": \"3f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50198\",\r\n            \"name\": \"Oseja\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI0MTE3NTIwMzY0NTY2MDg0MTswMDsn\\\"\",\r\n            \"systemId\": \"4064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50199\",\r\n            \"name\": \"Osera de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAzNjUzMDExNTEwOTgxNjA3MTswMDsn\\\"\",\r\n            \"systemId\": \"4164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50200\",\r\n            \"name\": \"Paniza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ5NjE2NDc0NDI1Nzk4NzE5MTswMDsn\\\"\",\r\n            \"systemId\": \"4264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50201\",\r\n            \"name\": \"Paracuellos de Jiloca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA0NTg2OTcyMDQ0MjkwNzAwMTswMDsn\\\"\",\r\n            \"systemId\": \"4364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50202\",\r\n            \"name\": \"Paracuellos de la Ribera\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUwNzM0MjcyMjIyNzY4NTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"4464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50203\",\r\n            \"name\": \"Pastriz\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg3NDc5MjAzMTkxNzExMjE0MTswMDsn\\\"\",\r\n            \"systemId\": \"4564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50204\",\r\n            \"name\": \"Pedrola\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEzMTI2NDM3ODgyMzI1NjcwMTswMDsn\\\"\",\r\n            \"systemId\": \"4664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50205\",\r\n            \"name\": \"Pedrosas, Las\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUyNjE4MDg0MjE0NTU3MTk1MTswMDsn\\\"\",\r\n            \"systemId\": \"4764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50206\",\r\n            \"name\": \"Perdiguera\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.333Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY0MDEzMDA1MTY5MTY4NjgzMTswMDsn\\\"\",\r\n            \"systemId\": \"4864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50207\",\r\n            \"name\": \"Piedratajada\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgxMDAxMDcyNTQwMzU1OTE1MTswMDsn\\\"\",\r\n            \"systemId\": \"4964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50208\",\r\n            \"name\": \"Pina de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDEzMzAxOTIwNDE4NjkzMjY4MTswMDsn\\\"\",\r\n            \"systemId\": \"4a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50209\",\r\n            \"name\": \"Pinseque\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE3NDYyNzcyMDEwMTgyOTQyMTswMDsn\\\"\",\r\n            \"systemId\": \"4b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50210\",\r\n            \"name\": \"Pintanos, Los\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA0NzU1NTY5NzAwMjYzMDA4MTswMDsn\\\"\",\r\n            \"systemId\": \"4c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50211\",\r\n            \"name\": \"Plasencia de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ4OTc0NzEzNzMzMzc3NjEwMTswMDsn\\\"\",\r\n            \"systemId\": \"4d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50212\",\r\n            \"name\": \"Pleitas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk1MTk2ODc1NjU1NTY1NTc2MTswMDsn\\\"\",\r\n            \"systemId\": \"4e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50213\",\r\n            \"name\": \"Plenas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEwODMwOTgwODY0MjQwMTkzMTswMDsn\\\"\",\r\n            \"systemId\": \"4f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50214\",\r\n            \"name\": \"Pomer\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY4OTQ2ODUwNjY1OTU0ODExMTswMDsn\\\"\",\r\n            \"systemId\": \"5064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50215\",\r\n            \"name\": \"Pozuel de Ariza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkyNzEyOTI2MDY4NzA2MDY0MTswMDsn\\\"\",\r\n            \"systemId\": \"5164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50216\",\r\n            \"name\": \"Pozuelo de Aragón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc1MDY3MjUyNTkwODM2NTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"5264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50217\",\r\n            \"name\": \"Pradilla de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg4MjAxNzk2NzE5NzMyOTQwMTswMDsn\\\"\",\r\n            \"systemId\": \"5364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50218\",\r\n            \"name\": \"Puebla de Albortón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU4MDE0MzQwMzYzMDkxMDgxMTswMDsn\\\"\",\r\n            \"systemId\": \"5464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50219\",\r\n            \"name\": \"Puebla de Alfindén, La\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.337Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMwOTEyNzYyNzMyNTUxNTIxMTswMDsn\\\"\",\r\n            \"systemId\": \"5564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50220\",\r\n            \"name\": \"Puendeluna\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3Mzk5Mjc1NjI3NTM2NTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"5664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50221\",\r\n            \"name\": \"Purujosa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDgzOTAzMzk0MzYzMzE5NTc0MTswMDsn\\\"\",\r\n            \"systemId\": \"5764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50222\",\r\n            \"name\": \"Quinto\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg2MTIxMjI2NjI1ODAyNTQ2MTswMDsn\\\"\",\r\n            \"systemId\": \"5864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50223\",\r\n            \"name\": \"Remolinos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg4MTc3OTMxODY1NzYyMDM4MTswMDsn\\\"\",\r\n            \"systemId\": \"5964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50224\",\r\n            \"name\": \"Retascón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA0MTUyMTIyNzAzMTA4NTk0MTswMDsn\\\"\",\r\n            \"systemId\": \"5a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50225\",\r\n            \"name\": \"Ricla\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE0OTEwOTkxOTcwMTYwMDUxMTswMDsn\\\"\",\r\n            \"systemId\": \"5b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50227\",\r\n            \"name\": \"Romanos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjIwMTYxNTI4NTg2MTg0NTA3MTswMDsn\\\"\",\r\n            \"systemId\": \"5c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50228\",\r\n            \"name\": \"Rueda de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI4MDE2ODMyMjQyODQ5NjUzMTswMDsn\\\"\",\r\n            \"systemId\": \"5d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50229\",\r\n            \"name\": \"Ruesca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTcxMzM4ODM5NDg1MzcxOTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"5e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50241\",\r\n            \"name\": \"Sabiñán\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM4OTI4ODQ1Nzc2ODUxNzI0MTswMDsn\\\"\",\r\n            \"systemId\": \"5f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50230\",\r\n            \"name\": \"Sádaba\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.34Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA5Mzc1OTIwODkxODMxNjUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50231\",\r\n            \"name\": \"Salillas de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI4OTcwOTk3MDg0MjU1ODMxMTswMDsn\\\"\",\r\n            \"systemId\": \"6164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50232\",\r\n            \"name\": \"Salvatierra de Esca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU4NTM1MzE2Mzg1OTQ5OTY5MTswMDsn\\\"\",\r\n            \"systemId\": \"6264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50233\",\r\n            \"name\": \"Samper del Salz\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM5NzQ1NTg1MzY3NDA3MDUwMTswMDsn\\\"\",\r\n            \"systemId\": \"6364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50234\",\r\n            \"name\": \"San Martín de la Virgen de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTUzMjIzNDc5NTY3OTc1ODY0MTswMDsn\\\"\",\r\n            \"systemId\": \"6464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50235\",\r\n            \"name\": \"San Mateo de Gállego\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU5ODE0NDk1MDE2NzgzMTQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"6564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50236\",\r\n            \"name\": \"Santa Cruz de Grío\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE5NDM0NzE2OTE3Mjk2OTg0MTswMDsn\\\"\",\r\n            \"systemId\": \"6664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50237\",\r\n            \"name\": \"Santa Cruz de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE4Njg5ODY1MDU0NzgyMzUyMTswMDsn\\\"\",\r\n            \"systemId\": \"6764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50238\",\r\n            \"name\": \"Santa Eulalia de Gállego\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA1Mjk1Mzg0NTgyNTUwNTM5MTswMDsn\\\"\",\r\n            \"systemId\": \"6864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50239\",\r\n            \"name\": \"Santed\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE3MDk2ODQxNjI4MzY1NDM1MTswMDsn\\\"\",\r\n            \"systemId\": \"6964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50240\",\r\n            \"name\": \"Sástago\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.343Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMwOTc4MTM0NDU3NDkzOTU5MTswMDsn\\\"\",\r\n            \"systemId\": \"6a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50242\",\r\n            \"name\": \"Sediles\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI2MzMwMzQzNDMxMDI4NDE2MTswMDsn\\\"\",\r\n            \"systemId\": \"6b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50243\",\r\n            \"name\": \"Sestrica\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTI0NzE3NTMzNTcyOTM1NDA5MTswMDsn\\\"\",\r\n            \"systemId\": \"6c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50244\",\r\n            \"name\": \"Sierra de Luna\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAwODc1MDA5Mjk1NzI2MTYwMTswMDsn\\\"\",\r\n            \"systemId\": \"6d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50245\",\r\n            \"name\": \"Sigüés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQzODU0OTg0NzE1NzUyMjQzMTswMDsn\\\"\",\r\n            \"systemId\": \"6e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50246\",\r\n            \"name\": \"Sisamón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkyMDA4OTM1NDk1NDYyNTQxMTswMDsn\\\"\",\r\n            \"systemId\": \"6f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50247\",\r\n            \"name\": \"Sobradiel\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYyNjAwMTgxMDc2NzgwNTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"7064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50248\",\r\n            \"name\": \"Sos del Rey Católico\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgwOTIxNzQ1MjQzMzQ5NTQ4MTswMDsn\\\"\",\r\n            \"systemId\": \"7164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50249\",\r\n            \"name\": \"Tabuenca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMyNTgxNDU1NTc2MTc0MTMzMTswMDsn\\\"\",\r\n            \"systemId\": \"7264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50250\",\r\n            \"name\": \"Talamantes\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk4MTc5ODQyOTExNzM0ODQzMTswMDsn\\\"\",\r\n            \"systemId\": \"7364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50251\",\r\n            \"name\": \"Tarazona\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQyNzY1Nzk2MTc3Mjk3OTUwMTswMDsn\\\"\",\r\n            \"systemId\": \"7464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50252\",\r\n            \"name\": \"Tauste\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUzMjg2NDU1MjQxMjQ2MTgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50253\",\r\n            \"name\": \"Terrer\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE3MTE5NDI1NjE4NzE3ODgwMTswMDsn\\\"\",\r\n            \"systemId\": \"7664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50254\",\r\n            \"name\": \"Tierga\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIwNDExNzkwMTc0NzEwMzM2MTswMDsn\\\"\",\r\n            \"systemId\": \"7764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50255\",\r\n            \"name\": \"Tobed\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUzOTYyNzY4NDM0NjY0NDUyMTswMDsn\\\"\",\r\n            \"systemId\": \"7864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50256\",\r\n            \"name\": \"Torralba de los Frailes\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYyMTcxODM5MTU4ODg1MTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"7964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50257\",\r\n            \"name\": \"Torralba de Ribota\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.347Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk3MTY2NTExNjEyMDgzNDIyMTswMDsn\\\"\",\r\n            \"systemId\": \"7a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50258\",\r\n            \"name\": \"Torralbilla\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk2NDU1ODMzMTc3NjMyOTE2MTswMDsn\\\"\",\r\n            \"systemId\": \"7b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50259\",\r\n            \"name\": \"Torrehermosa\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc4MDMxOTkwMzAyMzE4MDczMTswMDsn\\\"\",\r\n            \"systemId\": \"7c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50260\",\r\n            \"name\": \"Torrelapaja\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA3OTMyNTI1ODYyOTQ2MDY1MTswMDsn\\\"\",\r\n            \"systemId\": \"7d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50261\",\r\n            \"name\": \"Torrellas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg4OTEwNjA3OTI2MzAxNTE4MTswMDsn\\\"\",\r\n            \"systemId\": \"7e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50262\",\r\n            \"name\": \"Torres de Berrellén\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYzNjkyMTkxNjM4ODMyMTM2MTswMDsn\\\"\",\r\n            \"systemId\": \"7f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50263\",\r\n            \"name\": \"Torrijo de la Cañada\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3MDA3NTQ2Mjc0ODc1Mzc4MTswMDsn\\\"\",\r\n            \"systemId\": \"8064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50264\",\r\n            \"name\": \"Tosos\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE0NzE4OTMzNjgzNDA5ODI5MTswMDsn\\\"\",\r\n            \"systemId\": \"8164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50265\",\r\n            \"name\": \"Trasmoz\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYwNzE4MzY3NTY5NjQ4OTkyMTswMDsn\\\"\",\r\n            \"systemId\": \"8264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50266\",\r\n            \"name\": \"Trasobares\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2NzQxNDkwODU0ODc3NzI3MTswMDsn\\\"\",\r\n            \"systemId\": \"8364e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50267\",\r\n            \"name\": \"Uncastillo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.35Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMwMDk0MTU3MzQwOTAyNDcxMTswMDsn\\\"\",\r\n            \"systemId\": \"8464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50268\",\r\n            \"name\": \"Undués de Lerda\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODM2MTI3ODg5MTgyMzIzNTg2MTswMDsn\\\"\",\r\n            \"systemId\": \"8564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50269\",\r\n            \"name\": \"Urrea de Jalón\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAzOTIyMDUxODY2MjQzMTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"8664e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50270\",\r\n            \"name\": \"Urriés\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMzMDEyODQ0MDY1NjY3NDY5MTswMDsn\\\"\",\r\n            \"systemId\": \"8764e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50271\",\r\n            \"name\": \"Used\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEwOTQ4NTY3NzQ4Mjk5ODY1MTswMDsn\\\"\",\r\n            \"systemId\": \"8864e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50272\",\r\n            \"name\": \"Utebo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM0Njg2ODYzNDk4NjM4MjIzMTswMDsn\\\"\",\r\n            \"systemId\": \"8964e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50274\",\r\n            \"name\": \"Val de San Martín\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUwMjkwNjI1NzM0NjY5MjUxMTswMDsn\\\"\",\r\n            \"systemId\": \"8a64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50273\",\r\n            \"name\": \"Valdehorna\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEyNjg4NzAyNTI3NTAwNTY0MTswMDsn\\\"\",\r\n            \"systemId\": \"8b64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50275\",\r\n            \"name\": \"Valmadrid\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk5OTQ4NDc2MzIwMzYwMzE2MTswMDsn\\\"\",\r\n            \"systemId\": \"8c64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50276\",\r\n            \"name\": \"Valpalmas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg5MDc5OTI2NDE3NjYyNjgxMTswMDsn\\\"\",\r\n            \"systemId\": \"8d64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50277\",\r\n            \"name\": \"Valtorres\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.353Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU2MTk4MzQxODQ5ODEyNzEwMTswMDsn\\\"\",\r\n            \"systemId\": \"8e64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50278\",\r\n            \"name\": \"Velilla de Ebro\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkxOTkxNTAxODg0NzA1MTcyMTswMDsn\\\"\",\r\n            \"systemId\": \"8f64e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50279\",\r\n            \"name\": \"Velilla de Jiloca\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg3NDQ2MTE1NTY0MDcyOTQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"9064e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50280\",\r\n            \"name\": \"Vera de Moncayo\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgyNjYyMTA2MTczMTAxODQ0MTswMDsn\\\"\",\r\n            \"systemId\": \"9164e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50281\",\r\n            \"name\": \"Vierlas\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.357Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk3NDIyOTA3MzI1OTU4MTU4MTswMDsn\\\"\",\r\n            \"systemId\": \"a264e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"50297\",\r\n            \"name\": \"Zaragoza\",\r\n            \"provinceNo\": 50,\r\n            \"autonomousCommunityNo\": 2,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.36Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE2MTcwOTAyMjkwOTgyOTE0MTswMDsn\\\"\",\r\n            \"systemId\": \"a464e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"51001\",\r\n            \"name\": \"Ceuta\",\r\n            \"provinceNo\": 51,\r\n            \"autonomousCommunityNo\": 18,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.363Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU4Njg5MzE4MjY1NzE3MjgwMTswMDsn\\\"\",\r\n            \"systemId\": \"a564e034-7aff-ed11-8175-8030e03b57cf\",\r\n            \"municipalityNo\": \"52001\",\r\n            \"name\": \"Melilla\",\r\n            \"provinceNo\": 52,\r\n            \"autonomousCommunityNo\": 19,\r\n            \"lastModifiedDateTime\": \"2025-01-16T11:45:17.363Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8a7ccf06-7b30-4c94-92ca-229ec40de5f3"},{"name":"guest","id":"49b95767-4b75-494c-8384-196bfb060048","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/guests","description":"<p>System table: Guest HTL<br />Page in Business Central: Guest HTL</p>\n<p>Returns the list of guest with its associated data.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingNo</td>\n<td>Code[20]</td>\n<td>Specifies the associated booking.</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td>Specifies the guest line No.</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Text[100]</td>\n<td>Specifies the postal address of the guest.</td>\n</tr>\n<tr>\n<td>age</td>\n<td>Integer</td>\n<td>Specifies the age of the guest.</td>\n</tr>\n<tr>\n<td>allowMailList</td>\n<td>Boolean</td>\n<td>Allow MailList</td>\n</tr>\n<tr>\n<td>arrivalDate</td>\n<td>Date</td>\n<td>Specifies the arrival date of the guest.</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>Date</td>\n<td>Specifies the birth date of the guest.</td>\n</tr>\n<tr>\n<td>bookingStatus</td>\n<td>Enum with the values:  <br />– Booking  <br />– Pencil  <br />– Booking  <br />– Occupancy  <br />– Checkout  <br />– Cancelled  <br />– No-Show</td>\n<td>Booking Status</td>\n</tr>\n<tr>\n<td>categoryNo</td>\n<td>Code[20]</td>\n<td>Category Code</td>\n</tr>\n<tr>\n<td>contactNo</td>\n<td>Code[20]</td>\n<td>Specifies the identificator of the guest.</td>\n</tr>\n<tr>\n<td>countryOfResidence</td>\n<td>Code[10]</td>\n<td>Specifies the guest country of residence.</td>\n</tr>\n<tr>\n<td>dateIssued</td>\n<td>Date</td>\n<td>Specifies the issued date of the identity document.</td>\n</tr>\n<tr>\n<td>departureDate</td>\n<td>Date</td>\n<td>Specifies the departure date of the guest.</td>\n</tr>\n<tr>\n<td>documentNo</td>\n<td>Code[20]</td>\n<td>Specifies the value of the document type.</td>\n</tr>\n<tr>\n<td>documentType</td>\n<td>Enum with the values:  <br />– NIF/NIE  <br />– Passport  <br />– Driving Lic.  <br />– Identity Card  <br />– Spanish Residence Permit  <br />– EU Residence Permit</td>\n<td>Specifies if the document Type of the guest</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Text[80]</td>\n<td>Specifies the e-mail of the contact.</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>Date</td>\n<td>Specifies the expiration date of the identity document.</td>\n</tr>\n<tr>\n<td>familityRelationship</td>\n<td>Enum with the values:  <br />– Grandparent  <br />– Great-grandparent  <br />– Great-grandchild  <br />– Brother-in-law  <br />– Spouse  <br />– Child  <br />– Sibling  <br />– Grandchild  <br />– Parent  <br />– Nephew  <br />– Father-in-law  <br />– Uncle  <br />– Son-in-law or daughter-in-law  <br />– Tutor  <br />– Other</td>\n<td>Specifies the family relationship of the guest, should only be filled in if the guest is a minor.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Text[30]</td>\n<td>Specifies the first name of the guest.</td>\n</tr>\n<tr>\n<td>invoicedBoardBasis</td>\n<td>Code[20]</td>\n<td>Invoiced Board Basis</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Last Modified Date Time</td>\n</tr>\n<tr>\n<td>middleName</td>\n<td>Text[30]</td>\n<td>Specifies the middle name of the guest.</td>\n</tr>\n<tr>\n<td>mobilePhoneNo</td>\n<td>Text[30]</td>\n<td>Specifies the mobile phone number of the guest.</td>\n</tr>\n<tr>\n<td>municipalityNo</td>\n<td>Code[5]</td>\n<td>Specify the code of the guest''s municipality, it should only be filled in if the Nationality is ESP.  <br />To be able to know what the value represents is needed to use the endpoint get municipalities</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Text[100]</td>\n<td>Specifies the full name of the guest.</td>\n</tr>\n<tr>\n<td>nacionality</td>\n<td>Code[10]</td>\n<td>Specifies the nationality of the guest obtained in get countriesRegions in the standard folder.</td>\n</tr>\n<tr>\n<td>originatingNo</td>\n<td>Code[10]</td>\n<td>Originating code obtained in Get origins.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Text[30]</td>\n<td>Specifies the phone number of the guest.</td>\n</tr>\n<tr>\n<td>postCode</td>\n<td>Code[20]</td>\n<td>Specifies the post code of the guest.</td>\n</tr>\n<tr>\n<td>resident</td>\n<td>Boolean</td>\n<td>Resident</td>\n</tr>\n<tr>\n<td>sex</td>\n<td>Enum with the values:  <br />– Male  <br />– Female</td>\n<td>Specifies the genre of the guest.</td>\n</tr>\n<tr>\n<td>specialDate1</td>\n<td>-</td>\n<td>Special Date 1</td>\n</tr>\n<tr>\n<td>specialDate2</td>\n<td>-</td>\n<td>Special Date 2</td>\n</tr>\n<tr>\n<td>specialDateDescription1</td>\n<td>-</td>\n<td>Special Date 1 Description</td>\n</tr>\n<tr>\n<td>specialDateDescription2</td>\n<td>-</td>\n<td>Special Date 2 Description</td>\n</tr>\n<tr>\n<td>surname</td>\n<td>Text[30]</td>\n<td>Specifies the surname of the guest.</td>\n</tr>\n<tr>\n<td>supportNumber</td>\n<td>Text[9]</td>\n<td>Specifies the guest document support number, should only be filled in if Document Type is NIF/NIE.</td>\n</tr>\n<tr>\n<td>totalStays</td>\n<td>-</td>\n<td>Total Stays</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","guests"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"de034024-ec84-4f7c-96bf-d2f15980f618","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"RH0000003\",\r\n    \"lineNo\": 1,\r\n    \"contactNo\": \"CO0000028\",\r\n    \"name\": \"Client name\",\r\n    \"firstName\": \"Client\",\r\n    \"middleName\": \"\",\r\n    \"surname\": \"name\",\r\n    \"age\": 52,\r\n    \"sex\": \"Male\",\r\n    \"address\": \"\",\r\n    \"postCode\": \"\",\r\n    \"municipalityNo\": \"\",\r\n    \"phone\": \"123456789\",\r\n    \"documentType\": \"NIF/NIE\",\r\n    \"documentNo\": \"12345678A\",\r\n    \"dateIssued\": \"0001-01-01\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"familityRelationship\": \" \",\r\n    \"email\": \"client@client.com\",\r\n    \"nacionality\": \"ESP\",\r\n    \"originatingNo\": \"114\",\r\n    \"mobilePhoneNo\": \"\",\r\n    \"birthDate\": \"1970-01-01\",\r\n    \"allowMailList\": false,\r\n    \"categoryNo\": \"REP\",\r\n    \"resident\": false,\r\n    \"arrivalDate\": \"2022-08-31\",\r\n    \"departureDate\": \"2022-09-01\",\r\n    \"invoicedBoardBasis\": \"MP\",\r\n    \"totalStays\": 0,\r\n    \"specialDate1\": \"0001-01-01\",\r\n    \"specialDateDescription1\": \"\",\r\n    \"specialDate2\": \"0001-01-01\",\r\n    \"specialDateDescription2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/guests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"95e12384-2d4d-c038-25e7-18dedf7ef801"},{"key":"mise-correlation-id","value":"f88848d7-f279-4161-ad00-d42d05982d71"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"39bca68c-b9eb-41bf-9b98-a8adde7af6cb"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 10:19:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/guest\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjMyNTAxMzIzOTM4NzkxMDYxOzAwOyc=\\\"\",\n            \"systemId\": \"e7a68d31-4a45-ed11-946f-000d3a25421c\",\n            \"bookingNo\": \"RH0000001\",\n            \"lineNo\": 1,\n            \"contactNo\": \"CO0000026\",\n            \"name\": \"Client Name\",\n            \"firstName\": \"Client\",\n            \"middleName\": \"\",\n            \"surname\": \"Name\",\n            \"age\": 50,\n            \"sex\": \"Female\",\n            \"address\": \"\",\n            \"postCode\": \"\",\n            \"municipalityNo\": \"\",\n            \"phone\": \"\",\n            \"documentType\": \"NIF/NIE\",\n            \"documentNo\": \"XXXXXXXXA\",\n            \"dateIssued\": \"0001-01-01\",\n            \"expirationDate\": \"0001-01-01\",\n            \"familityRelationship\": \" \",\n            \"email\": \"client@mail.com\",\n            \"nacionality\": \"ESP\",\n            \"originatingNo\": \"113\",\n            \"mobilePhoneNo\": \"\",\n            \"birthDate\": \"1980-01-01\",\n            \"allowMailList\": false,\n            \"categoryNo\": \"REP\",\n            \"resident\": false,\n            \"arrivalDate\": \"2020-01-31\",\n            \"departureDate\": \"2020-02-25\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"supportNumber\": \"\",\n            \"totalStays\": 0,\n            \"specialDate1\": \"0001-01-01\",\n            \"specialDateDescription1\": \"\",\n            \"specialDate2\": \"0001-01-01\",\n            \"specialDateDescription2\": \"\",\n            \"lastModifiedDateTime\": \"2023-08-14T13:43:30.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk0MTc5NDE5NTczOTEzNTIyMTswMDsn\\\"\",\n            \"systemId\": \"1d14e6a7-b42e-ed11-97e8-00224882e1a5\",\n            \"bookingNo\": \"RH0000002\",\n            \"lineNo\": 1,\n            \"contactNo\": \"CO0000027\",\n            \"name\": \"Client Name 2\",\n            \"firstName\": \"Client\",\n            \"middleName\": \"Name\",\n            \"surname\": \"2\",\n            \"age\": 50,\n            \"sex\": \"Male\",\n            \"address\": \"\",\n            \"postCode\": \"\",\n            \"municipalityNo\": \"\",\n            \"phone\": \"+XX 123456789\",\n            \"documentType\": \"Passport\",\n            \"documentNo\": \"12345678\",\n            \"dateIssued\": \"2020-01-01\",\n            \"expirationDate\": \"2023-12-31\",\n            \"familityRelationship\": \" \",\n            \"email\": \"client2@mail.com\",\n            \"nacionality\": \"GBR\",\n            \"originatingNo\": \"GBR\",\n            \"mobilePhoneNo\": \"\",\n            \"birthDate\": \"1970-01-01\",\n            \"allowMailList\": false,\n            \"categoryNo\": \"VIP\",\n            \"resident\": false,\n            \"arrivalDate\": \"2022-08-31\",\n            \"departureDate\": \"2023-09-06\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"supportNumber\": \"\",\n            \"totalStays\": 0,\n            \"specialDate1\": \"0001-01-01\",\n            \"specialDateDescription1\": \"\",\n            \"specialDate2\": \"0001-01-01\",\n            \"specialDateDescription2\": \"\",\n            \"lastModifiedDateTime\": \"2023-12-19T13:40:05.133Z\"\n        }\n    ]\n}"}],"_postman_id":"49b95767-4b75-494c-8384-196bfb060048"},{"name":"guest","id":"22455f8d-f9b0-476c-99dc-f279f67a061e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"contactNo\": \"CO0000028\",\r\n    \"name\": \"Client name\",\r\n    \"firstName\": \"Client\",\r\n    \"middleName\": \"\",\r\n    \"surname\": \"name\",\r\n    \"age\": 52,\r\n    \"sex\": \"Male\",\r\n    \"address\": \"\",\r\n    \"postCode\": \"\",\r\n    \"municipalityNo\": \"\",\r\n    \"phone\": \"123456789\",\r\n    \"documentType\": \"NIF/NIE\",\r\n    \"documentNo\": \"12345678A\",\r\n    \"dateIssued\": \"0001-01-01\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"familityRelationship\": \" \",\r\n    \"email\": \"client@client.com\",\r\n    \"nacionality\": \"ESP\",\r\n    \"originatingNo\": \"114\",\r\n    \"mobilePhoneNo\": \"\",\r\n    \"birthDate\": \"1970-01-01\",\r\n    \"allowMailList\": false,\r\n    \"categoryNo\": \"REP\",\r\n    \"resident\": false,\r\n    \"arrivalDate\": \"2022-08-31\",\r\n    \"departureDate\": \"2022-09-01\",\r\n    \"invoicedBoardBasis\": \"MP\",\r\n    \"totalStays\": 0,\r\n    \"specialDate1\": \"0001-01-01\",\r\n    \"specialDateDescription1\": \"\",\r\n    \"specialDate2\": \"0001-01-01\",\r\n    \"specialDateDescription2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/guests(<ID>)","description":"<p>Modifies the selected guest data.</p>\n","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","guests(<ID>)"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b7185976-b503-45f9-bd3f-f67bdab38266","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"contactNo\": \"CO0000028\",\r\n    \"name\": \"Client name\",\r\n    \"firstName\": \"Client\",\r\n    \"middleName\": \"\",\r\n    \"surname\": \"name\",\r\n    \"age\": 52,\r\n    \"sex\": \"Male\",\r\n    \"address\": \"\",\r\n    \"postCode\": \"\",\r\n    \"municipalityNo\": \"\",\r\n    \"phone\": \"123456789\",\r\n    \"documentType\": \"NIF/NIE\",\r\n    \"documentNo\": \"12345678A\",\r\n    \"dateIssued\": \"0001-01-01\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"familityRelationship\": \" \",\r\n    \"email\": \"client@client.com\",\r\n    \"nacionality\": \"ESP\",\r\n    \"originatingNo\": \"114\",\r\n    \"mobilePhoneNo\": \"\",\r\n    \"birthDate\": \"1970-01-01\",\r\n    \"allowMailList\": false,\r\n    \"categoryNo\": \"REP\",\r\n    \"resident\": false,\r\n    \"arrivalDate\": \"2022-08-31\",\r\n    \"departureDate\": \"2022-09-01\",\r\n    \"invoicedBoardBasis\": \"MP\",\r\n    \"totalStays\": 0,\r\n    \"specialDate1\": \"0001-01-01\",\r\n    \"specialDateDescription1\": \"\",\r\n    \"specialDate2\": \"0001-01-01\",\r\n    \"specialDateDescription2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/guests(<ID>)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"95e12384-2d4d-c038-25e7-18dedf7ef801"},{"key":"mise-correlation-id","value":"f88848d7-f279-4161-ad00-d42d05982d71"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"39bca68c-b9eb-41bf-9b98-a8adde7af6cb"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 10:19:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company ID>)/guests/$entity\",\n    \"@odata.etag\": \"W/\\\"JzIwOzExMzM3NjQ0MzQxNjQ0Nzg1MjE1MTswMDsn\\\"\",\n    \"systemId\": \"a43df681-4945-ed11-946f-000d3a25421c\",\n    \"bookingNo\": \"RH0000003\",\n    \"lineNo\": 1,\n    \"contactNo\": \"CO0000028\",\n    \"name\": \"Client name\",\n    \"firstName\": \"\",\n    \"middleName\": \"name\",\n    \"surname\": \"GARCÍA\",\n    \"age\": 52,\n    \"sex\": \"Male\",\n    \"address\": \"\",\n    \"postCode\": \"\",\n    \"municipalityNo\": \"\",\n    \"phone\": \"123456789\",\n    \"documentType\": \"NIF/NIE\",\n    \"documentNo\": \"12345678A\",\n    \"dateIssued\": \"0001-01-01\",\n    \"expirationDate\": \"0001-01-01\",\n    \"familityRelationship\": \" \",\n    \"email\": \"client@client.com\",\n    \"nacionality\": \"ESP\",\n    \"originatingNo\": \"114\",\n    \"mobilePhoneNo\": \"\",\n    \"birthDate\": \"1970-01-01\",\n    \"allowMailList\": false,\n    \"categoryNo\": \"REP\",\n    \"resident\": false,\n    \"arrivalDate\": \"2022-08-31\",\n    \"departureDate\": \"2022-09-01\",\n    \"invoicedBoardBasis\": \"MP\",\n    \"totalStays\": 0,\n    \"specialDate1\": \"0001-01-01\",\n    \"specialDateDescription1\": \"\",\n    \"specialDate2\": \"0001-01-01\",\n    \"specialDateDescription2\": \"\",\n    \"SystemModifiedAt\": \"2023-07-26T10:19:27.743Z\"\n}"},{"id":"702273c7-463c-45a4-9338-d65379d6b5e4","name":"404","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"RH0000003\",\r\n    \"lineNo\": 1,\r\n    \"contactNo\": \"CO0000028\",\r\n    \"name\": \"Client name\",\r\n    \"firstName\": \"Client\",\r\n    \"middleName\": \"\",\r\n    \"surname\": \"name\",\r\n    \"age\": 52,\r\n    \"sex\": \"Male\",\r\n    \"address\": \"\",\r\n    \"postCode\": \"\",\r\n    \"municipalityNo\": \"\",\r\n    \"phone\": \"123456789\",\r\n    \"documentType\": \"NIF/NIE\",\r\n    \"documentNo\": \"12345678A\",\r\n    \"dateIssued\": \"0001-01-01\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"familityRelationship\": \" \",\r\n    \"email\": \"client@client.com\",\r\n    \"nacionality\": \"ESP\",\r\n    \"originatingNo\": \"114\",\r\n    \"mobilePhoneNo\": \"\",\r\n    \"birthDate\": \"1970-01-01\",\r\n    \"allowMailList\": false,\r\n    \"categoryNo\": \"REP\",\r\n    \"resident\": false,\r\n    \"arrivalDate\": \"2022-08-31\",\r\n    \"departureDate\": \"2022-09-01\",\r\n    \"invoicedBoardBasis\": \"MP\",\r\n    \"totalStays\": 0,\r\n    \"specialDate1\": \"0001-01-01\",\r\n    \"specialDateDescription1\": \"\",\r\n    \"specialDate2\": \"0001-01-01\",\r\n    \"specialDateDescription2\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/guests(<ID>)"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"9712d457-c45e-52a3-3e99-61cc781c6a38"},{"key":"mise-correlation-id","value":"fe246a7c-8bd5-4d79-9f3b-73a327f4a98b"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f25be9e1-5577-4458-8153-b24bf0bc4b08"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 10:19:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"BadRequest_ResourceNotFound\",\n        \"message\": \"Resource not found for the segment 'guests'.  CorrelationId:  f25be9e1-5577-4458-8153-b24bf0bc4b08.\"\n    }\n}"},{"id":"f93fe744-c6a8-4b53-96dc-ab8dd1ff65a5","name":"Change Phone and Email","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"phone\": \"223456789\",\r\n    \"email\": \"clientb@client.com\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/guests(<ID>)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"95e12384-2d4d-c038-25e7-18dedf7ef801"},{"key":"mise-correlation-id","value":"f88848d7-f279-4161-ad00-d42d05982d71"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"39bca68c-b9eb-41bf-9b98-a8adde7af6cb"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 10:19:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company ID>)/guests/$entity\",\n    \"@odata.etag\": \"W/\\\"JzIwOzExMzM3NjQ0MzQxNjQ0Nzg1MjE1MTswMDsn\\\"\",\n    \"systemId\": \"a43df681-4945-ed11-946f-000d3a25421c\",\n    \"bookingNo\": \"RH0000003\",\n    \"lineNo\": 1,\n    \"contactNo\": \"CO0000028\",\n    \"name\": \"Client name\",\n    \"firstName\": \"\",\n    \"middleName\": \"name\",\n    \"surname\": \"GARCÍA\",\n    \"age\": 52,\n    \"sex\": \"Male\",\n    \"address\": \"\",\n    \"postCode\": \"\",\n    \"municipalityNo\": \"\",\n    \"phone\": \"223456789\",\n    \"documentType\": \"NIF/NIE\",\n    \"documentNo\": \"12345678A\",\n    \"dateIssued\": \"0001-01-01\",\n    \"expirationDate\": \"0001-01-01\",\n    \"familityRelationship\": \" \",\n    \"email\": \"clientb@client.com\",\n    \"nacionality\": \"ESP\",\n    \"originatingNo\": \"114\",\n    \"mobilePhoneNo\": \"\",\n    \"birthDate\": \"1970-01-01\",\n    \"allowMailList\": false,\n    \"categoryNo\": \"REP\",\n    \"resident\": false,\n    \"arrivalDate\": \"2022-08-31\",\n    \"departureDate\": \"2022-09-01\",\n    \"invoicedBoardBasis\": \"MP\",\n    \"totalStays\": 0,\n    \"specialDate1\": \"0001-01-01\",\n    \"specialDateDescription1\": \"\",\n    \"specialDate2\": \"0001-01-01\",\n    \"specialDateDescription2\": \"\",\n    \"SystemModifiedAt\": \"2023-07-26T10:19:27.743Z\"\n}"}],"_postman_id":"22455f8d-f9b0-476c-99dc-f279f67a061e"},{"name":"addGuest","id":"12e4c9f1-23b9-4b27-9b99-2e7633810828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"no of the booking that the guest is obtained\", // The booking that will add the guest is the one that is setted as the booking ID in the URL\r\n    \"guestLine\": 1 // LineNo of the guest\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.addGuest","description":"<p>Adds an existing guest from another booking in the current booking.</p>\n<p>The bookingNo value in the body is the no of the booking that contains the original guest, the booking that will have the inserted guest is the one that is setted in the URL as ID in the booking(ID) part.</p>\n<p>The booking only can be in Booking or Pencil Booking Status to be able to insert guest.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.addGuest"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"6a46d6af-3897-4b98-b196-e4d49de6c529","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"no of the booking that the guest is obtained\", // The booking that will add the guest is the one that is setted as the booking ID in the URL\r\n    \"guestLine\": 1 // LineNo of the guest\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings(<ID>)/Microsoft.NAV.addGuest"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Guest Name Surname created in Booking bookingNo Successfully\"\n}"},{"id":"0286ad75-6b70-44a7-853e-0682864483df","name":"401","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"non existan booking no\", // The booking that will add the guest is the one that is setted as the booking ID in the URL\r\n    \"guestLine\": 1 // LineNo of the guest\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings(<ID>)/Microsoft.NAV.addGuest"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"http://localhost:8048/BC220/api/noray/booking/v1.0/$metadata#Edm.String\",\n    \"value\": \"The guest with Booking No non existan booking no and Line 1 does not exist\"\n}"}],"_postman_id":"12e4c9f1-23b9-4b27-9b99-2e7633810828"},{"name":"insertGuest","id":"c21e3aee-7cc7-4814-89cc-0df0f569889e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Guest Name\",\r\n    \"middleName\": \"Guest MiddleName\",\r\n    \"surname\": \"Guest Surname\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.insertGuest","description":"<p>Insert a guest in the selected booking.</p>\n<p>The booking only can be in Booking or Pencil Booking Status to be able to insert guest.</p>\n<p>Each value max size is 30 characters.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.insertGuest"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"f8496a7f-b260-4283-8a29-749986cdb086","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"firstName\": \"Name\",\r\n    \"middleName\": \"MiddleName\",\r\n    \"surname\": \"Surname\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings(<ID>)/Microsoft.NAV.insertGuest"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Guest Name Surname created in Booking bookingNo Successfully\"\n}"}],"_postman_id":"c21e3aee-7cc7-4814-89cc-0df0f569889e"},{"name":"messagesPrecheck","id":"f3c5d175-b511-49db-8330-f2acb2496a65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/messagesPrecheck","description":"<p>System table: Message PreCheckIn/Out HTL<br />Page in Business Central: Message PreCheckIn/Out HTL<br />Returns the list of the values in the messagesPrecheck table.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingNo</td>\n<td>Code[20]</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Text[50]</td>\n</tr>\n<tr>\n<td>messageType</td>\n<td>The values that can have this field are:  <br />Checkin  <br />Chekout  <br />Apply Guest Folio</td>\n</tr>\n<tr>\n<td>messageStatus</td>\n<td>The values that can have this field are:  <br />Pending  <br />In Process  <br />Done</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","messagesPrecheck"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"d2b09a73-81e1-4f4d-9d21-b66864acae7d","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/messagesPrecheck"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/messagesPrecheck\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Njc4MzQzOTUxMjgzMDk1NTExOzAwOyc=\\\"\",\r\n            \"systemId\": \"d84a5494-2977-ef11-b99e-202b201de956\",\r\n            \"bookingNo\": \"0000001\",\r\n            \"messageType\": \"CheckIn\",\r\n            \"source\": \"Test\",\r\n            \"messageStatus\": \"Pending\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"f3c5d175-b511-49db-8330-f2acb2496a65"},{"name":"messagesPrecheck","id":"b48ce379-fb48-40bd-bc4b-0ff4a385452e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"0000001\",\r\n    \"messageType\": \"CheckIn\",\r\n    \"source\":\"Test\",\r\n    \"messageStatus\":\"Pending\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/messagesPrecheck","description":"<p>Realizes the insert in the messagesPrecheck table.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingNo</td>\n<td>Code[20]</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Text[50]</td>\n</tr>\n<tr>\n<td>messageType</td>\n<td>The values that can have this field are:  <br />Checkin  <br />Chekout  <br />Apply Guest Folio</td>\n</tr>\n<tr>\n<td>messageStatus</td>\n<td>The values that can have this field are:  <br />Pending  <br />In Process  <br />Done</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","messagesPrecheck"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"da5a64f5-5a82-4a33-b8b5-f2885d298d65","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNo\": \"0000001\",\r\n    \"messageType\": \"CheckIn\",\r\n    \"source\":\"Test\",\r\n    \"messageStatus\":\"Pending\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/messagesPrecheck"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\r\n    \"@odata.etag\": \"W/\\\"JzE5OzQ2Njc4MzQzOTUxMjgzMDk1NTExOzAwOyc=\\\"\",\r\n    \"systemId\": \"d84a5494-2977-ef11-b99e-202b201de956\",\r\n    \"bookingNo\": \"0000001\",\r\n    \"messageType\": \"CheckIn\",\r\n    \"source\": \"Test\",\r\n    \"messageStatus\": \"Pending\"\r\n}"}],"_postman_id":"b48ce379-fb48-40bd-bc4b-0ff4a385452e"},{"name":"checkIn","id":"b9ac445c-1717-4c35-9314-50a8af1c5a4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.checkin","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.checkin"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"91447efe-1499-412e-aded-4c319aa97c9c","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookings(<ID>)/Microsoft.NAV.checkin"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\r\n    \"value\": \"Checkin successfully done\"\r\n}"}],"_postman_id":"b9ac445c-1717-4c35-9314-50a8af1c5a4d"},{"name":"checkout","id":"05719c59-0d92-4b76-9dcb-0518d8535303","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.checkout","description":"<p>Realizes a checkout of the selected booking.</p>\n","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.checkout"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"1dded6ac-5147-4ca4-8aa7-d15fbe52fd9b","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.checkout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f15355b3-99a1-62bd-f9fd-73e4d157b54f"},{"key":"mise-correlation-id","value":"71391ede-2495-4cce-b03a-064087e18982"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"76f0b5ca-d39d-4fdf-89f5-281db5155374"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 11:25:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Checkout Booking X has been done \"\n}"},{"id":"f2ff404b-9805-4905-aea8-c285bd6f3a55","name":"200 Checkout not applied with warning","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.checkout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f15355b3-99a1-62bd-f9fd-73e4d157b54f"},{"key":"mise-correlation-id","value":"71391ede-2495-4cce-b03a-064087e18982"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"76f0b5ca-d39d-4fdf-89f5-281db5155374"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 26 Jul 2023 11:25:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Guest Folio CH0000007 is not printed as real. You must to print it before checkout\"\n}"},{"id":"9960abfb-f1f3-4d3a-9fe0-06ffd4770a44","name":"400","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.checkout"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"940c1d3d-38fe-3a0d-3ac5-a89ddb204449"},{"key":"mise-correlation-id","value":"a3337dc7-5667-43ff-94a8-2f6777d4b94a"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"a970145e-90e7-4169-ac59-0295bbee43ca"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:41:51 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Application_DialogException\",\n        \"message\": \"Departure date must be equal to Hotel date MM/DD/YY  CorrelationId:  a970145e-90e7-4169-ac59-0295bbee43ca.\"\n    }\n}"},{"id":"025719cb-97d2-4348-96ba-0401c63a1589","name":"401","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.checkout"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"7dc88cc0-e767-a2ab-a6d7-d553da80a4e9"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:41:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"}],"_postman_id":"05719c59-0d92-4b76-9dcb-0518d8535303"},{"name":"rooms","id":"dbc46a99-d1ea-4c8c-815d-b5df685b5c63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/rooms","description":"<p>System table: Room HTL<br />Page in Business Central: Room HTL<br />Return the list of rooms.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room number.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[100]</td>\n<td>Specifies the description of the room.</td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of room according to the types of rooms defined for the Hotel (doubles, singles, suites, etc ...).</td>\n</tr>\n<tr>\n<td>class</td>\n<td>Option</td>\n<td>Specifies the class of the room; real (corresponds to a real type existing in the hotel), alternative (corresponds to a type of room that does not exist in the hotel but is created to be able to perform specific billings to TTOO, eg view pool, interior view. These types of rooms must correspond to a real type of room for planning purposes), Fictional (does not correspond to any type of room, they are created only to generate customers accounts without a booking of accommodation), detour (no corresponds to no room type, only for hotel customers due to lack of availability).</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Enum</td>\n<td>Specifies the status, for housekeeping purposes, of the room; Not done, Clean, Clean, Revised, Broken, Revise.</td>\n</tr>\n<tr>\n<td>block</td>\n<td>Code[10]</td>\n<td>Specifies the block of the building in which the room is located.</td>\n</tr>\n<tr>\n<td>floorNo</td>\n<td>Code[20]</td>\n<td>Specifies the floor of the block/building in which the room is located.</td>\n</tr>\n<tr>\n<td>excludedPlanning</td>\n<td>Boolean</td>\n<td>Specifies if the room is excluded from the room planning, either because it is out of use or because it is a Fictional room or a detour.</td>\n</tr>\n<tr>\n<td>latestRevisionDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>roomJoined</td>\n<td>Code[10]</td>\n<td>Specifies if the room is connected to another room.</td>\n</tr>\n<tr>\n<td>divertedValue</td>\n<td>Option</td>\n<td>In the case that it is a DETOUR class room. Specifies if the valuation of the booking at the destination hotel is valued according to the rates of the origin hotel or the destination hotel.</td>\n</tr>\n<tr>\n<td>detourCustomerTarget</td>\n<td>Code[20]</td>\n<td>In the case that it is a DETOUR class room. Specifies the customer code that the current hotel has as a customer at the destination hotel to generate automatic booking between hotels.</td>\n</tr>\n<tr>\n<td>detourDepositPaymentMethod</td>\n<td>Code[20]</td>\n<td>Specifies which is the payment method for the deposit created in the target company.</td>\n</tr>\n<tr>\n<td>detourHotelName</td>\n<td>Text[30]</td>\n<td>In the case that it is a DETOUR class room. Specifies the hotel codewhich the guest will be diverted when it comes to detours to a hotel in the same chain. This hotel code must belong to a hotel in the same database as the current one.</td>\n</tr>\n<tr>\n<td>detourSameVATRegistration</td>\n<td>Boolean</td>\n<td>In the case that this parameter is set. Specifies that booking will be created in the company target with the same customer than in the source company and the invoice in the target company will be set at name of the source company.</td>\n</tr>\n<tr>\n<td>attributeCaption1</td>\n<td>Text</td>\n<td>Generated Text to help the users to understand what the attribute is referring to.</td>\n</tr>\n<tr>\n<td>attribute1</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>attributeCaption2</td>\n<td>Text</td>\n<td>Generated Text to help the users to understand what the attribute is referring to.</td>\n</tr>\n<tr>\n<td>attribute2</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>attributeCaption3</td>\n<td>Text</td>\n<td>Generated Text to help the users to understand what the attribute is referring to.</td>\n</tr>\n<tr>\n<td>attribute3</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>attributeCaption4</td>\n<td>Text</td>\n<td>Generated Text to help the users to understand what the attribute is referring to.</td>\n</tr>\n<tr>\n<td>attribute4</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>attributeCaption5</td>\n<td>Text</td>\n<td>Generated Text to help the users to understand what the attribute is referring to.</td>\n</tr>\n<tr>\n<td>attribute5</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","rooms"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"cd7973fe-3e56-4bd9-98e7-3b5562aee3ba","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/rooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0cbb822e-53e7-86dd-fb43-2c6cbde0abd6"},{"key":"mise-correlation-id","value":"3b64212f-f706-4a49-80ea-40ede78d92f3"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"4ef7e572-7d44-4b1b-9dce-c21a33210a49"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Thu, 24 Aug 2023 11:40:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/rooms\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjYyNzMwODU0MjIwNDUxNzUxOzAwOyc=\\\"\",\n            \"systemId\": \"cc972629-2934-ed11-97e8-000d3a398287\",\n            \"roomNo\": \"XXX\",\n            \"description\": \"room description\",\n            \"roomType\": \"FIC\",\n            \"class\": \"fictitious\",\n            \"status\": \"Undone\",\n            \"block\": \"\",\n            \"floorNo\": \"\",\n            \"excludedPlanning\": true,\n            \"latestRevisionDate\": \"0001-01-01\",\n            \"roomJoined\": \"\",\n            \"divertedValue\": \"Value in Source\",\n            \"detourCustomerTarget\": \"\",\n            \"detourDepositPaymentMethod\": \"\",\n            \"detourHotelName\": \"\",\n            \"detourSameVATRegistration\": false,\n            \"attributeCaption1\": \"CAMA\",\n            \"attribute1\": \"\",\n            \"attributeCaption2\": \"BALCON\",\n            \"attribute2\": \"\",\n            \"attributeCaption3\": \"VISTA PISCINA\",\n            \"attribute3\": \"\",\n            \"attributeCaption4\": \"ADAPTADA MINUSV.\",\n            \"attribute4\": \"\",\n            \"attributeCaption5\": \"TIPO BAÑO\",\n            \"attribute5\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIzMzQ4NjQzOTY2MjI2NTI2MTswMDsn\\\"\",\n            \"systemId\": \"30c62202-2429-ed11-97e8-00224882e1a5\",\n            \"roomNo\": \"XXY\",\n            \"description\": \"room description 2\",\n            \"roomType\": \"DBL\",\n            \"class\": \"real\",\n            \"status\": \"Clean\",\n            \"block\": \"\",\n            \"floorNo\": \"\",\n            \"excludedPlanning\": false,\n            \"latestRevisionDate\": \"2022-08-31\",\n            \"roomJoined\": \"\",\n            \"divertedValue\": \"Value in Source\",\n            \"detourCustomerTarget\": \"\",\n            \"detourDepositPaymentMethod\": \"\",\n            \"detourHotelName\": \"\",\n            \"detourSameVATRegistration\": false,\n            \"attributeCaption1\": \"CAMA\",\n            \"attribute1\": \"TWIN BED\",\n            \"attributeCaption2\": \"BALCON\",\n            \"attribute2\": \"GRANDE \",\n            \"attributeCaption3\": \"VISTA PISCINA\",\n            \"attribute3\": \"SI\",\n            \"attributeCaption4\": \"ADAPTADA MINUSV.\",\n            \"attribute4\": \"NO\",\n            \"attributeCaption5\": \"TIPO BAÑO\",\n            \"attribute5\": \"BAÑERA HIDROMASAJE\"\n        }\n    ]\n}"},{"id":"2ba23f45-8eb7-4647-8282-d9abb2856b62","name":"400","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/rooms"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"83212132-1543-4088-a70b-0dd402afb840","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/rooms"},"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"},{"id":"9796a9b6-dab3-4bc7-b5a2-ce718f44a37e","name":"Filter By RoomType","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/rooms?$filter=roomType eq 'FIC'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","booking","v1.0","companies(< company ID >)","rooms"],"query":[{"key":"$filter","value":"roomType eq 'FIC'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0cbb822e-53e7-86dd-fb43-2c6cbde0abd6"},{"key":"mise-correlation-id","value":"3b64212f-f706-4a49-80ea-40ede78d92f3"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"4ef7e572-7d44-4b1b-9dce-c21a33210a49"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Thu, 24 Aug 2023 11:40:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/rooms\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjYyNzMwODU0MjIwNDUxNzUxOzAwOyc=\\\"\",\n            \"systemId\": \"cc972629-2934-ed11-97e8-000d3a398287\",\n            \"roomNo\": \"XXX\",\n            \"description\": \"room description\",\n            \"roomType\": \"FIC\",\n            \"class\": \"fictitious\",\n            \"status\": \"Undone\",\n            \"block\": \"\",\n            \"floorNo\": \"\",\n            \"excludedPlanning\": true,\n            \"latestRevisionDate\": \"0001-01-01\",\n            \"roomJoined\": \"\",\n            \"divertedValue\": \"Value in Source\",\n            \"detourCustomerTarget\": \"\",\n            \"detourDepositPaymentMethod\": \"\",\n            \"detourHotelName\": \"\",\n            \"detourSameVATRegistration\": false,\n            \"attributeCaption1\": \"CAMA\",\n            \"attribute1\": \"\",\n            \"attributeCaption2\": \"BALCON\",\n            \"attribute2\": \"\",\n            \"attributeCaption3\": \"VISTA PISCINA\",\n            \"attribute3\": \"\",\n            \"attributeCaption4\": \"ADAPTADA MINUSV.\",\n            \"attribute4\": \"\",\n            \"attributeCaption5\": \"TIPO BAÑO\",\n            \"attribute5\": \"\"\n        }\n    ]\n}"}],"_postman_id":"dbc46a99-d1ea-4c8c-815d-b5df685b5c63"},{"name":"changeRoomStatus","id":"5f68d4d3-cc5d-4f6c-91e5-be617e161dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"status\":\"Clean\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/rooms(< Room ID >)/Microsoft.NAV.changeRoomStatus","description":"<p>This function allows you to change the status of the room, the statuses that can be chosen are as follows:</p>\n<p>Undone, Cleaning, Clean, Checked, Broken, Check</p>\n<p>In case of doubt in the Check and Checked field when at check-in a guest decides that they do not want the room, the room itself was clean and you can change the status to Check to make sure that everything is in order.<br />When a room has been clean and vacant for several days they would also put it in the Check status and once they have done the task they can put it as Checked.<br />In the case of Broken is a state of the room itself, so from there you have to add in lock rooms the corresponding value.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","rooms(< Room ID >)","Microsoft.NAV.changeRoomStatus"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"5fdb5f6b-5a90-466d-8e9c-fdf25c778264","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"status\":\"Clean\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/rooms(< Room ID >)/Microsoft.NAV.changeRoomStatus"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\r\n    \"value\": \"Room Status Changed\"\r\n}"}],"_postman_id":"5f68d4d3-cc5d-4f6c-91e5-be617e161dd5"},{"name":"assignRoom","id":"a3bf26d4-21e3-4569-9027-4f8cbaf498ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"102\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings(<ID>)/Microsoft.NAV.assignRoom","description":"<p>Assigns a room to the selected booking.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>roomNo</td>\n<td>Text</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings(<ID>)","Microsoft.NAV.assignRoom"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"7f25cf68-d563-44df-9596-77125f99c96d","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"102\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.assignRoom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"a982bf57-4835-2de4-14ab-a78601917eb0"},{"key":"mise-correlation-id","value":"6263a5bd-468b-4f02-9b47-ea4ab792ef64"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"cb8bdc3e-2eb2-4186-ab3e-5cead5217bf2"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:44:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"\"\n}"},{"id":"9a50af88-291a-4567-80d2-75fc068dd607","name":"401","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"102\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.assignRoom"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"09e964da-83b4-800c-0973-1390851ac479"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:43:24 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"cda87f14-357a-4a89-abc8-05c9799a364e","name":"404","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"999999\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.assignRoom"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"a14c21c8-2854-05a1-003f-0f022da2075f"},{"key":"mise-correlation-id","value":"d9efa506-5e16-4964-bb8b-5c92ce302e13"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9dd01533-9c24-49c2-be59-b4e9c6746916"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:43:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_RecordNotFound\",\n        \"message\": \"The Room does not exist. Identification fields and values: No.='999999'  CorrelationId:  9dd01533-9c24-49c2-be59-b4e9c6746916.\"\n    }\n}"}],"_postman_id":"a3bf26d4-21e3-4569-9027-4f8cbaf498ce"},{"name":"paymentBooking","id":"1ae9117b-9dd2-4dc3-a786-3eae3be19bd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 700,\r\n    \"paymentMethod\": \"CONTADO\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookings({{idBooking}})/Microsoft.NAV.postPaymentBooking","description":"<p>Realizes the payment method with the stated amount.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Text</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookings({{idBooking}})","Microsoft.NAV.postPaymentBooking"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"47418b95-29e8-49ff-a824-019c87e53adc","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 700,\r\n    \"paymentMethod\": \"CONTADO\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.postPaymentBooking"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"51793096-bdaf-ba32-3c7f-8d4b7e3bb41e"},{"key":"mise-correlation-id","value":"6399cfac-5697-4d87-bd89-10f3484c3f1a"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"1b3eeddd-1f29-4a7e-9353-83d757c02bfe"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:46:20 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<api publisher>/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"Payment has been done, GuestFolio balance ammount: XXXX\"\n}"},{"id":"5cbc983c-1dcd-4980-83e3-38df75e824a4","name":"401","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 700,\r\n    \"paymentMethod\": \"CONTADO\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.postPaymentBooking"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"db3e3206-5480-9350-5adc-5c9cf0468694"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:45:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"a5a75562-6325-4c2a-ab6d-1c8c886d4597","name":"404","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"amount\": 700,\r\n    \"paymentMethod\": \"XXXXX\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookings(<ID>)/Microsoft.NAV.postPaymentBooking"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"96a63991-66f2-e533-4bd0-2acbc6d72966"},{"key":"mise-correlation-id","value":"f44bf566-d4af-4f35-b10c-844fd34bed06"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"e3e26f7d-f252-4322-8611-a7a05142371a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:47:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n     \"error\": {\n        \"code\": \"Internal_RecordNotFound\",\n        \"message\": \"The field Payment Method No. of table Booking Deposit contains a value (XXXXX) that cannot be found in the related table (Payment Method).\"\n    }\n}"}],"_postman_id":"1ae9117b-9dd2-4dc3-a786-3eae3be19bd0"},{"name":"origins","id":"7d8d225b-a9d1-44d2-8cf0-1e19acd16f1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/origins","description":"<p>System table: Origins HTL<br />Page in Business Central: Origins HTL<br />Return a list of the current provinces in the system.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","origins"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"36decc0d-c1fc-4911-ba1f-f4098ca36987","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/origins"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/origins\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzQ1NDM3NDIxODk2MjQ4MTUxOzAwOyc=\\\"\",\n            \"systemId\": \"6dc9dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"countryNo\": \"\",\n            \"isoNo\": \"ES111\",\n            \"languageNo\": \"\",\n            \"name\": \"A Coruña\",\n            \"originNo\": \"111\",\n            \"statisticsCountryNo\": 1,\n            \"statisticsCountrySubcode\": 12,\n            \"statisticsRegionalNo\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDYzNTkwNDc2Mjk5ODg5NTIxOzAwOyc=\\\"\",\n            \"systemId\": \"6ec9dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"countryNo\": \"\",\n            \"isoNo\": \"ES112\",\n            \"languageNo\": \"\",\n            \"name\": \"Lugo\",\n            \"originNo\": \"112\",\n            \"statisticsCountryNo\": 1,\n            \"statisticsCountrySubcode\": 12,\n            \"statisticsRegionalNo\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDg2MDU2NzE1MzMyMTE3MjkxOzAwOyc=\\\"\",\n            \"systemId\": \"6fc9dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"countryNo\": \"\",\n            \"isoNo\": \"ES113\",\n            \"languageNo\": \"\",\n            \"name\": \"Ourense\",\n            \"originNo\": \"113\",\n            \"statisticsCountryNo\": 1,\n            \"statisticsCountrySubcode\": 12,\n            \"statisticsRegionalNo\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI2NjczNTYzNjIzMDc2MTEyMTswMDsn\\\"\",\n            \"systemId\": \"70c9dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"countryNo\": \"\",\n            \"isoNo\": \"ES114\",\n            \"languageNo\": \"\",\n            \"name\": \"Pontevedra\",\n            \"originNo\": \"114\",\n            \"statisticsCountryNo\": 1,\n            \"statisticsCountrySubcode\": 12,\n            \"statisticsRegionalNo\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjQ4NzMyMDI0NTE5Mjk4OTcxOzAwOyc=\\\"\",\n            \"systemId\": \"71c9dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"countryNo\": \"\",\n            \"isoNo\": \"ES120\",\n            \"languageNo\": \"\",\n            \"name\": \"Asturias\",\n            \"originNo\": \"120\",\n            \"statisticsCountryNo\": 1,\n            \"statisticsCountrySubcode\": 3,\n            \"statisticsRegionalNo\": 2,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"7d8d225b-a9d1-44d2-8cf0-1e19acd16f1f"},{"name":"bookingEntries","id":"49c9cbc2-5d00-4357-b24c-fdb66baff635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingEntries","description":"<p>System table: Booking Entry HTL<br />Page in Business Central: Booking Entries HTL<br />Returns the list of booking entries.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>bookingNo</td>\n<td></td>\n<td>Specifies the booking No.</td>\n</tr>\n<tr>\n<td>bookingEntryDate</td>\n<td>Date</td>\n<td>Specifies the date of the entry.</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>bookedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the room type of the booking.</td>\n</tr>\n<tr>\n<td>assignedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the assigned room type.</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room number.</td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the Allotment no.</td>\n</tr>\n<tr>\n<td>bookingCustomer</td>\n<td>Code[20]</td>\n<td>Specifies the customer code of the booking.</td>\n</tr>\n<tr>\n<td>boardBasis</td>\n<td>Code[10]</td>\n<td>Specifies the booking board basis.</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Specifies the number of adults of the booking.</td>\n</tr>\n<tr>\n<td>childrenRateA</td>\n<td>Decimal</td>\n<td>Specifies the number of children with rate A.</td>\n</tr>\n<tr>\n<td>childrenRateB</td>\n<td>Decimal</td>\n<td>Specifies the number of children with rate B.</td>\n</tr>\n<tr>\n<td>childrenRateC</td>\n<td>Decimal</td>\n<td>Specifies the number of children with rate C.</td>\n</tr>\n<tr>\n<td>adultsInExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the number of adults in extra bed.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the number of babies of the booking.</td>\n</tr>\n<tr>\n<td>shiftBreakfast</td>\n<td>Code[20]</td>\n<td>Specifies the Shift Breakfast.</td>\n</tr>\n<tr>\n<td>shiftDinner</td>\n<td>Code[20]</td>\n<td>Specifies the Shift Dinner.</td>\n</tr>\n<tr>\n<td>shiftLunch</td>\n<td>Code[20]</td>\n<td>Specifies the Shift Lunch.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>option</td>\n<td>Specifies the status of the booking.</td>\n</tr>\n<tr>\n<td>qtyBookedRooms</td>\n<td>Decimal</td>\n<td>Specifies the quantity of booking rooms.</td>\n</tr>\n<tr>\n<td>qtyAssignedRooms</td>\n<td>Decimal</td>\n<td>Specifies the quantity of assigned rooms.</td>\n</tr>\n<tr>\n<td>arrivals</td>\n<td>Decimal</td>\n<td>Specifies if the entry is from the arrival day of the booking.</td>\n</tr>\n<tr>\n<td>departures</td>\n<td>Decimal</td>\n<td>Specifies if the entry is from the departure day of the booking.</td>\n</tr>\n<tr>\n<td>lateCheckIn</td>\n<td>Decimal</td>\n<td>Specifies if the entry is from the ''Late Check-In''.</td>\n</tr>\n<tr>\n<td>roomChangeTomorrow</td>\n<td>boolean</td>\n<td>Specifies if the entry is linked to an expected room change for the next day.</td>\n</tr>\n<tr>\n<td>changeID</td>\n<td>Integer</td>\n<td>Specifies the code of the room change.</td>\n</tr>\n<tr>\n<td>adultsBoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the board basis type for adults of the booking.</td>\n</tr>\n<tr>\n<td>childrenABoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the board basis type for children of rate A.</td>\n</tr>\n<tr>\n<td>childrenBBoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the board basis type for children of rate B.</td>\n</tr>\n<tr>\n<td>childrenCBoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the board basis type for children of rate C.</td>\n</tr>\n<tr>\n<td>babiesBoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the board basis type for babies.</td>\n</tr>\n<tr>\n<td>extrasBoardBasis</td>\n<td>Text[250]</td>\n<td>Specifies the extra board basis type.</td>\n</tr>\n<tr>\n<td>excludedPlanningBookedRoom</td>\n<td>Boolean</td>\n<td>Specifies if the entry is exclude from the general planning or not.</td>\n</tr>\n<tr>\n<td>excludedPlanningAssigRoom</td>\n<td>Boolean</td>\n<td>Specifies if the entry is exclude from the general planning or not.</td>\n</tr>\n<tr>\n<td>subagency</td>\n<td>Code[20]</td>\n<td>Specifies subagency. This data is only for analysis purposes not for invoicing purposes.</td>\n</tr>\n<tr>\n<td>bookingCompany</td>\n<td>Code[20]</td>\n<td>Specifies the company that makes the booking, normally used when guests who come from it are regularly received. The company must be created as a company-type contact. This data is only for analysis purposes, not for invoicing purposes.</td>\n</tr>\n<tr>\n<td>hotelVoucher</td>\n<td>Code[50]</td>\n<td>Specifies the channel voucher in origin.</td>\n</tr>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingEntries"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"48d483a2-0fba-4ce4-b9d7-8d5adc3f345d","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookingEntries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"ac7123dc-79e2-0e65-814e-b0f813737fb5"},{"key":"mise-correlation-id","value":"2e634cbf-0ad5-40bf-bf3b-dde22cc870df"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"21bf491c-87a8-4a5e-a3af-c2dfcd8829bd"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 07:58:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookingEntries\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTE5NTAyMDI0MjI2OTIxMTIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000001\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"5ecf0460-6b45-ed11-946f-000d3aa8c4e6\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"202\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzUyNDA1OTU3Mzg3NjU3MjkxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000001\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"5fcf0460-6b45-ed11-946f-000d3aa8c4e6\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"202\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjI2NzcwMzM4MjA0MTA3NjAxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"ae0e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"102\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 4,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUzMTA1OTk0MTIwNTYzODUyMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"af0e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"102\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU3Njg5MjY2ODI0MzEzNTc0MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingEntryDate\": \"2022-09-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"b00e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"102\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTYwNDYzOTgyMDM3NjgzNDMxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingEntryDate\": \"2022-09-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"b10e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"102\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTQ2ODM2OTA3MjY5OTY0NjUxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingEntryDate\": \"2022-09-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"b20e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"102\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzI4MzY0OTU4OTUyNjYzMjgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000003\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"dd953d1a-a72b-ee11-bdf5-000d3ada93a8\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomNo\": \"204\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"TCE1\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"TCE1\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 1,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDg1NjM1MTEyOTkyODc5MDYxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000004\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"154f5e66-6b45-ed11-946f-000d3aa8c4e6\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"302\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcxOTQ0MjM0MDQ5NzkxNzI2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000004\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"164f5e66-6b45-ed11-946f-000d3aa8c4e6\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"302\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDE2MDExNjMxOTEzMTUyODgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"8326750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 4,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NzcxMzIzMTg0MjAwNjcxNDIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"8426750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 4,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDIyOTkyODUwNjIwNjQ2NTYxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-09-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"8526750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 4,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzMTE5MjI5ODk2NjcyNTA4MTE7MDA7Jw==\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-09-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"8626750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 4,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODU0OTY1OTUxNzAwNTE5MzMwMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-09-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"8726750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 4,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAzNjIyNDQ1MTAyNTg3MTMyMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingEntryDate\": \"2022-09-05\",\n            \"lineNo\": 0,\n            \"systemId\": \"8826750d-6a45-ed11-946f-000d3a25421c\",\n            \"bookedRoomType\": \"FAM\",\n            \"assignedRoomType\": \"FAM\",\n            \"roomNo\": \"104\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP,MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTI5NTA2MDAxODYwNDQwODkxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000007\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"6da18c30-cd64-ed11-8c34-000d3a271c2d\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"IND\",\n            \"roomNo\": \"103\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAzNjM1MDI5ODk1OTM5NTA2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000007\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"6ea18c30-cd64-ed11-8c34-000d3a271c2d\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"IND\",\n            \"roomNo\": \"103\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYwNjI1OTkyMzE5NjE5NTU1MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"98ef95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTczNzEzMjkyMTc1ODExODc3MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"99ef95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDE1MDEzMDc3NjM4MDE3NTIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"9aef95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3OTUyMTA2OTE4NTU4NzIxMTE7MDA7Jw==\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-05\",\n            \"lineNo\": 0,\n            \"systemId\": \"9bef95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQyNzIyMDMyNDQwNDM5MTY2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-06\",\n            \"lineNo\": 0,\n            \"systemId\": \"9cef95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 1,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0NzQ5MDE3MTE4NzM4OTUyNzE7MDA7Jw==\\\"\",\n            \"bookingNo\": \"RH0000008\",\n            \"bookingEntryDate\": \"2022-09-07\",\n            \"lineNo\": 0,\n            \"systemId\": \"9def95e5-be61-ed11-8c34-000d3a2716d1\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ5MjY1NjU5OTMwNDQxNjAxMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000010\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"24de7119-516a-ed11-8c34-6045bd9d600e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjQ2NDczMjkxNTcyODY4NzAxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000010\",\n            \"bookingEntryDate\": \"2022-09-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"25de7119-516a-ed11-8c34-6045bd9d600e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM3ODc3NDA2NjI5ODc1NzI5MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000010\",\n            \"bookingEntryDate\": \"2022-09-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"26de7119-516a-ed11-8c34-6045bd9d600e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDk2ODA0MzUxMDE5MzA1NzIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000010\",\n            \"bookingEntryDate\": \"2022-09-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"27de7119-516a-ed11-8c34-6045bd9d600e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDgyNjE1NzIyMTY5OTE3MzcyMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000010\",\n            \"bookingEntryDate\": \"2022-09-05\",\n            \"lineNo\": 0,\n            \"systemId\": \"28de7119-516a-ed11-8c34-6045bd9d600e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTkzMDgyNDk0NTcxNDcyMzEwMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000011\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"7c5d0671-f77a-ed11-9989-6045bd9d611e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"101\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Pencil Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwMjQxNTE1NTE5OTcyNjI1MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000011\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"7d5d0671-f77a-ed11-9989-6045bd9d611e\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"101\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Pencil Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDEzMjcyMjU4NzQ3MTI3MDcxMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-09-30\",\n            \"lineNo\": 0,\n            \"systemId\": \"85ce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDgwMzIyMzQ5OTI0MjI2NzkxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"86ce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTIwMTY5NjY3OTgzMjY4MDExOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"87ce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Njk5Mjc4MDAxODQwMjMyNTAxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"88ce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTcwMTg3NjE2MjU0NjYyMDM1MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"89ce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTk0NjQzNTE4MjM1Mjg1MzIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-05\",\n            \"lineNo\": 0,\n            \"systemId\": \"8ace817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzcxMDk2NjA5ODI2OTU5MTI1MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-06\",\n            \"lineNo\": 0,\n            \"systemId\": \"8bce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Nzk3MTY4NzM3NDY1Mzc0MzAxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-07\",\n            \"lineNo\": 0,\n            \"systemId\": \"8cce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTY3MjUzNDcxNTc3NTYxMTIxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-08\",\n            \"lineNo\": 0,\n            \"systemId\": \"8dce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjI4Mjc2MDUzMDE4Njc5MjExOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-09\",\n            \"lineNo\": 0,\n            \"systemId\": \"8ece817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMjc1NjM5NTUzMDU2MTg3NTExOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000012\",\n            \"bookingEntryDate\": \"2022-10-10\",\n            \"lineNo\": 0,\n            \"systemId\": \"8fce817f-e39b-ed11-9a88-6045bd88b04b\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk3NjEzODgzMTY1NzUxOTc4MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000014\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"e8368200-c1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomNo\": \"201\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDg4ODY0NTg4NjQ0MDE5NzMxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000014\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"e9368200-c1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomNo\": \"201\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Occupancy\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjM3NjIxOTQyMDQ1NjQ2NzMxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-02-24\",\n            \"lineNo\": 0,\n            \"systemId\": \"8be0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4MDg1OTAyNjk4MzA5ODA0MTE7MDA7Jw==\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-02-25\",\n            \"lineNo\": 0,\n            \"systemId\": \"8ce0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTUwMDE3NjYyOTgxMjUxNzgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-02-26\",\n            \"lineNo\": 0,\n            \"systemId\": \"8ee0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY4MjY1NTA2MDk3OTgzNTQ3MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-02-27\",\n            \"lineNo\": 0,\n            \"systemId\": \"90e0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg2NDU2MzQ2MDMwODkwMjM2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-02-28\",\n            \"lineNo\": 0,\n            \"systemId\": \"dce0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY4NTQ3ODQxODI5MDY3MTA2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000015\",\n            \"bookingEntryDate\": \"2023-03-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"dee0b502-a0b2-ed11-b598-6045bdf43309\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcyNzMzMTU0MjEwODYwMTE4MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000016\",\n            \"bookingEntryDate\": \"2022-08-31\",\n            \"lineNo\": 0,\n            \"systemId\": \"4ab4837f-c6c4-ed11-9a88-0022488699f4\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TAR1\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMwNjc2OTQ4MDkwMTc5NzM5MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000016\",\n            \"bookingEntryDate\": \"2022-09-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"4bb4837f-c6c4-ed11-9a88-0022488699f4\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"9999997\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjI1OTU2NDg4NjQwMzIwODgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-04-27\",\n            \"lineNo\": 0,\n            \"systemId\": \"65a44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ2MTU3MTU3Njc3MTY0MjM0MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-04-28\",\n            \"lineNo\": 0,\n            \"systemId\": \"66a44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwOTA0NDEzODE1MzE2NTkwMTMxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-04-29\",\n            \"lineNo\": 0,\n            \"systemId\": \"67a44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3Njc2NTg4OTEyNDI3NjIwNDgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-04-30\",\n            \"lineNo\": 0,\n            \"systemId\": \"68a44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzUyNjUyODgxNjgzNTEwODc4MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-05-01\",\n            \"lineNo\": 0,\n            \"systemId\": \"69a44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAxNzg2NzA0MTQxNjYyODczMTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-05-02\",\n            \"lineNo\": 0,\n            \"systemId\": \"6aa44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTM5ODY4MDI0MDcyNTAyOTk2MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-05-03\",\n            \"lineNo\": 0,\n            \"systemId\": \"6ba44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU4NzAyOTUzNDI0NjM0NjM5MTswMDsn\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-05-04\",\n            \"lineNo\": 0,\n            \"systemId\": \"6ca44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 1,\n            \"qtyAssignedRooms\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"TTOO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MzEyMTMxMTU1NjcxMjA2MTgxOzAwOyc=\\\"\",\n            \"bookingNo\": \"RH0000017\",\n            \"bookingEntryDate\": \"2023-05-05\",\n            \"lineNo\": 0,\n            \"systemId\": \"6da44a45-b1e8-ed11-8848-00224888b1e5\",\n            \"bookedRoomType\": \"DBL\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomNo\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"bookingCustomer\": \"CL0000007\",\n            \"boardBasis\": \"MP\",\n            \"adults\": 0,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"adultsInExtraBed\": 0,\n            \"babies\": 0,\n            \"shiftBreakfast\": \"\",\n            \"shiftDinner\": \"\",\n            \"shiftLunch\": \"\",\n            \"status\": \"Booking\",\n            \"qtyBookedRooms\": 0,\n            \"qtyAssignedRooms\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"lateCheckIn\": 0,\n            \"roomChangeTomorrow\": false,\n            \"changeID\": 0,\n            \"adultsBoardBasis\": \"MP,MP\",\n            \"childrenABoardBasis\": \"\",\n            \"childrenBBoardBasis\": \"\",\n            \"childrenCBoardBasis\": \"\",\n            \"babiesBoardBasis\": \"\",\n            \"extrasBoardBasis\": \"\",\n            \"excludedPlanningBookedRoom\": false,\n            \"excludedPlanningAssigRoom\": false,\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"hotelVoucher\": \"\",\n            \"rateNo\": \"\"\n        }\n    ]\n}"},{"id":"b698e8fb-54af-41c1-a964-8dd4bf58f509","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookingEntries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"1fa562d5-8a6d-4728-bff7-beaaf143de51","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/bookingEntries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_DataNotFoundFilter\",\n        \"message\": \"The company <name> does not exist.  CorrelationId:  31115690-7eb7-4502-b6d1-f6893e92b29c.\"\n    }\n}"}],"_postman_id":"49c9cbc2-5d00-4357-b24c-fdb66baff635"},{"name":"hotelItemEntries","id":"587b2561-f05f-46fd-beac-150dc88a05f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/hotelItemEntries","description":"<p>**As of 2024-27-02 the APIGroup of this function changes from hotelItem to booking the change is already in our test sandbox and will be in all future implementations from the given date.<br />**System table: Hotel Item Entry HTL<br />Page in Business Central: Item Ledger Entries HTL</p>\n<p>Returns the list of hotel item entries. This entries include all revenues shown in production datas and can be grouped by itemGroup field.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>entryNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>documentNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>itemNo</td>\n<td>Code[20]</td>\n<td>Specifies the number of the concept of income in the entries.</td>\n</tr>\n<tr>\n<td>itemGroup</td>\n<td>Code[10]</td>\n<td>Specifies the group of the concept of entries income.</td>\n</tr>\n<tr>\n<td>additionalText</td>\n<td>Text[50]</td>\n<td>Specifies additional information about the origin of the entries.</td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>Decimal</td>\n<td>Specifies the amount of the entries without taxes or discounts applied.</td>\n</tr>\n<tr>\n<td>tax</td>\n<td>Decimal</td>\n<td>Specifies the VAT percentage of the entries.</td>\n</tr>\n<tr>\n<td>lineDiscount</td>\n<td>Decimal</td>\n<td>Specifies the discount percentage of the entries according to the applied rate.</td>\n</tr>\n<tr>\n<td>totalAmountInclTax</td>\n<td>Decimal</td>\n<td>Specifies the amount of the entries with the taxes included.</td>\n</tr>\n<tr>\n<td>totalAmountExclTax</td>\n<td>Decimal</td>\n<td>Specifies the amount of the entries without the taxes excluded.</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room number of the entries.</td>\n</tr>\n<tr>\n<td>employeeNo</td>\n<td>Code[20]</td>\n<td>Specifies the employee that commited the charge.</td>\n</tr>\n<tr>\n<td>customerNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer code of the entries.</td>\n</tr>\n<tr>\n<td>bookingNo</td>\n<td>Code[20]</td>\n<td>Specifies the entries booking number.</td>\n</tr>\n<tr>\n<td>guestFolioNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer account number of the entries.</td>\n</tr>\n<tr>\n<td>guestFolioLineNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td>Specifies the rate code of the entries. This data is taken from the booking that originates the entries.</td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the allotment code for the entries. This data is taken from the booking that originates the entries.</td>\n</tr>\n<tr>\n<td>bookedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of booking room of the entries. This data is taken from the booking that originates the entries.</td>\n</tr>\n<tr>\n<td>assignedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of booking room of the entries. This data is taken from the booking that originates the entries.</td>\n</tr>\n<tr>\n<td>boardBasisType</td>\n<td>Code[10]</td>\n<td>Specifies the entries board basis. This data is taken from the booking that originates the entries.</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Specifies the number of adults in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>childrenRateA</td>\n<td>Decimal</td>\n<td>Specifies the number of children in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>childrenRateB</td>\n<td>Decimal</td>\n<td>Specifies the number of children in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>childrenRateC</td>\n<td>Decimal</td>\n<td>Specifies the number of children in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Decimal</td>\n<td>Specifies the total number of children in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the total number of babies in the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>adultsInExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the number of adults excluding extras from the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>originatingNo</td>\n<td>Code[10]</td>\n<td>Specifies the source code of the entries. When the line corresponds to a booking, the value specified in the booking is taken.</td>\n</tr>\n<tr>\n<td>countryRegion</td>\n<td>Code[10]</td>\n<td>Specifies the country code of the customerwhich the entries corresponds.</td>\n</tr>\n<tr>\n<td>subagency</td>\n<td>Code[20]</td>\n<td>Specifies subagency. This data is only for analysis purposes not for invoicing purposes.</td>\n</tr>\n<tr>\n<td>bookingCompany</td>\n<td>Code[20]</td>\n<td>Specifies the company that makes the reservation, normally used when guests who come from it are regularly received. The company must be created as a company-type contact. This data is only for analysis purposes, not for invoicing purposes.</td>\n</tr>\n<tr>\n<td>postedExternalFinancial</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","hotelItemEntries"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"94584408-87e2-4faa-b741-5a2eae2417a6","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/hotelItemEntries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"92c98385-1ba9-f989-22f1-83464b5c8499"},{"key":"mise-correlation-id","value":"c6f5841b-42e6-4659-8b70-0629b4f1add4"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"b57572fd-2431-4631-a653-28e73c63b10f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 02 Aug 2023 10:15:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/hotelItemEntries\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDU1NTI0MTUxNTI4NDk2MjYxOzAwOyc=\\\"\",\n            \"systemId\": \"868d05be-8c4e-ed88-bde4-000d8aaeb88a\",\n            \"entryNo\": 15462,\n            \"postingDate\": \"2018-01-01\",\n            \"documentNo\": \"\",\n            \"itemNo\": \"ALOJ\",\n            \"itemGroup\": \"HAB\",\n            \"additionalText\": \"\",\n            \"unitPrice\": 400.01,\n            \"tax\": 6.5,\n            \"lineDiscount\": 0,\n            \"totalAmountInclTax\": 400.01,\n            \"totalAmountExclTax\": 378.98,\n            \"roomNo\": \"103\",\n            \"employeeNo\": \"\",\n            \"customerNo\": \"CLCONTADO\",\n            \"bookingNo\": \"5000\",\n            \"guestFolioNo\": \"\",\n            \"guestFolioLineNo\": 2,\n            \"rateNo\": \"\",\n            \"allotmentNo\": \"\",\n            \"bookedRoomType\": \"1D\",\n            \"assignedRoomType\": \"1D\",\n            \"boardBasisType\": \"Self Catering\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"adultsInExtraBed\": 0,\n            \"originatingNo\": \"\",\n            \"countryRegion\": \"\",\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"postedExternalFinancial\": false,\n            \"InvoiceNo\": \"\",\n            \"InvoiceDate\": \"0001-01-01\",\n            \"InvoiceName\": \"\",\n            \"ItemDescription\": \"Migrado Noray Hotel ALOJAMIENTO\",\n            \"TaxIncluded\": true\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjU0OTgyMjgxOTU0NTM0MTcxOzAwOyc=\\\"\",\n            \"systemId\": \"868d05be-8c4e-ed88-bde4-000d8aaeb88b\",\n            \"entryNo\": 16002,\n            \"postingDate\": \"2019-01-01\",\n            \"documentNo\": \"\",\n            \"itemNo\": \"ALOJ\",\n            \"itemGroup\": \"HAB\",\n            \"additionalText\": \"\",\n            \"unitPrice\": 300.21,\n            \"tax\": 6.5,\n            \"lineDiscount\": 0,\n            \"totalAmountInclTax\": 300.21,\n            \"totalAmountExclTax\": 243.85,\n            \"roomNo\": \"205\",\n            \"employeeNo\": \"\",\n            \"customerNo\": \"CLCONTADO\",\n            \"bookingNo\": \"6102\",\n            \"guestFolioNo\": \"\",\n            \"guestFolioLineNo\": 254,\n            \"rateNo\": \"\",\n            \"allotmentNo\": \"\",\n            \"bookedRoomType\": \"1D\",\n            \"assignedRoomType\": \"1D\",\n            \"boardBasisType\": \"Self Catering\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"adultsInExtraBed\": 0,\n            \"originatingNo\": \"\",\n            \"countryRegion\": \"\",\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"postedExternalFinancial\": false,\n            \"InvoiceNo\": \"\",\n            \"InvoiceDate\": \"0001-01-01\",\n            \"InvoiceName\": \"\",\n            \"ItemDescription\": \"Migrado Noray Hotel ALOJAMIENTO\",\n            \"TaxIncluded\": true\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MzI1MTUxNDk2MzcyMzE1OTE7MDA7Jw==\\\"\",\n            \"systemId\": \"868d05be-8c4e-ed88-bde4-000d8aaeb88c\",\n            \"entryNo\": 16524,\n            \"postingDate\": \"2019-01-01\",\n            \"documentNo\": \"\",\n            \"itemNo\": \"ALOJ\",\n            \"itemGroup\": \"HAB\",\n            \"additionalText\": \"\",\n            \"unitPrice\": 500.69,\n            \"tax\": 6.5,\n            \"lineDiscount\": 0,\n            \"totalAmountInclTax\": 500.69,\n            \"totalAmountExclTax\": 457.94,\n            \"roomNo\": \"610\",\n            \"employeeNo\": \"\",\n            \"customerNo\": \"CLCONTADO\",\n            \"bookingNo\": \"4653\",\n            \"guestFolioNo\": \"\",\n            \"guestFolioLineNo\": 417,\n            \"rateNo\": \"\",\n            \"allotmentNo\": \"\",\n            \"bookedRoomType\": \"1D\",\n            \"assignedRoomType\": \"1D\",\n            \"boardBasisType\": \"Self Catering\",\n            \"adults\": 2,\n            \"childrenRateA\": 0,\n            \"childrenRateB\": 0,\n            \"childrenRateC\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"adultsInExtraBed\": 0,\n            \"originatingNo\": \"\",\n            \"countryRegion\": \"\",\n            \"subagency\": \"\",\n            \"bookingCompany\": \"\",\n            \"postedExternalFinancial\": false,\n            \"InvoiceNo\": \"\",\n            \"InvoiceDate\": \"0001-01-01\",\n            \"InvoiceName\": \"\",\n            \"ItemDescription\": \"Migrado Noray Hotel ALOJAMIENTO\",\n            \"TaxIncluded\": true\n        }\n    ]\n}"},{"id":"b76f4ccf-c5a9-4785-9962-1c23853448c5","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/hotelItemEntries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"ceca05a5-ee22-4b35-8d4d-ae6aa8da0573","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/hotelItemEntries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_DataNotFoundFilter\",\n        \"message\": \"The company <name> does not exist.  CorrelationId:  31115690-7eb7-4502-b6d1-f6893e92b29c.\"\n    }\n}"}],"_postman_id":"587b2561-f05f-46fd-beac-150dc88a05f4"},{"name":"additionalServices","id":"61163ecc-1d31-4480-b230-7ab0535a81ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/additionalServices","description":"<p>System table: Additional Service HTL<br />Page in Business Central: Additional Services HTL</p>\n<p>Return the list of the Additional Services</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>serviceNo</td>\n<td>Code[20]</td>\n<td>Specifies the No. of the service.</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>boardBasisType</td>\n<td>Code[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>maxUnits</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>amountType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>unitsAmount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>minStay</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>maxStay</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>hotelItemNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>webLanguage</td>\n<td>Code[2]</td>\n<td></td>\n</tr>\n<tr>\n<td>servAdWeb</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>groupedPrinting</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>groupAllDays</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>paidBy</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","additionalServices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"010fa895-94e4-49e4-8deb-24274be6d8ff","name":"Additional Services","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/additionalServices"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/additionalServices\",\r\n    \"value\": [\r\n        {\r\n            \"systemId\": \"94c765ea-6125-ee11-be55-000d3aaeb76a\",\r\n            \"bookingNo\": \"AGUA\",\r\n            \"startDate\": \"2023-01-17\",\r\n            \"endDate\": \"2023-02-06\",\r\n            \"roomType\": \"\",\r\n            \"boardBasisType\": \"\",\r\n            \"maxUnits\": 0,\r\n            \"amountType\": \"By Stay\",\r\n            \"unitsAmount\": 2,\r\n            \"minStay\": 0,\r\n            \"maxStay\": 0,\r\n            \"hotelItemNo\": \"AGUA\",\r\n            \"description\": \"BOTELLA DE AGUA 2L\",\r\n            \"description2\": \"\",\r\n            \"webLanguage\": \"\",\r\n            \"servAdWeb\": true,\r\n            \"groupedPrinting\": false,\r\n            \"groupAllDays\": false,\r\n            \"paidBy\": \"Customer\"\r\n        },\r\n        {\r\n            \"systemId\": \"95c765ea-6125-ee11-be55-000d3aaeb76a\",\r\n            \"bookingNo\": \"FANTANA\",\r\n            \"startDate\": \"2023-05-20\",\r\n            \"endDate\": \"2023-10-31\",\r\n            \"roomType\": \"\",\r\n            \"boardBasisType\": \"\",\r\n            \"maxUnits\": 0,\r\n            \"amountType\": \"By Stay\",\r\n            \"unitsAmount\": 15,\r\n            \"minStay\": 0,\r\n            \"maxStay\": 0,\r\n            \"hotelItemNo\": \"BEB\",\r\n            \"description\": \"FANTA DE NARANJA\",\r\n            \"description2\": \"\",\r\n            \"webLanguage\": \"\",\r\n            \"servAdWeb\": true,\r\n            \"groupedPrinting\": false,\r\n            \"groupAllDays\": false,\r\n            \"paidBy\": \"Customer\"\r\n        },\r\n        {\r\n            \"systemId\": \"96c765ea-6125-ee11-be55-000d3aaeb76a\",\r\n            \"bookingNo\": \"COLAZERO\",\r\n            \"startDate\": \"2023-04-18\",\r\n            \"endDate\": \"2023-05-14\",\r\n            \"roomType\": \"\",\r\n            \"boardBasisType\": \"\",\r\n            \"maxUnits\": 0,\r\n            \"amountType\": \"By Stay\",\r\n            \"unitsAmount\": 19,\r\n            \"minStay\": 0,\r\n            \"maxStay\": 0,\r\n            \"hotelItemNo\": \"BEB\",\r\n            \"description\": \"COCA COLA ZERO\",\r\n            \"description2\": \"\",\r\n            \"webLanguage\": \"\",\r\n            \"servAdWeb\": true,\r\n            \"groupedPrinting\": false,\r\n            \"groupAllDays\": false,\r\n            \"paidBy\": \"Customer\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"61163ecc-1d31-4480-b230-7ab0535a81ca"},{"name":"hotelRentalItems","id":"75063f68-5ad7-485b-a3ca-e4ee2f61f05b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/hotelRentalItems","description":"<p>System table: Hotel Rental Item HTL<br />Page in Business Central: Hotel Rental Items HTL<br />Return the list of the Hotel Rental Items</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rentalItemNo</td>\n<td>Code[10]</td>\n<td>Specifies the No. of the rental item.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[30]</td>\n<td>Specifies the description of the rental item.</td>\n</tr>\n<tr>\n<td>debitItemNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>depositItemNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>taxIncluded</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>cashNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>defaultDepositAmount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>virtualRoomNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>virtualCustomer</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>cashOperationNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>defaultPaymentMethodNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>associatedReport</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>depositCashOperationNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>returnDepositCashOperNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>defaultPaymentType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>depositCashNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the rental item was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","hotelRentalItems"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"e0e3512e-b93c-4230-9c4b-5310043f5f5e","name":"Hotel Rental Items","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/hotelRentalItems"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/hotelRentalItems\",\r\n    \"value\": [\r\n        \r\n        {\r\n            \"systemId\": \"4fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"PULS\",\r\n            \"description\": \"Pulseras (Fianzas)\",\r\n            \"debitItemNo\": \"VAR\",\r\n            \"depositItemNo\": \"VAR\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 9,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-PULS\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-PULSE\",\r\n            \"returnDepositCashOperNo\": \"DEV.PULS\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\"\r\n        },\r\n        {\r\n            \"systemId\": \"5fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"ALBORNOZ\",\r\n            \"description\": \"ALBORNOZ\",\r\n            \"debitItemNo\": \"TOALLAS\",\r\n            \"depositItemNo\": \"TOALLAS\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 10,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-TOA\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-TOALL\",\r\n            \"returnDepositCashOperNo\": \"DEV-TOAL\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\"\r\n        },\r\n        {\r\n            \"systemId\": \"9fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"SAFE\",\r\n            \"description\": \"Alquiler de caja de seguridad\",\r\n            \"debitItemNo\": \"SAF\",\r\n            \"depositItemNo\": \"SAF\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 5,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-SAFE\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-SAFE\",\r\n            \"returnDepositCashOperNo\": \"DEV.SAFE\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\"\r\n        },\r\n        {\r\n            \"systemId\": \"8fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"SPA\",\r\n            \"description\": \"USO DEL SPA\",\r\n            \"debitItemNo\": \"SPA\",\r\n            \"depositItemNo\": \"SPA\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJARECEP\",\r\n            \"defaultDepositAmount\": 5,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"SPA\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"SPA\",\r\n            \"returnDepositCashOperNo\": \"DEV.SPA\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJARECEP\"\r\n        }\r\n    ]\r\n}"},{"id":"c41ee990-64db-41ed-b694-b3bfb4ae3a8f","name":"Hotel Rental Items","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/hotelRentalItems?$expand=hotelRentalItemPrices","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","booking","v1.0","companies(<companyID>)","hotelRentalItems"],"query":[{"key":"$expand","value":"hotelRentalItemPrices"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/hotelRentalItems\",\r\n    \"value\": [\r\n        \r\n        {\r\n            \"systemId\": \"4fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"PULS\",\r\n            \"description\": \"Pulseras (Fianzas)\",\r\n            \"debitItemNo\": \"VAR\",\r\n            \"depositItemNo\": \"VAR\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 9,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-PULS\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-PULSE\",\r\n            \"returnDepositCashOperNo\": \"DEV.PULS\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\",\r\n            \"hotelRentalItemPrices\": [\r\n                {\r\n                    \"systemId\": \"6fe3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n                    \"rentalitemNo\": \"PULS\",\r\n                    \"timeUnit\": \"Total\",\r\n                    \"unitPrice\": 9\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"systemId\": \"5fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"ALBORNOZ\",\r\n            \"description\": \"ALBORNOZ\",\r\n            \"debitItemNo\": \"TOALLAS\",\r\n            \"depositItemNo\": \"TOALLAS\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 10,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-TOA\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-TOALL\",\r\n            \"returnDepositCashOperNo\": \"DEV-TOAL\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\",\r\n            \"hotelRentalItemPrices\": []\r\n        },\r\n        {\r\n            \"systemId\": \"9fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"SAFE\",\r\n            \"description\": \"Alquiler de caja de seguridad\",\r\n            \"debitItemNo\": \"SAF\",\r\n            \"depositItemNo\": \"SAF\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJAFIANZ\",\r\n            \"defaultDepositAmount\": 5,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"ALQ-SAFE\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"FIA-SAFE\",\r\n            \"returnDepositCashOperNo\": \"DEV.SAFE\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJAFIANZ\",\r\n            \"hotelRentalItemPrices\": [\r\n                {\r\n                    \"systemId\": \"6ge3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n                    \"rentalitemNo\": \"SAFE\",\r\n                    \"timeUnit\": \"Day\",\r\n                    \"unitPrice\": 4\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"systemId\": \"8fd2f8e1-6125-ee11-be55-000d3aaeb76a\",\r\n            \"rentalItemNo\": \"SPA\",\r\n            \"description\": \"USO DEL SPA\",\r\n            \"debitItemNo\": \"SPA\",\r\n            \"depositItemNo\": \"SPA\",\r\n            \"taxIncluded\": true,\r\n            \"cashNo\": \"CAJARECEP\",\r\n            \"defaultDepositAmount\": 5,\r\n            \"virtualRoomNo\": \"999\",\r\n            \"virtualCustomer\": \"DIRECT\",\r\n            \"cashOperationNo\": \"SPA\",\r\n            \"defaultPaymentMethodNo\": \"FIANZAS\",\r\n            \"associatedReport\": 0000000,\r\n            \"depositCashOperationNo\": \"SPA\",\r\n            \"returnDepositCashOperNo\": \"DEV.SPA\",\r\n            \"defaultPaymentType\": \"Guest Charge Account\",\r\n            \"depositCashNo\": \"CAJARECEP\",\r\n            \"hotelRentalItemPrices\": [\r\n                {\r\n                    \"systemId\": \"71e3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n                    \"rentalitemNo\": \"SPA\",\r\n                    \"timeUnit\": \"Day\",\r\n                    \"unitPrice\": 18\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"75063f68-5ad7-485b-a3ca-e4ee2f61f05b"},{"name":"hotelRentalItemPrices","id":"be2957b1-1714-42c5-814d-2eabb2df1fc4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/hotelRentalItemPrices","description":"<p>System table: Hotel Rental Item Price HTL<br />Page in Business Central: Hotel Rental Item Price HTL</p>\n<p>Return the Hotel Rental Item Prices.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rentalitemNo</td>\n<td>Code[10]</td>\n<td>Specifies the No. of the rental item.</td>\n</tr>\n<tr>\n<td>timeUnit</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the rental item price was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","hotelRentalItemPrices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"dc8872fb-e185-41da-8402-416886f28552","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/hotelRentalItemPrices"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/hotelRentalItemPrices\",\r\n    \"value\": [\r\n        {\r\n            \"systemId\": \"6fe3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n            \"rentalitemNo\": \"PULS\",\r\n            \"timeUnit\": \"Total\",\r\n            \"unitPrice\": 9\r\n        },\r\n        {\r\n            \"systemId\": \"6ge3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n            \"rentalitemNo\": \"SAFE\",\r\n            \"timeUnit\": \"Day\",\r\n            \"unitPrice\": 4\r\n        },\r\n        {\r\n            \"systemId\": \"71e3g9f2-7236-ff22-cf66-111e4bbfc87b\",\r\n            \"rentalitemNo\": \"SPA\",\r\n            \"timeUnit\": \"Day\",\r\n            \"unitPrice\": 18\r\n        }\r\n    ]\r\n}"}],"_postman_id":"be2957b1-1714-42c5-814d-2eabb2df1fc4"},{"name":"releases","id":"be368472-79b5-453c-b764-1f0bb5e67647","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/releases","description":"<p>System table: Release HTL<br />Page in Business Central: Booking Value Check HTL**<br />Return the list of the releases.**</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the No. of the Allotment.</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>days</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the Release was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","releases"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"d4febaa4-0671-462d-b809-daeac61766aa","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/releases"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/releases\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE1OTAyNjk4NTAzNjA1NzExMTswMDsn\\\"\",\r\n            \"systemId\": \"33a56fc2-c8b3-ee11-be83-6045bd8f25a4\",\r\n            \"allotmentNo\": \"No.1\",\r\n            \"lineNo\": 1,\r\n            \"startDate\": \"2023-05-01\",\r\n            \"endDate\": \"2023-10-31\",\r\n            \"days\": 14,\r\n            \"description\": \"\",\r\n            \"roomType\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"be368472-79b5-453c-b764-1f0bb5e67647"},{"name":"minimumStays","id":"8de5a91e-15a8-4b05-af64-0030ea7ed364","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/minimumStays","description":"<p>System table: Minimum Stay HTL<br />Page in Business Central: Minimum Stays HTL<br />Return the list of the minimum stays.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>allotmentNo</td>\n<td>Code[10]</td>\n<td>Specifies the No. of the allotment.</td>\n</tr>\n<tr>\n<td>adult</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>baby</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>children</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>boardBasis</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>startingDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>endingDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>intoDate</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>maxNights</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>minNights</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnMonday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnTuesday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnWednesday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnThursday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnFriday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnSaturday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>startOnSunday</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the locked was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","minimumStays"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"8408a429-303b-435f-b80b-ea0e4e294f4c","name":"minimumStays","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/minimumStays"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/minimumStays\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTEyODMxNzIwMjQyMDk1NDMxOzAwOyc=\\\"\",\r\n            \"systemId\": \"fc6a9113-1ad7-ee11-b961-202b201de956\",\r\n            \"adult\": \"\",\r\n            \"allotmentNo\": \"GENERAL\",\r\n            \"baby\": \"\",\r\n            \"boardBasis\": \"MP\",\r\n            \"children\": \"\",\r\n            \"endingDate\": \"2024-03-21\",\r\n            \"intoDate\": false,\r\n            \"maxNights\": 23,\r\n            \"minNights\": 0,\r\n            \"roomType\": \"2Z\",\r\n            \"startOnFriday\": true,\r\n            \"startOnMonday\": true,\r\n            \"startOnSaturday\": true,\r\n            \"startOnSunday\": true,\r\n            \"startOnThursday\": true,\r\n            \"startOnTuesday\": true,\r\n            \"startOnWednesday\": true,\r\n            \"startingDate\": \"2024-01-04\",\r\n            \"systemModifiedAt\": \"2024-02-29T15:49:10.25Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8de5a91e-15a8-4b05-af64-0030ea7ed364"},{"name":"offers","id":"dfd810b0-d7f0-4be8-9a0c-4397bb36c7c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offers","description":"<p>System table: Offer HTL<br />Page in Business Central: Offers HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offers"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"f84f8149-71b1-4f5b-bcde-b00c7d104351","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/offers"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/offers\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE4OzE1NDQyMzM4MTc4NTU4MjYxMTE7MDA7Jw==\\\"\",\r\n            \"systemId\": \"347805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"BA\",\r\n            \"offerNo\": \"HO000024\",\r\n            \"commission\": 0,\r\n            \"discount\": 20,\r\n            \"adults\": 0,\r\n            \"ageMax\": 0,\r\n            \"ageMin\": 0,\r\n            \"applicationMethod\": \"Last days free\",\r\n            \"apply\": \"Auto\",\r\n            \"availableWeb\": false,\r\n            \"babies\": 0,\r\n            \"bookedBoard\": \"\",\r\n            \"byDate\": \"Stay\",\r\n            \"checkOutDeadline\": \"0001-01-01\",\r\n            \"childrenA\": 0,\r\n            \"childrenB\": 0,\r\n            \"description\": \"JANUARY OFFER FOR BRITISH\",\r\n            \"endingDate\": \"2020-04-02\",\r\n            \"evaluateOccupationChildBaby\": false,\r\n            \"freeDays\": 0,\r\n            \"fromBookedDate\": \"2019-12-18\",\r\n            \"fromDays\": 0,\r\n            \"fromDaysInAdvance\": 0,\r\n            \"invoicedBoard\": \"\",\r\n            \"language\": \"\",\r\n            \"maxStay\": 0,\r\n            \"minStay\": 0,\r\n            \"noSeries\": \"HO-OFERTAS\",\r\n            \"offerCombinable\": false,\r\n            \"offerType\": \"Discount\",\r\n            \"onlinePaymentType\": \" \",\r\n            \"order\": 0,\r\n            \"promotional\": \"\",\r\n            \"resident\": \"Both\",\r\n            \"roomTypeBooked\": \"\",\r\n            \"roomTypeInvoiced\": \"\",\r\n            \"startingDate\": \"2020-01-05\",\r\n            \"toBookedDate\": \"2020-01-30\",\r\n            \"toDays\": 0,\r\n            \"untilDaysInAdvance\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDE3ODE5MTgyMjE2NTU2OTMxOzAwOyc=\\\"\",\r\n            \"systemId\": \"387805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"GOLFS20\",\r\n            \"offerNo\": \"HO000038\",\r\n            \"commission\": 0,\r\n            \"discount\": 5,\r\n            \"adults\": 0,\r\n            \"ageMax\": 0,\r\n            \"ageMin\": 0,\r\n            \"applicationMethod\": \"Last days free\",\r\n            \"apply\": \"Auto\",\r\n            \"availableWeb\": false,\r\n            \"babies\": 0,\r\n            \"bookedBoard\": \"\",\r\n            \"byDate\": \"Stay\",\r\n            \"checkOutDeadline\": \"0001-01-01\",\r\n            \"childrenA\": 0,\r\n            \"childrenB\": 0,\r\n            \"description\": \"SPRING OFFER GOLF SUMMER \",\r\n            \"endingDate\": \"2020-07-12\",\r\n            \"evaluateOccupationChildBaby\": false,\r\n            \"freeDays\": 0,\r\n            \"fromBookedDate\": \"2020-02-13\",\r\n            \"fromDays\": 0,\r\n            \"fromDaysInAdvance\": 0,\r\n            \"invoicedBoard\": \"\",\r\n            \"language\": \"\",\r\n            \"maxStay\": 0,\r\n            \"minStay\": 0,\r\n            \"noSeries\": \"HO-OFERTAS\",\r\n            \"offerCombinable\": true,\r\n            \"offerType\": \"Discount\",\r\n            \"onlinePaymentType\": \" \",\r\n            \"order\": 0,\r\n            \"promotional\": \"\",\r\n            \"resident\": \"Both\",\r\n            \"roomTypeBooked\": \"\",\r\n            \"roomTypeInvoiced\": \"\",\r\n            \"startingDate\": \"2020-05-01\",\r\n            \"toBookedDate\": \"2020-02-29\",\r\n            \"toDays\": 0,\r\n            \"untilDaysInAdvance\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzgwOTMxOTE0NTk3Mjg4ODcxOzAwOyc=\\\"\",\r\n            \"systemId\": \"3d7805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"TO W2021\",\r\n            \"offerNo\": \"HO000026\",\r\n            \"commission\": 0,\r\n            \"discount\": 20,\r\n            \"adults\": 0,\r\n            \"ageMax\": 0,\r\n            \"ageMin\": 0,\r\n            \"applicationMethod\": \"Last days free\",\r\n            \"apply\": \"Auto\",\r\n            \"availableWeb\": false,\r\n            \"babies\": 0,\r\n            \"bookedBoard\": \"\",\r\n            \"byDate\": \"Arrival\",\r\n            \"checkOutDeadline\": \"0001-01-01\",\r\n            \"childrenA\": 0,\r\n            \"childrenB\": 0,\r\n            \"description\": \"EBD 20% TILL 120 DAYS BEFORE ARR\",\r\n            \"endingDate\": \"2021-04-30\",\r\n            \"evaluateOccupationChildBaby\": false,\r\n            \"freeDays\": 0,\r\n            \"fromBookedDate\": \"0001-01-01\",\r\n            \"fromDays\": 0,\r\n            \"fromDaysInAdvance\": 120,\r\n            \"invoicedBoard\": \"\",\r\n            \"language\": \"\",\r\n            \"maxStay\": 0,\r\n            \"minStay\": 0,\r\n            \"noSeries\": \"HO-OFERTAS\",\r\n            \"offerCombinable\": false,\r\n            \"offerType\": \"Discount\",\r\n            \"onlinePaymentType\": \" \",\r\n            \"order\": 0,\r\n            \"promotional\": \"\",\r\n            \"resident\": \"Both\",\r\n            \"roomTypeBooked\": \"\",\r\n            \"roomTypeInvoiced\": \"\",\r\n            \"startingDate\": \"2020-11-01\",\r\n            \"toBookedDate\": \"0001-01-01\",\r\n            \"toDays\": 0,\r\n            \"untilDaysInAdvance\": 9999,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"dfd810b0-d7f0-4be8-9a0c-4397bb36c7c1"},{"name":"bookingValueOffers","id":"b9ee532d-3e00-4be7-ac58-1359abdf834b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingValueOffers","description":"<p>System table: Booking Value Offer HTL<br />Page in Business Central: Booking Value Offer HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingValueOffers"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"2011252a-24a4-4932-b433-40010dc75b55","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookingValueOffers"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookingValueOffers\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ2ODg2NjAyMDUxMjgwMjMxMTswMDsn\\\"\",\n            \"systemId\": \"8ab4dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"bookingNo\": \"001\",\n            \"postingDate\": \"2025-02-14\",\n            \"offerNo\": \"HO000026\",\n            \"amount\": 55.2,\n            \"baseAmount\": 0,\n            \"combined\": false,\n            \"commissionLine\": false,\n            \"description\": \"EBD 20% TILL 60 DAYS BEFORE ARR\",\n            \"hotelItemNo\": \"ALOJ-TO\",\n            \"noDays\": 1,\n            \"order\": 0,\n            \"totalAmount\": 55.2,\n            \"valueLineNo\": 10000,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDMzODIzMDg1OTMzOTc2NDYzMTswMDsn\\\"\",\n            \"systemId\": \"8bb4dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"bookingNo\": \"002\",\n            \"postingDate\": \"2025-02-14\",\n            \"offerNo\": \"HO000026\",\n            \"amount\": 11.2,\n            \"baseAmount\": 0,\n            \"combined\": false,\n            \"commissionLine\": false,\n            \"description\": \"EBD 20% TILL 50 DAYS BEFORE ARR\",\n            \"hotelItemNo\": \"RAD\",\n            \"noDays\": 1,\n            \"order\": 0,\n            \"totalAmount\": 11.2,\n            \"valueLineNo\": 20000,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjI0NzkzMDczMTk1NTU4NzI2MTswMDsn\\\"\",\n            \"systemId\": \"8cb4dec3-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"bookingNo\": \"003\",\n            \"postingDate\": \"2025-02-15\",\n            \"offerNo\": \"HO000026\",\n            \"amount\": 55.2,\n            \"baseAmount\": 0,\n            \"combined\": false,\n            \"commissionLine\": false,\n            \"description\": \"EBD 20% TILL 40 DAYS BEFORE ARR\",\n            \"hotelItemNo\": \"ALOJ-TO\",\n            \"noDays\": 1,\n            \"order\": 0,\n            \"totalAmount\": 55.2,\n            \"valueLineNo\": 30000,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"b9ee532d-3e00-4be7-ac58-1359abdf834b"},{"name":"bookingOffers","id":"fb272932-b073-4c17-8aab-5b40f7fe15dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingOffers","description":"<p>System table: Booking Offer HTL<br />Page in Business Central: Booking Offer HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingOffers"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"1bbd5e31-373a-4617-bb08-d73b995b46fa","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/bookingOffers"},"_postman_previewlanguage":"","header":[{}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookingOffers\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQzOTgxNTg1ODEzNzkyMzc5MTswMDsn\\\"\",\r\n            \"systemId\": \"b4c7dec3-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"bookingNo\": \"10136\",\r\n            \"offerNo\": \"HO000029\",\r\n            \"offerType\": \"Auto\",\r\n            \"order\": 0,\r\n            \"offerDescription\": \"EBD 10% FROM 60 TILL 30 DAYS BEFORE ARR\",\r\n            \"postingDate\": \"0001-01-01\",\r\n            \"rateNo\": \"TO W2021\",\r\n            \"combined\": false,\r\n            \"bookingOfferType\": \"Discount\",\r\n            \"bookingStatus\": \"Cancelled\",\r\n            \"discount\": 10,\r\n            \"commission\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTM4MDYwODY0NjAzOTQ2MjAxOzAwOyc=\\\"\",\r\n            \"systemId\": \"b5c7dec3-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"bookingNo\": \"10373\",\r\n            \"offerNo\": \"HO000026\",\r\n            \"offerType\": \"Auto\",\r\n            \"order\": 0,\r\n            \"offerDescription\": \"EBD 20% TILL 40 DAYS BEFORE ARR\",\r\n            \"postingDate\": \"0001-01-01\",\r\n            \"rateNo\": \"TO W2021\",\r\n            \"combined\": false,\r\n            \"bookingOfferType\": \"Discount\",\r\n            \"bookingStatus\": \"Cancelled\",\r\n            \"discount\": 20,\r\n            \"commission\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNDUzODk3NTM5Nzk4MTIxNDcxOzAwOyc=\\\"\",\r\n            \"systemId\": \"bcc7dec3-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"bookingNo\": \"10960\",\r\n            \"offerNo\": \"HO000042\",\r\n            \"offerType\": \"Auto\",\r\n            \"order\": 0,\r\n            \"offerDescription\": \"1º EBD 20% TILL 04/09/25\",\r\n            \"postingDate\": \"0001-01-01\",\r\n            \"rateNo\": \"TTOO\",\r\n            \"combined\": false,\r\n            \"bookingOfferType\": \"Discount\",\r\n            \"bookingStatus\": \"Cancelled\",\r\n            \"discount\": 20,\r\n            \"commission\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"fb272932-b073-4c17-8aab-5b40f7fe15dc"},{"name":"offersCombinable","id":"cadc2b7f-2fb8-4549-85d4-23900ae08753","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offersCombinable","description":"<p>System table: Offer Combinable HTL<br />Page in Business Central: Offer Combinable HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offersCombinable"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b4d334ce-b1fd-4188-99fe-958c627f0165","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/offersCombinable"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/offersCombinable\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjE0OTc2MjA0NTY1MzMwMDQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"e88e83c1-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"TOS20\",\r\n            \"offerNo\": \"HO000002\",\r\n            \"description\": \"JANUARY OFFER\",\r\n            \"offerCombinable\": \"HO000020\",\r\n            \"order\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTg2MzU3NTYzNjA0MzAwOTQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"ef8e83c1-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"TOS20\",\r\n            \"offerNo\": \"HO000021\",\r\n            \"description\": \"1ºEBD 20%\",\r\n            \"offerCombinable\": \"HO000002\",\r\n            \"order\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg2MzEwMjkxNzQ4ODQ2MDkyMTswMDsn\\\"\",\r\n            \"systemId\": \"f18e83c1-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"rateNo\": \"TOS20\",\r\n            \"offerNo\": \"HO000034\",\r\n            \"description\": \"1ºEBD 20%\",\r\n            \"offerCombinable\": \"HO000002\",\r\n            \"order\": 0,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"cadc2b7f-2fb8-4549-85d4-23900ae08753"},{"name":"offersDisponibility","id":"1849690e-3d35-4187-8c7b-81743c140a7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offersDisponibility","description":"<p>System table: Offer Disponibility HTL<br />Page in Business Central: Offer Disponibility HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offersDisponibility"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b3166000-c125-485b-bb77-292435cd1ecf","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/offersDisponibility"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/offersDisponibility\",\r\n    \r\n}"}],"_postman_id":"1849690e-3d35-4187-8c7b-81743c140a7a"},{"name":"offersLanguageText","id":"5b087a0a-f9d5-49ee-88a8-351d4da33ab8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offersLanguageText","description":"<p>System table: Offer By Language Text HTL<br />Page in Business Central: Offer By Language Text HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offersLanguageText"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"c9291838-72a0-4bbd-ab6c-5a0700644341","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/booking/v1.0/companies(<companyID>)/offersLanguageText"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/offersLanguageText\",\r\n    \r\n}"}],"_postman_id":"5b087a0a-f9d5-49ee-88a8-351d4da33ab8"},{"name":"bookingsAddServices","id":"70b43c46-08c9-42bf-b519-1811af82eaa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingsAddServices","description":"<p>System table: Booking Additional Serv. HTL<br />Page in Business Central: Booking Additional Serv. HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingsAddServices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"ce012fba-c6c6-4b5e-b128-f4d114cbb937","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingsAddServices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/bookingsAddServices\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDc5OTg0OTkzMjI4NzgyNDExOzAwOyc=\\\"\",\n            \"systemId\": \"e23900f1-1fa1-ef11-bec6-6045bd8f25a4\",\n            \"discount\": 0,\n            \"tax\": 7,\n            \"accountGroup\": 1,\n            \"accountNo\": \"\",\n            \"bookingNo\": \"2156\",\n            \"chargedUnits\": 0,\n            \"conceptType\": \"Others\",\n            \"description\": \"\",\n            \"endService\": \"2020-12-26\",\n            \"hotelItemNo\": \"\",\n            \"lastCharge\": \"0001-01-01\",\n            \"lineNo\": 10000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"WELCOME PACK SMALL\",\n            \"startService\": \"2020-12-13\",\n            \"totalAmount\": 13.5,\n            \"unitAmount\": 13.5,\n            \"units\": 1,\n            \"systemCreatedAt\": \"0001-01-01T00:00:00Z\",\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\n            \"secretCode\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NjY0MjA1NTAzOTU1Mjk4MTgxOzAwOyc=\\\"\",\n            \"systemId\": \"e33900f1-1fa1-ef11-bec6-6045bd8f25a4\",\n            \"discount\": 0,\n            \"tax\": 7,\n            \"accountGroup\": 1,\n            \"accountNo\": \"\",\n            \"bookingNo\": \"2343\",\n            \"chargedUnits\": 0,\n            \"conceptType\": \"Others\",\n            \"description\": \"\",\n            \"endService\": \"2021-03-13\",\n            \"hotelItemNo\": \"\",\n            \"lastCharge\": \"0001-01-01\",\n            \"lineNo\": 10000,\n            \"paidBy\": \"Customer\",\n            \"serviceNo\": \"WP LARGE 1 WK\",\n            \"startService\": \"2021-03-07\",\n            \"totalAmount\": 70.16,\n            \"unitAmount\": 70.16,\n            \"units\": 1,\n            \"systemCreatedAt\": \"0001-01-01T00:00:00Z\",\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\n            \"secretCode\": \"\"\n        }\n    ]\n}"}],"_postman_id":"70b43c46-08c9-42bf-b519-1811af82eaa4"},{"name":"bookingsAddServices","id":"60a27863-bbef-410d-a29c-e873853de722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"discount\": 0,\r\n    \"accountNo\": \"AccountNo\",\r\n    \"bookingNo\": \"BookingNo\",\r\n    \"endService\": \"2024-08-15\",\r\n    \"lineNo\": 10000,\r\n    \"paidBy\": \"Guest\",\r\n    \"serviceNo\": \"ALL INCLUSIVE\",\r\n    \"secretCode\": \"Secret Code\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingsAddServices","description":"<p>Insert Additional Services obtained in the endpoint Get additionalServices in the booking.</p>\n<p>discount: decimal value that will be used as the percentage of the discount.</p>\n<p>accountNo: obtained with get guestFolioHeaders that its booking no is the booking no you want to use in the bookingNo value.</p>\n<p>bookingNo: obtained with get bookings and will be the No value.<br />paidBy: this field values are Customer or Guest<br />serviceNo: obtained with get additionalServices and it will be de serviceNo value.</p>\n<p><strong>The secret code restriction will be removed in the next release as it will no longer be needed and will be added here.</strong></p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingsAddServices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"bb8f7d27-be72-4f05-9ef1-9e4c630c8004","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"discount\": 0,\r\n    \"accountNo\": \"AccountNo\",\r\n    \"bookingNo\": \"BookingNo\",\r\n    \"endService\": \"2024-08-15\",\r\n    \"lineNo\": 10000,\r\n    \"paidBy\": \"Guest\",\r\n    \"serviceNo\": \"ALL INCLUSIVE\",\r\n    \"secretCode\": \"Secret Code\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingsAddServices"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<api publisher>/<api group>/<api version>/$metadata#Edm.String\",\n    \"@odata.etag\": \"W/\\\"JzE5Ozc5ODM1ODAyOTA5MDAzMzAyNTkxOzAwOyc=\\\"\",\n    \"systemId\": \"19f0d189-9b4a-f011-ba69-202b201de956\",\n    \"discount\": 0,\n    \"tax\": 7,\n    \"accountGroup\": 1,\n    \"accountNo\": \"AccountNo\",\n    \"bookingNo\": \"BookingNo\",\n    \"chargedUnits\": 0,\n    \"conceptType\": \"Others\",\n    \"description\": \"ALL INCLUSIVE\",\n    \"endService\": \"2024-08-15\",\n    \"hotelItemNo\": \"BFF DES\",\n    \"lastCharge\": \"0001-01-01\",\n    \"lineNo\": 10000,\n    \"paidBy\": \"Guest\",\n    \"serviceNo\": \"ALL INCLUSIVE\",\n    \"startService\": \"2024-12-03\",\n    \"totalAmount\": -4817.8,\n    \"unitAmount\": 55,\n    \"units\": 1,\n    \"systemCreatedAt\": \"2025-06-16T10:20:35.38Z\",\n    \"lastModifiedDateTime\": \"2025-06-16T10:20:35.38Z\",\n    \"secretCode\": \"\"\n}"}],"_postman_id":"60a27863-bbef-410d-a29c-e873853de722"},{"name":"bookingPendings","id":"af538547-a579-40f6-a399-07095f71ee83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingPendings({{bookingId}})","description":"<p>This endpoint is valid for finding out the balance of a rating. To show the actual pending amount, use the “pending” field, but if you want to show the actual pending amount that the guest has to pay, use the “_isPaidByGuest_” field.</p>\n","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","bookingPendings({{bookingId}})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"8422bde9-6de1-4c11-bc36-5f031e31239f","name":"bookingPendings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/bookingPendings({{bookingId}})"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/NorayHTLSandbox/api/noray/booking/v1.0/$metadata#companies(af9287a9-c938-ed11-97e8-000d3a398287)/bookingPendingsHotfix/$entity\",\n    \"@odata.etag\": \"W/\\\"JzIwOzEyMDg1NzM0MjMzMzM0ODczNTk4MTswMDsn\\\"\",\n    \"systemId\": \"f9379edc-789f-f011-b41a-7ced8d2bdafb\",\n    \"no\": \"RH0000577\",\n    \"bookingValuation\": 100,\n    \"totalDeposits\": 0,\n    \"pending\": 100,\n    \"isPaidByGuest\": true,\n    \"guestVisiblePending\": 100\n}"}],"_postman_id":"af538547-a579-40f6-a399-07095f71ee83"},{"name":"offers","id":"c80d1350-0152-41a3-9187-b4c2d16923a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"rateNo\": \"RateNo\",\r\n  \"offerNo\": \"OfferNo\",\r\n  \"noSeries\": \"NoSeries\",\r\n  \"description\": \"Description\",\r\n  \"startingDate\": \"StartingDate\",\r\n  \"endingDate\": \"EndingDate\",\r\n\r\n  \"byDate\": \"ByDate\",\r\n  \"apply\": \"Apply\",\r\n  \"offerType\": \"OfferType\",\r\n  \"applicationMethod\": \"ApplicationMethod\",\r\n\r\n  \"bookedBoard\": \"BookedBoard\",\r\n  \"invoicedBoard\": \"InvoicedBoard\",\r\n  \"roomTypeBooked\": \"RoomTypeBooked\",\r\n  \"roomTypeInvoiced\": \"RoomTypeInvoiced\",\r\n\r\n  \"fromBookedDate\": \"FromBookedDate\",\r\n  \"toBookedDate\": \"ToBookedDate\",\r\n  \"fromDays\": \"FromDays\",\r\n  \"toDays\": \"ToDays\",\r\n  \"freeDays\": \"FreeDays\",\r\n  \"discount\": \"Discount\",\r\n  \"commission\": \"Commission\",\r\n\r\n  \"minStay\": \"MinStay\",\r\n  \"maxStay\": \"MaxStay\",\r\n  \"checkOutDeadline\": \"CheckOutDeadline\",\r\n\r\n  \"fromDaysInAdvance\": \"FromDaysInAdvance\",\r\n  \"untilDaysInAdvance\": \"UntilDaysInAdvance\",\r\n\r\n  \"language\": \"Language\",\r\n  \"order\": \"Order\",\r\n  \"promotional\": \"Promotional\",\r\n\r\n  \"resident\": \"Resident\",\r\n  \"adults\": \"Adults\",\r\n  \"childrenA\": \"ChildrenA\",\r\n  \"childrenB\": \"ChildrenB\",\r\n  \"babies\": \"Babies\",\r\n\r\n  \"availableWeb\": \"AvailableWeb\",\r\n  \"onlinePaymentType\": \"OnlinePaymentType\",\r\n  \"evaluateOccupationChildBaby\": \"EvaluateOccupationChildBaby\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offers","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offers"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"d6176ad9-f470-486c-b11e-f9d8c3b85770","name":"offers","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkhTMjNiN0RvN1RjYVUxUm9MSHdwSXEyNFZZZyIsImtpZCI6IkhTMjNiN0RvN1RjYVUxUm9MSHdwSXEyNFZZZyJ9.eyJhdWQiOiJodHRwczovL2FwaS5idXNpbmVzc2NlbnRyYWwuZHluYW1pY3MuY29tIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvOGFkYzNlZTYtYjk2NC00NGNhLWJiOTQtYzkzOWZkMjcyYzU2LyIsImlhdCI6MTc1OTkwNjE5MCwibmJmIjoxNzU5OTA2MTkwLCJleHAiOjE3NTk5MTAwOTAsImFpbyI6ImsySmdZSWhZY1BRNjQxclI1Ni9qdHJwOGxuY1RBd0E9IiwiYXBwaWQiOiJlNjdiN2FmNy1jZGI3LTQ0Y2ItYjBlNi1iOGM4ODRiZmQyMjAiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC84YWRjM2VlNi1iOTY0LTQ0Y2EtYmI5NC1jOTM5ZmQyNzJjNTYvIiwiaWR0eXAiOiJhcHAiLCJvaWQiOiIyMzlhN2JmMS03MTNiLTQ1OGQtYmY3MS01NGYxMDRmYzJmY2UiLCJyaCI6IjEuQVFzQTVqN2NpbVM1eWtTN2xNazVfU2NzVmozdmJabHNzMU5CaGdlbV9Ud0J1Si1FQUFBTEFBLiIsInJvbGVzIjpbIkFQSS5SZWFkV3JpdGUuQWxsIl0sInN1YiI6IjIzOWE3YmYxLTcxM2ItNDU4ZC1iZjcxLTU0ZjEwNGZjMmZjZSIsInRpZCI6IjhhZGMzZWU2LWI5NjQtNDRjYS1iYjk0LWM5MzlmZDI3MmM1NiIsInV0aSI6IjhTUWlJMThwUzB1VDBFZnNfdFlsQUEiLCJ2ZXIiOiIxLjAiLCJ4bXNfZnRkIjoiUXJUWThOQnhXUFlnT1ZxelBHTm1WVWtwRXdzRWtocDgtc21FYW92NjlGa0JaWFZ5YjNCbGJtOXlkR2d0WkhOdGN3IiwieG1zX2lkcmVsIjoiOCA3IiwieG1zX3JkIjoiMC40MkxsWUJKaTVCWVM0V0FYRW5qUTNfVl94NExqUG5zbkYzdzdmbzJ0RkNqS0tTU3dLRU5wUS12RU0wN2RIUzc3dkdZSmJnV0tjZ2dKMkw3UG5abXpPZGl4algzWlh4dkdIZk1CIn0.dVDEtf09qxBSZTK0BXxo1AaniRN8FQIquswjtjSXPeX9faHkgQb_4Zftx8-d969bnrRSO9iZsFnVzCsB2ebhkbidzLRCbP_4597JZRioFGZYgtniIbmlSxJAOtALlkvyepnEhJ5YeBpyVC5QrW5UvWS79QL8XopTJfuXwE4Qy7CwubibCywNZeUr_XRVWJH5zvn3EPh7k76y8yAdREnmAxaYZuwWa2KjcgrPC3Zq2O3f6TrHL0b8heCcvzWy1hWZmIm5DKb6Y-Ukc1tU5nuz-n1ER4uWsafg-Nc06XMiylDzfBsvu14jsAsIKcoxUYN-PGYtzOWL4iZwAM68Z3Nw7Q","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"JET2HOLIDAYS\",\r\n    \"offerNo\": \"HO0000055\",\r\n    \"description\": \"Test Api\",\r\n    \"startingDate\": \"2022-08-21\",\r\n    \"endingDate\": \"2022-08-25\",\r\n    \"fromBookedDate\": \"2022-08-13\",\r\n    \"toBookedDate\": \"2022-08-25\",\r\n    \"bookedBoard\": \"HD\",\r\n    \"invoicedBoard\": \"HD\",\r\n    \"roomTypeBooked\": \"SUITE\",\r\n    \"roomTypeInvoiced\": \"SUITE\",\r\n    \"byDate\": \"Arrival\",\r\n    \"apply\": \"Automatically\",\r\n    \"offerType\": \"Discount\",\r\n    \"availableWeb\": \"true\",\r\n    \"discount\": 15\r\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offers"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"c80d1350-0152-41a3-9187-b4c2d16923a6"},{"name":"offerFilters","id":"d6586470-97b6-4b92-b907-2063a13cb6b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"rateNo\": \"WEB\",\r\n  \"offerNo\": \"HO00000577\",\r\n  \"sourceFilter\": \"CUST001|CUST002|CUST003|GROUP001|GROUP002|ALLOTMENT001|ALLOTMENT002\",\r\n  \"applyTo\": \"Customer|Group|Allotment\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/offerFilters","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","offerFilters"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"69c614bd-1555-494f-b32e-81feba7e7f44","name":"New Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IkhTMjNiN0RvN1RjYVUxUm9MSHdwSXEyNFZZZyIsImtpZCI6IkhTMjNiN0RvN1RjYVUxUm9MSHdwSXEyNFZZZyJ9.eyJhdWQiOiJodHRwczovL2FwaS5idXNpbmVzc2NlbnRyYWwuZHluYW1pY3MuY29tIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvOGFkYzNlZTYtYjk2NC00NGNhLWJiOTQtYzkzOWZkMjcyYzU2LyIsImlhdCI6MTc1OTkwNjE5MCwibmJmIjoxNzU5OTA2MTkwLCJleHAiOjE3NTk5MTAwOTAsImFpbyI6ImsySmdZSWhZY1BRNjQxclI1Ni9qdHJwOGxuY1RBd0E9IiwiYXBwaWQiOiJlNjdiN2FmNy1jZGI3LTQ0Y2ItYjBlNi1iOGM4ODRiZmQyMjAiLCJhcHBpZGFjciI6IjEiLCJpZHAiOiJodHRwczovL3N0cy53aW5kb3dzLm5ldC84YWRjM2VlNi1iOTY0LTQ0Y2EtYmI5NC1jOTM5ZmQyNzJjNTYvIiwiaWR0eXAiOiJhcHAiLCJvaWQiOiIyMzlhN2JmMS03MTNiLTQ1OGQtYmY3MS01NGYxMDRmYzJmY2UiLCJyaCI6IjEuQVFzQTVqN2NpbVM1eWtTN2xNazVfU2NzVmozdmJabHNzMU5CaGdlbV9Ud0J1Si1FQUFBTEFBLiIsInJvbGVzIjpbIkFQSS5SZWFkV3JpdGUuQWxsIl0sInN1YiI6IjIzOWE3YmYxLTcxM2ItNDU4ZC1iZjcxLTU0ZjEwNGZjMmZjZSIsInRpZCI6IjhhZGMzZWU2LWI5NjQtNDRjYS1iYjk0LWM5MzlmZDI3MmM1NiIsInV0aSI6IjhTUWlJMThwUzB1VDBFZnNfdFlsQUEiLCJ2ZXIiOiIxLjAiLCJ4bXNfZnRkIjoiUXJUWThOQnhXUFlnT1ZxelBHTm1WVWtwRXdzRWtocDgtc21FYW92NjlGa0JaWFZ5YjNCbGJtOXlkR2d0WkhOdGN3IiwieG1zX2lkcmVsIjoiOCA3IiwieG1zX3JkIjoiMC40MkxsWUJKaTVCWVM0V0FYRW5qUTNfVl94NExqUG5zbkYzdzdmbzJ0RkNqS0tTU3dLRU5wUS12RU0wN2RIUzc3dkdZSmJnV0tjZ2dKMkw3UG5abXpPZGl4algzWlh4dkdIZk1CIn0.dVDEtf09qxBSZTK0BXxo1AaniRN8FQIquswjtjSXPeX9faHkgQb_4Zftx8-d969bnrRSO9iZsFnVzCsB2ebhkbidzLRCbP_4597JZRioFGZYgtniIbmlSxJAOtALlkvyepnEhJ5YeBpyVC5QrW5UvWS79QL8XopTJfuXwE4Qy7CwubibCywNZeUr_XRVWJH5zvn3EPh7k76y8yAdREnmAxaYZuwWa2KjcgrPC3Zq2O3f6TrHL0b8heCcvzWy1hWZmIm5DKb6Y-Ukc1tU5nuz-n1ER4uWsafg-Nc06XMiylDzfBsvu14jsAsIKcoxUYN-PGYtzOWL4iZwAM68Z3Nw7Q","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"rateNo\": \"WEB\", \r\n  \"offerNo\": \"HO00000555\",\r\n  \"sourceFilter\": \"JET2HOLIDAYS\",\r\n  \"applyTo\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/NorayHTLSandbox/api/noray/booking/v1.0/companies({companyId})/offerFilters"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"d6586470-97b6-4b92-b907-2063a13cb6b9"},{"name":"commentLine","id":"c06fc041-a60e-4d8a-8d6a-28fa06a1cdc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/comments","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","comments"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"f8c952a7-8864-4a44-95ef-bb5eb1d9ac87","name":"commentLine","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/comments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"bbafd538-c208-71ad-b801-0c357622d54f"},{"key":"mise-correlation-id","value":"a82a2d6b-893d-4023-8e6e-909292a785e7"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"e817150e-9459-4715-9289-1cf1ac6a2b2a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 21 Jan 2026 07:15:58 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/booking/v1.0/$metadata#companies(af9287a9-c938-ed11-97e8-000d3a398287)/comments\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcwOTkzODI3MDcxNDcwNzI2MzE7MDA7Jw==\\\"\",\n            \"systemId\": \"fddeef9c-f177-ee11-817a-6045bd896f02\",\n            \"documentType\": \"Booking\",\n            \"no\": \"CO0000082\",\n            \"lineNo\": 10000,\n            \"commentLineDate\": \"2023-10-31\",\n            \"commentLineNo\": \"\",\n            \"comment\": \"cliente VIP\",\n            \"orderNo\": 0,\n            \"alarmType\": \"_x0020_\",\n            \"recordID\": \"\",\n            \"commentTime\": \"13:30:10.897\",\n            \"fromDate\": \"0001-01-01\",\n            \"toDate\": \"0001-01-01\",\n            \"department\": \"\",\n            \"employeeNo\": \"\",\n            \"employeeName\": \"\",\n            \"place\": \"\",\n            \"commentAction\": \"\",\n            \"statusAction\": \"Open\",\n            \"targetDepartment\": \"\",\n            \"notificationSent\": false,\n            \"userID\": \"SOPORTE\",\n            \"systemCreatedAt\": \"2023-10-31T13:30:10.903Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemModifiedAt\": \"2023-10-31T13:30:10.903Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkwNDgzNjQ5MzQ0NDg4NzQ3MTswMDsn\\\"\",\n            \"systemId\": \"2bb1c2cf-eece-ed11-a7c9-002248869243\",\n            \"documentType\": \"Booking\",\n            \"no\": \"RH0000007\",\n            \"lineNo\": 10000,\n            \"commentLineDate\": \"2023-03-14\",\n            \"commentLineNo\": \"\",\n            \"comment\": \"Prueba Comentarios Reserva\",\n            \"orderNo\": 0,\n            \"alarmType\": \"_x0020_\",\n            \"recordID\": \"\",\n            \"commentTime\": \"12:34:21.263\",\n            \"fromDate\": \"0001-01-01\",\n            \"toDate\": \"0001-01-01\",\n            \"department\": \"\",\n            \"employeeNo\": \"\",\n            \"employeeName\": \"\",\n            \"place\": \"\",\n            \"commentAction\": \"\",\n            \"statusAction\": \"Open\",\n            \"targetDepartment\": \"\",\n            \"notificationSent\": false,\n            \"userID\": \"SOPORTE\",\n            \"systemCreatedAt\": \"2023-03-30T11:34:21.263Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemModifiedAt\": \"2023-03-31T10:39:25.01Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODk5NTQ1NDQ3MTQyODM5NzMxOzAwOyc=\\\"\",\n            \"systemId\": \"81685c1d-67df-ed11-a7c7-00224888bc9c\",\n            \"documentType\": \"Booking\",\n            \"no\": \"RH0000013\",\n            \"lineNo\": 10000,\n            \"commentLineDate\": \"2023-04-20\",\n            \"commentLineNo\": \"\",\n            \"comment\": \"Comentario prueba\",\n            \"orderNo\": 0,\n            \"alarmType\": \"_x0020_\",\n            \"recordID\": \"\",\n            \"commentTime\": \"11:35:49.563\",\n            \"fromDate\": \"0001-01-01\",\n            \"toDate\": \"0001-01-01\",\n            \"department\": \"\",\n            \"employeeNo\": \"\",\n            \"employeeName\": \"\",\n            \"place\": \"\",\n            \"commentAction\": \"\",\n            \"statusAction\": \"Open\",\n            \"targetDepartment\": \"\",\n            \"notificationSent\": false,\n            \"userID\": \"SOPORTE\",\n            \"systemCreatedAt\": \"2023-04-20T10:35:49.57Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemModifiedAt\": \"2023-04-20T10:35:49.57Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\n        }\n    ]\n}"}],"_postman_id":"c06fc041-a60e-4d8a-8d6a-28fa06a1cdc3"},{"name":"UnsynchronizedBooking","id":"eca5bd48-351e-4e96-b995-282cebd6d214","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/unsynchronizedBookings","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","booking","v1.0","companies({companyId})","unsynchronizedBookings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"66a3c1a5-d4cb-413a-ba15-f07c1ea0e7f8","name":"UnsynchronizedBooking","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/booking/v1.0/companies({companyId})/unsynchronizedBookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"4802001f-c96b-70e0-bef0-435691dd1dc7"},{"key":"mise-correlation-id","value":"f762b60c-93d2-4bb0-995c-2852ca8f6fee"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"b2c08d10-dcf2-46f5-b808-a83cf1f8951b"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:15:26 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/booking/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/unsynchronizedBookings\",\n    \"value\": []\n}"}],"_postman_id":"eca5bd48-351e-4e96-b995-282cebd6d214"}],"id":"56882480-aece-4fde-8744-9ace5ec88c68","_postman_id":"56882480-aece-4fde-8744-9ace5ec88c68","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"foodNBeverages","item":[{"name":"bomHotelHeaders","id":"ad833550-87bc-45d2-8658-bbbd0511e993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/foodNBeverages/v1.0/companies(< company ID >)/bomHotelHeaders","description":"<p>System table: BOM Hotel Header HTL<br />Page in Business Central: BOM Hotel Header HTL</p>\n","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","foodNBeverages","v1.0","companies(< company ID >)","bomHotelHeaders"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad833550-87bc-45d2-8658-bbbd0511e993"},{"name":"bomHotelLines","id":"d5982ae7-02fc-4e3b-873c-7f0a2603c495","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/foodNBeverages/v1.0/companies(< company ID >)/bomHotelLines","description":"<p>System table: BOM Hotel Line HTL<br />Page in Business Central: BOM Hotel Line HTL</p>\n","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","foodNBeverages","v1.0","companies(< company ID >)","bomHotelLines"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d5982ae7-02fc-4e3b-873c-7f0a2603c495"}],"id":"b30fcbff-c7f5-4af7-878c-3faa6b9ffd4a","_postman_id":"b30fcbff-c7f5-4af7-878c-3faa6b9ffd4a","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"hotelItem","item":[{"name":"hotelItems","id":"868340b3-763b-4c4b-b743-ac495901c609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotelItem/v1.0/companies(< company ID >)/hotelItems","description":"<p>System table: Boards Basis HTL<br />Page in Business Central: Boards Basis HTL</p>\n<p>Returns the list of hotel items.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>No</td>\n<td>Integer</td>\n<td>Specifies the concept code.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Text[50]</td>\n<td>Specifies the concept description.</td>\n</tr>\n<tr>\n<td>VATProdPostingGroup</td>\n<td>Code[20]</td>\n<td>Specifies a product VAT registration group.</td>\n</tr>\n<tr>\n<td>GlobalDimension1No</td>\n<td>Code[20]</td>\n<td>Specifies the code of the dimension value linked to the entries.</td>\n</tr>\n<tr>\n<td>GlobalDimension2No</td>\n<td>Code[20]</td>\n<td>Specifies the code of the dimension value linked to the entries.</td>\n</tr>\n<tr>\n<td>GenProdPostingGroup</td>\n<td>Code[20]</td>\n<td>Specifies a general product accounting group code.</td>\n</tr>\n<tr>\n<td>Group</td>\n<td>Code[10]</td>\n<td>Specifies the group of conceptswhich it belongs.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","hotelItem","v1.0","companies(< company ID >)","hotelItems"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"e2a76951-3a00-479b-8c7f-2a782eb8542c","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotelItem/v1.0/companies(< company ID >)/hotelItems"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"648810a2-f8ff-bd11-7342-966c00841754"},{"key":"mise-correlation-id","value":"73cf8b3d-cad6-4750-91d1-04579e2d2724"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"1e340773-1acd-4542-be12-4ddb0905b5cd"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 12:03:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/hotelItems\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTc5NTEyMDUwOTkxOTk2NDIxOzAwOyc=\\\"\",\n            \"systemId\": \"c703d2b1-fd5f-ed11-8c34-000d3aab50ed\",\n            \"No\": \"FI-ALQ\",\n            \"Description\": \"FIANZA ALQUILER\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"OTROSSERV\",\n            \"Group\": \"DEP\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDA5MDQ3Mzk1ODcyNzMzMjgxOzAwOyc=\\\"\",\n            \"systemId\": \"78b20277-fe5f-ed11-8c34-000d3aab50ed\",\n            \"No\": \"TOA\",\n            \"Description\": \"TOALLA\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"103\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"SPA\",\n            \"Group\": \"SPA\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjE2NTQ2MjM0MjM3MDA3MDkxOzAwOyc=\\\"\",\n            \"systemId\": \"09567e19-4b8b-ed11-9989-000d3ac211f6\",\n            \"No\": \"MRL\",\n            \"Description\": \"SERVICIO MRL\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"105\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"OTROSSERV\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTc5MjU3NzE4MTAzNDg3MDAxOzAwOyc=\\\"\",\n            \"systemId\": \"83630c2f-2429-ed11-97e8-00224882e1a5\",\n            \"No\": \"HAB\",\n            \"Description\": \"Habitación\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALOJAMIENT\",\n            \"Group\": \"HAB\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzkxMTkxOTgwNDYyOTEwOTcxOzAwOyc=\\\"\",\n            \"systemId\": \"bcceaa05-2a29-ed11-97e8-00224882e1a5\",\n            \"No\": \"PENAL\",\n            \"Description\": \"PENALIZACIÓN\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"VARIOS\",\n            \"Group\": \"VAR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzQ3MTQ3OTE0MTc1NjAyMjIxOzAwOyc=\\\"\",\n            \"systemId\": \"d86c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk5NDA3MzU3OTc0MjYwMzEyMTswMDsn\\\"\",\n            \"systemId\": \"d96c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"AJU\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjczMzkwNDQyMzQ0MjgwNTMxOzAwOyc=\\\"\",\n            \"systemId\": \"da6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"ALQ\",\n            \"Description\": \"ALQUILERES\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"OTROSSERV\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzMzNTA2NTkxNjA1NDQxOTIxOzAwOyc=\\\"\",\n            \"systemId\": \"db6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"BP\",\n            \"Description\": \"BAR PISCINA\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"151\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ5ODE5MTU1NjI3OTMzODUzMTswMDsn\\\"\",\n            \"systemId\": \"dc6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"BPSPA\",\n            \"Description\": \"BAR PISCINA SPA\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU3NDk1NTYxMDQ3NTgxMDIxMTswMDsn\\\"\",\n            \"systemId\": \"dd6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"CESTA FRUTAS\",\n            \"Description\": \"cesta de frutas\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALOJAMIENT\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ2Mzk3MzYxNTUzNTkwNzQ4MTswMDsn\\\"\",\n            \"systemId\": \"de6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"CF\",\n            \"Description\": \"cesta frutas\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzM2MTU2NDg0NTU2NTE1MjMxOzAwOyc=\\\"\",\n            \"systemId\": \"df6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"CF1\",\n            \"Description\": \"CAFETERÍA 1\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"104\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA2MTQwMTA5NTY4MDc2MjkwMTswMDsn\\\"\",\n            \"systemId\": \"e06c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"COM\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"AJUSTE\",\n            \"Group\": \"AJU\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMzU5MzU2NzU5MjcyMjY5MTE7MDA7Jw==\\\"\",\n            \"systemId\": \"e16c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"DES\",\n            \"Description\": \"DESAYUNO\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"PEN\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NDY1OTM1MzI5ODY2MjMwMjQxOzAwOyc=\\\"\",\n            \"systemId\": \"e26c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"DTO\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzY5MTI0ODAwNDczMTAyOTQyMTswMDsn\\\"\",\n            \"systemId\": \"e36c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"EBO\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE2NzgzODY0ODM5MzA5NTAzMTswMDsn\\\"\",\n            \"systemId\": \"e46c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"EVE\",\n            \"Description\": \"EVENTOS\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"519\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"OTROSSERV\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTY0MTM2MTcyODQ1NjY5OTE5MTswMDsn\\\"\",\n            \"systemId\": \"e56c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"FAX\",\n            \"Description\": \"SERVICIO DE FAX\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"TELECOMUNI\",\n            \"Group\": \"TEL\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg5NzE5MTg5MzYzMTE1NTY0MTswMDsn\\\"\",\n            \"systemId\": \"e66c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GAL\",\n            \"Description\": \"GALAS\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"PEN\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTcxMTQxNjIxODkyODU3NjU0MTswMDsn\\\"\",\n            \"systemId\": \"e76c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GAL N\",\n            \"Description\": \"GALA NAVIDAD\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDczOTM4OTU3NTk0NzYyNjc5MTswMDsn\\\"\",\n            \"systemId\": \"e86c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GALA F\",\n            \"Description\": \"GALA FIN DE AÑO\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"ALI\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAwODYwNjM2MDIyNDQ1MDAyMTswMDsn\\\"\",\n            \"systemId\": \"e96c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GAR\",\n            \"Description\": \"GARAJE Y APARCAMIENTO\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"OTROSSERV\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM1NzYwMjk1MTYwNDAyNDQ5MTswMDsn\\\"\",\n            \"systemId\": \"ea6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GO1\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk4NzE2MzIwMDk4MTEzODIzMTswMDsn\\\"\",\n            \"systemId\": \"eb6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"GUI\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwOTg1OTAyOTY0OTA3OTc4NDE7MDA7Jw==\\\"\",\n            \"systemId\": \"ec6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"LAV\",\n            \"Description\": \"LAVANDERIA\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"LAVANDERIA\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY0NjU3MzU0NDE5MzU2NzIyMTswMDsn\\\"\",\n            \"systemId\": \"ed6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"MARKET\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDI0MTMyNjYxMzg2NzQzMjA3MTswMDsn\\\"\",\n            \"systemId\": \"ee6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"MBB\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5Mjc3NTExNzc0MzMyNjIyMTswMDsn\\\"\",\n            \"systemId\": \"ef6c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"MIB\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDIxMjA1ODI5NTI0NDM0MjgwMTswMDsn\\\"\",\n            \"systemId\": \"f06c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"PARKING\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDExNTk2ODA4NzMwNTY3MDgwMTswMDsn\\\"\",\n            \"systemId\": \"f16c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"PEN\",\n            \"Description\": \"PENSION\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"PEN\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA5NTk0MzkxMTUyMzk0NzEwMTswMDsn\\\"\",\n            \"systemId\": \"f26c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"PRG\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM0MjkyNzU0MzIwOTA1OTMxMTswMDsn\\\"\",\n            \"systemId\": \"f36c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"ROO\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjIwNTQ4ODgyNjcwNjAwNjAwMTswMDsn\\\"\",\n            \"systemId\": \"f46c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"RSB\",\n            \"Description\": \"\",\n            \"VATProdPostingGroup\": \"\",\n            \"GlobalDimension1No\": \"\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"\",\n            \"Group\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjA0NjI2ODI0NzAyNDg1MTYxOzAwOyc=\\\"\",\n            \"systemId\": \"f56c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"SPA\",\n            \"Description\": \"SPA\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"103\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"SPA\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1OTE2MzAxNjY3NDgwMTA5NTE7MDA7Jw==\\\"\",\n            \"systemId\": \"f66c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"TEL\",\n            \"Description\": \"TELEFONO\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"108\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"TELECOMUNI\",\n            \"Group\": \"TEL\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzI0NjEyOTY1NzI0NDE1OTQxOzAwOyc=\\\"\",\n            \"systemId\": \"f76c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"TRA\",\n            \"Description\": \"TRANSFER AEROPUERTO\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"520\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"TRANSPORTE\",\n            \"Group\": \"OTR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Nzc5Mjk2NDcxMTQxMDY1MjkxOzAwOyc=\\\"\",\n            \"systemId\": \"f86c81a8-df29-ed11-97e8-00224882e393\",\n            \"No\": \"VAR\",\n            \"Description\": \"VARIOS\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"101\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"VARIOS\",\n            \"Group\": \"VAR\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc5MTU3NDM1OTE0NDM4NzEwMTswMDsn\\\"\",\n            \"systemId\": \"fd8b2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"No\": \"TPV1\",\n            \"Description\": \"TPV1\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"151\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"FOOD\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAwNjQ3NjIyMDkxMDE4OTgxMTswMDsn\\\"\",\n            \"systemId\": \"fe8b2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"No\": \"TPV2\",\n            \"Description\": \"TPV2\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"152\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"FOOD\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzUzOTM3MzQ1NTgwNDc2MzYxOzAwOyc=\\\"\",\n            \"systemId\": \"ff8b2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"No\": \"TPV3\",\n            \"Description\": \"TPV3\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"153\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"FOOD\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYzMDY5NDQzOTM5MDE4ODE5MTswMDsn\\\"\",\n            \"systemId\": \"008c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"No\": \"TPV4\",\n            \"Description\": \"TPV4\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"154\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"FOOD\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzc4MTU1NTY0MDYwNDc0NzQxOzAwOyc=\\\"\",\n            \"systemId\": \"018c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"No\": \"TPV5\",\n            \"Description\": \"TPV5\",\n            \"VATProdPostingGroup\": \"IGIC-GEN\",\n            \"GlobalDimension1No\": \"155\",\n            \"GlobalDimension2No\": \"\",\n            \"GenProdPostingGroup\": \"ALIMENTACI\",\n            \"Group\": \"FOOD\"\n        }\n    ]\n}"},{"id":"15951a14-5dbe-4c4b-9271-a3d690f22dda","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotelItem/v1.0/companies(< company ID >)/hotelItems"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"ccca79c4-b3a8-4efb-b840-63e565630d00","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotelItem/v1.0/companies(< company ID >)/hotelItems"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_DataNotFoundFilter\",\n        \"message\": \"The company <name> does not exist.  CorrelationId:  31115690-7eb7-4502-b6d1-f6893e92b29c.\"\n    }\n}"}],"_postman_id":"868340b3-763b-4c4b-b743-ac495901c609"}],"id":"14cafbe2-524f-4519-9c29-c471f81c3b6d","_postman_id":"14cafbe2-524f-4519-9c29-c471f81c3b6d","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"invoicing","item":[{"name":"guestFolioHeaders","id":"2606f92a-b90e-41d3-b014-d7557e341a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/invoicing/v1.0/companies(<companyID>)/guestFolioHeaders","description":"<p>System table: Guest Folio Header HTL<br />Page in Business Central: Guest Folio Header HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","invoicing","v1.0","companies(<companyID>)","guestFolioHeaders"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b835f4c9-4fc6-4bf1-bbbd-827c3a4a29d3","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/guestFolioHeaders"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/guestFolioHeaders\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzM4NTE3NjYzNDk3MTMwMjAxOzAwOyc=\\\"\",\n            \"id\": \"f0630343-1ea1-ef11-bec6-6045bd8f25a4\",\n            \"no\": \"BKN0012487\",\n            \"roomNo\": \"ABONO\",\n            \"bookingNo\": \"BKN0012501\",\n            \"bookingCustomerNo\": \"Booking Customer No\",\n            \"customerNo\": \"DIRECTOS\",\n            \"Paid By\": \"Guest\",\n            \"systemCreatedAt\": \"0001-01-01T00:00:00Z\",\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTY3MjIzNTU3NzQyNTE4NjQxOzAwOyc=\\\"\",\n            \"id\": \"fe630343-1ea1-ef11-bec6-6045bd8f25a4\",\n            \"no\": \"BKN0012489\",\n            \"roomNo\": \"EXTERIOR\",\n            \"bookingNo\": \"\",\n            \"bookingCustomerNo\": \"\",\n            \"customerNo\": \"CONTADO\",\n            \"Paid By\": \"Guest\",\n            \"systemCreatedAt\": \"0001-01-01T00:00:00Z\",\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"2606f92a-b90e-41d3-b014-d7557e341a72"},{"name":"addGuestFolioCreditLine","id":"44c5a336-da37-452a-9aff-2e92454c54ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"itemNo\": \"CONTADO\",\r\n    \"unitPrice\": 19.00,\r\n    \"additionalText\": \"\",\r\n    \"secretCode\": \"cPr,r_-XSEOG;d+-/M.3rCN^ACLO:Zg)OASY;6=gnl5N7n?6g%\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/invoicing/v1.0/companies(<companyID>)/guestFolioHeaders(<Guest Folio Header ID>)/Microsoft.NAV.addGuestFolioCreditLine","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","invoicing","v1.0","companies(<companyID>)","guestFolioHeaders(<Guest Folio Header ID>)","Microsoft.NAV.addGuestFolioCreditLine"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"828e83bb-291b-4226-b11f-ff3a3c643070","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"itemNo\": \"CONTADO\",\r\n    \"unitPrice\": 19.00,\r\n    \"additionalText\": \"\",\r\n    \"secretCode\": \"cPr,r_-XSEOG;d+-/M.3rCN^ACLO:Zg)OASY;6=gnl5N7n?6g%\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/guestFolioHeaders(<Guest Folio Header ID>)/Microsoft.NAV.addGuestFolioCreditLine"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\r\n    \"value\": \"The Guest Folio Line creation was successfully done.\"\r\n}"},{"id":"55a65890-beb3-4dc2-8b30-28ce418bac93","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"itemNo\": \"BAD NO\",\r\n    \"unitPrice\": 19.00,\r\n    \"additionalText\": \"\",\r\n    \"secretCode\": \"cPr,r_-XSEOG;d+-/M.3rCN^ACLO:Zg)OASY;6=gnl5N7n?6g%\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/guestFolioHeaders(<Guest Folio Header ID>)/Microsoft.NAV.addGuestFolioCreditLine"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": {\r\n        \"code\": \"Application_DialogException\",\r\n        \"message\": \"The Item No parameter contains an invalid value for the OptionParameter.  CorrelationId:  4a2dd7a0-79bb-4feb-b7bc-c0e9f35f8b87.\"\r\n    }\r\n}"}],"_postman_id":"44c5a336-da37-452a-9aff-2e92454c54ca"},{"name":"guestFolioLines","id":"820c1cb9-707b-4e4a-b6ec-074964141b79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/invoicing/v1.0/companies(<companyID>)/guestFolioLines","description":"<p>System table: Guest Folio Line HTL<br />Page in Business Central: Guest Folio Line HTL</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>guestFolioNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>guestFolioType</td>\n<td>Enum \"Guest Folio Type HTL\"</td>\n<td></td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td>Date</td>\n<td>Specifies the date of the charge/cr. Memo of the line.</td>\n</tr>\n<tr>\n<td>infoDate</td>\n<td>Date</td>\n<td>Specifies the date in which the line with charge/cr. Memo has been created. This date matches with the posted date if the charges are done manually or since the masive automatic charges process. In this case, the informative date represents the date in where the automatic charges for the account has been generated.</td>\n</tr>\n<tr>\n<td>contactNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>billToCustomer</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>origin</td>\n<td>Option</td>\n<td>Specifies if the line origin is automatic or manual.</td>\n</tr>\n<tr>\n<td>guestFolioLineType</td>\n<td>Option</td>\n<td>Specifies if the line matches with a charge or a cr. Memo and the area from where it comes; Charge, Cr. Memo, Deposit Cr. Memo, Deposit Spa, Spa Voucher, Deposit event room.</td>\n</tr>\n<tr>\n<td>itemNo</td>\n<td>Code[20]</td>\n<td>Specifies the income concept that matches to the line.</td>\n</tr>\n<tr>\n<td>itemDescription</td>\n<td>Text[50]</td>\n<td>Specifies the income concept description that matches to the line.</td>\n</tr>\n<tr>\n<td>itemGroup</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>additionalText</td>\n<td>Text[50]</td>\n<td>Specifies the additional description of the charge/Cr. Memo of the line. This specific description includes the origin and the document no. from where the charges have been generated.</td>\n</tr>\n<tr>\n<td>unitPrice</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>lineAmount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>lineDiscount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>lineDiscountAmount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>totalDiscountLine</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>totalAmountWithTaxes</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the line with taxes.</td>\n</tr>\n<tr>\n<td>totalAmountWithoutTaxes</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the line without taxes.</td>\n</tr>\n<tr>\n<td>tax</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>taxAdjusment</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>taxIdentifier</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>taxNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>print</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>shortcutDimension1Code</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>shortcutDimension2Code</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>externalID</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>commission</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>negChargesCreditsNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>genBusPostingGroup</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>genProdPostingGroup</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>vatBusPostingGroup</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>vatProdPostingGroup</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>boardBasisCode</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>typeExternalId</td>\n<td>Option</td>\n<td></td>\n</tr>\n<tr>\n<td>discountCardNo</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>PaidBy</td>\n<td><em>Text</em></td>\n<td></td>\n</tr>\n<tr>\n<td>BookingNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","invoicing","v1.0","companies(<companyID>)","guestFolioLines"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"e663b139-5b71-4b9f-90f9-8d86ffc84516","name":"guestFolioLines","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/guestFolioLines"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"http://localhost:8048/BC240/api/noray/invoicing/v1.0/$metadata#companies(d55c7216-531e-48a1-b974-7bd2d5682c03)/guestFolioLines\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjMyNjE0OTM0NTQ2NzM5NTQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"3ffc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 10000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-15\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Credit\",\r\n            \"itemNo\": \"TARJETA\",\r\n            \"itemDescription\": \"Tarjeta de credito\",\r\n            \"itemGroup\": \"\",\r\n            \"additionalText\": \"UPGRADE\",\r\n            \"unitPrice\": 46.8,\r\n            \"lineAmount\": 46.8,\r\n            \"amount\": 46.8,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 46.8,\r\n            \"totalAmountWithoutTaxes\": 46.8,\r\n            \"tax\": 0,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTIzNzYyMTE5NDc5OTU4Mjc5MTswMDsn\\\"\",\r\n            \"systemId\": \"36fc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 20000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-15\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Debit\",\r\n            \"itemNo\": \"ALO\",\r\n            \"itemDescription\": \"ALO\",\r\n            \"itemGroup\": \"ALO\",\r\n            \"additionalText\": \"\",\r\n            \"unitPrice\": 28.8,\r\n            \"lineAmount\": 28.8,\r\n            \"amount\": 26.92,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 28.8,\r\n            \"totalAmountWithoutTaxes\": 26.92,\r\n            \"tax\": 7,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"7\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"101\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"SITEMINDER TARIFAS\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"ALOJAMIENT\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"7\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzA5NzUwMjA1OTM5NjQ3MDAxOzAwOyc=\\\"\",\r\n            \"systemId\": \"37fc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 30000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-16\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Debit\",\r\n            \"itemNo\": \"ALO\",\r\n            \"itemDescription\": \"ALO\",\r\n            \"itemGroup\": \"ALO\",\r\n            \"additionalText\": \"\",\r\n            \"unitPrice\": 28.8,\r\n            \"lineAmount\": 28.8,\r\n            \"amount\": 26.91,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 28.8,\r\n            \"totalAmountWithoutTaxes\": 26.91,\r\n            \"tax\": 7,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"7\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"101\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"SITEMINDER TARIFAS\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"ALOJAMIENT\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"7\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDgyNjU1MjAzNjQxOTI4OTAxOzAwOyc=\\\"\",\r\n            \"systemId\": \"38fc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 40000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-17\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Debit\",\r\n            \"itemNo\": \"ALO\",\r\n            \"itemDescription\": \"ALO\",\r\n            \"itemGroup\": \"ALO\",\r\n            \"additionalText\": \"\",\r\n            \"unitPrice\": 28.8,\r\n            \"lineAmount\": 28.8,\r\n            \"amount\": 26.92,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 28.8,\r\n            \"totalAmountWithoutTaxes\": 26.92,\r\n            \"tax\": 7,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"7\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"101\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"SITEMINDER TARIFAS\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"ALOJAMIENT\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"7\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTc4MzU0MTgyNjQ4MTc2NzkxOzAwOyc=\\\"\",\r\n            \"systemId\": \"39fc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 50000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-18\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Debit\",\r\n            \"itemNo\": \"ALO\",\r\n            \"itemDescription\": \"ALO\",\r\n            \"itemGroup\": \"ALO\",\r\n            \"additionalText\": \"\",\r\n            \"unitPrice\": 28.8,\r\n            \"lineAmount\": 28.8,\r\n            \"amount\": 26.91,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 28.8,\r\n            \"totalAmountWithoutTaxes\": 26.91,\r\n            \"tax\": 7,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"7\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"101\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"SITEMINDER TARIFAS\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"ALOJAMIENT\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"7\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTkyMzA0NTc3NDA4NDkxMzcyMTswMDsn\\\"\",\r\n            \"systemId\": \"3afc9443-1ea1-ef11-bec6-6045bd8f25a4\",\r\n            \"guestFolioNo\": \"ALCH04383\",\r\n            \"lineNo\": 60000,\r\n            \"guestFolioType\": \"_x0020_\",\r\n            \"postingDate\": \"2021-10-27\",\r\n            \"infoDate\": \"2021-10-19\",\r\n            \"contactNo\": \"TM0005324\",\r\n            \"billToCustomer\": \"TEIDEMAR\",\r\n            \"origin\": \"Manual\",\r\n            \"guestFolioLineType\": \"Debit\",\r\n            \"itemNo\": \"ALO\",\r\n            \"itemDescription\": \"ALO\",\r\n            \"itemGroup\": \"ALO\",\r\n            \"additionalText\": \"\",\r\n            \"unitPrice\": 28.8,\r\n            \"lineAmount\": 28.8,\r\n            \"amount\": 26.92,\r\n            \"lineDiscount\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"totalDiscountLine\": false,\r\n            \"totalAmountWithTaxes\": 28.8,\r\n            \"totalAmountWithoutTaxes\": 26.92,\r\n            \"tax\": 7,\r\n            \"taxAdjusment\": false,\r\n            \"taxIdentifier\": \"7\",\r\n            \"taxNo\": \"\",\r\n            \"print\": true,\r\n            \"shortcutDimension1Code\": \"\",\r\n            \"shortcutDimension2Code\": \"101\",\r\n            \"externalID\": \"\",\r\n            \"rateNo\": \"SITEMINDER TARIFAS\",\r\n            \"commission\": false,\r\n            \"negChargesCreditsNo\": \"\",\r\n            \"genBusPostingGroup\": \"CANARIAS\",\r\n            \"genProdPostingGroup\": \"ALOJAMIENT\",\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatProdPostingGroup\": \"7\",\r\n            \"boardBasisCode\": \"SA\",\r\n            \"typeExternalId\": \" \",\r\n            \"discountCardNo\": \"\",\r\n            \"PaidBy\": \"Customer\",\r\n            \"BookingNo\": \"ALR007068\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n        ]\r\n}\r\n        "}],"_postman_id":"820c1cb9-707b-4e4a-b6ec-074964141b79"}],"id":"c64a7de8-ef46-4747-ac68-a67fb8792e14","_postman_id":"c64a7de8-ef46-4747-ac68-a67fb8792e14","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"general","item":[{"name":"paymentMethods","id":"b6c1f688-0bdf-41a1-b5fd-a94bcc7a6abb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/paymentmethod/v1.0/companies(<companyID>)/paymentmethods","description":"<p>System table: Payment Method<br />Page in Business Central: Payment Methods  </p>\n<p>Return the list of the available payment methods.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Code</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BalAccountType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BalAccountNo</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ValidInHotelHTL</td>\n<td>Boolean</td>\n<td>Specifies if the form of payment is enabled for use in the Hotel area: boxes, deposits, rentals, etc.</td>\n</tr>\n<tr>\n<td>CashPaymentHTL</td>\n<td>Boolean</td>\n<td>Specifies whether the entries of the form of payment are included in the Diary of the cash specified above.</td>\n</tr>\n<tr>\n<td>BatchCashHTL</td>\n<td>Code[20]</td>\n<td>Specifies the code of the cash or section where the entries of this form of payment will be recorded.</td>\n</tr>\n<tr>\n<td>CashAccumulativeHTL</td>\n<td>Boolean</td>\n<td>Specifieswhich credit card the payment method is associated.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","paymentmethod","v1.0","companies(<companyID>)","paymentmethods"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"8c800dd7-57b3-446e-bc9a-96202566bd42","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/paymentmethod/v1.0/companies(< company ID >)/paymentmethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"3aa1e0fc-f5ba-0cea-0106-9b16a260b128"},{"key":"mise-correlation-id","value":"002d17c7-32de-49de-87b1-74926406d088"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"c2bfc8eb-8c94-4e02-a662-ff8b370d6058"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:37:38 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/paymentmethods\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODE4MzU0NDU4NjE0MTUxMDYxOzAwOyc=\\\"\",\n            \"systemId\": \"919f9edc-139e-ed11-9a88-000d3a2f7846\",\n            \"code\": \"COBPAR\",\n            \"description\": \"Cobro parcial\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDk3ODA4MjY5ODg4ODU4MTcxOzAwOyc=\\\"\",\n            \"systemId\": \"35f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"AMEX\",\n            \"description\": \"American Express\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NjE3NDA1MDI4Mzg4NzUxNTE7MDA7Jw==\\\"\",\n            \"systemId\": \"36f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"C. HAB\",\n            \"description\": \"Cargo habitación\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODg3MDcwMDQ4MTQwODYyOTIxOzAwOyc=\\\"\",\n            \"systemId\": \"40f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"CONTADO\",\n            \"description\": \"Pago efectivo\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTg1MDE0MzA2OTQ1MTY4MzMxOzAwOyc=\\\"\",\n            \"systemId\": \"44f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"CTA.CASA\",\n            \"description\": \"Cuenta Casa\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM4ODc1ODY4MjQ0MDA3MTI4MTswMDsn\\\"\",\n            \"systemId\": \"45f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"DEP-TRANSF\",\n            \"description\": \"Transferencia depósitos\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTQ0MTIxNzg5MDY3NDI4MjMxOzAwOyc=\\\"\",\n            \"systemId\": \"46f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"DINNERS\",\n            \"description\": \"Dinners\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU2MTc4MzQxMzQ5OTI0OTA1MTswMDsn\\\"\",\n            \"systemId\": \"49f15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"MASTER\",\n            \"description\": \"Master Card\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc3MzY0MjY5MTI4NDMxODI3MTswMDsn\\\"\",\n            \"systemId\": \"4cf15279-13e7-ec11-82f8-6045bd8deb29\",\n            \"code\": \"VISA\",\n            \"description\": \"Visa\"\n        }\n    ]\n}"},{"id":"addfc705-917d-418e-98e0-608643ecfaed","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/paymentmethod/v1.0/companies(< company ID >)/paymentmethods"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"df4aff33-180d-0c12-b0fd-0cd8de342177"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:37:25 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"}],"_postman_id":"b6c1f688-0bdf-41a1-b5fd-a94bcc7a6abb"},{"name":"Cash Line","id":"e628ffc9-5e66-406c-96c3-40f348c7591d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/general/v1.0/companies({companyId})/cashLines","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","general","v1.0","companies({companyId})","cashLines"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"e8d4557f-3f43-450f-810e-ca97d44bb781","name":"200 Cash Line","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/general/v1.0/companies({companyId})/cashLines"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"9a3825a2-80f1-1438-814d-45084b614f5a"},{"key":"mise-correlation-id","value":"7f817e3e-5bfb-4fad-af0e-646e920aaf23"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Id","value":"879be464-5978-4cb3-9987-33549670944a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Mar 2026 12:00:08 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/general/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/cashLines\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1Njk3NzAyNTYxODg3NzE2ODAxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10000,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 100,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000004\",\n            \"depositReturn\": false,\n            \"description\": \"Fianza alquiler BICI HA0000004, MARIA JOSÉ  GONZALEZ  PEREZ\",\n            \"dimensionSetID\": 4,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"ENT-ALQ\",\n            \"operationType\": \"Refund\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"101\",\n            \"shortcutDimension2Code\": \"10\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T08:35:19.913Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"04453b70-0960-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T08:35:19.96Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDAxMzE5NzIzMzg4MDA5MzcxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10001,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 100,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000004\",\n            \"depositReturn\": true,\n            \"description\": \"Devolución fianza BICI HA0000004, MARIA JOSÉ  GONZALEZ  PEREZ\",\n            \"dimensionSetID\": 4,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"SAL-FIANZA\",\n            \"operationType\": \"Payable\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"101\",\n            \"shortcutDimension2Code\": \"10\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T08:40:36.24Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"394cc82d-0a60-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T08:40:36.257Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzgwMzYyMjcwNjQwMjY0OTMxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10002,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 200,\n            \"balanceAmount\": 200,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº 103 - JAIME MARRERO GARCIA\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"COBPAR\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 30000,\n            \"sourceNo\": \"CH0000005\",\n            \"systemCreatedAt\": \"2023-01-27T07:27:30.06Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"32d9fb0d-149e-ed11-9a88-000d3a2f7846\",\n            \"systemModifiedAt\": \"2023-01-27T07:27:42.2Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI3MjEyNzkxNTU4ODU1MzMyMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10003,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 70,\n            \"balanceAmount\": 70,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 80000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-02T10:43:10.807Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"3d188d43-3201-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-02T10:43:10.873Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDY5MzIzNDUxNDAwNDg4MDYxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10004,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 70,\n            \"balanceAmount\": 70,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 90000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-04T12:14:36.587Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"2146805d-d102-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-04T12:14:36.703Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjY1Mjc1NjYxMjc0NjM0MzExOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10005,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 70,\n            \"balanceAmount\": 70,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 100000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-04T12:15:27.793Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"4e0b3f7d-d102-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-04T12:15:27.797Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDAxNTQ4OTQwNTE2MjYzNDM3MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10006,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 70,\n            \"balanceAmount\": 70,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 110000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-04T12:17:24.677Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"fa00e9c2-d102-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-04T12:17:24.68Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzc1MDUwNTM5ODQ5NjA5ODIxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10007,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 700,\n            \"balanceAmount\": 700,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 120000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-04T12:17:33.773Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"fc00e9c2-d102-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-04T12:17:33.777Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODQ0NTU5ODA0MTQzNTYzNDAxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10008,\n            \"accountNo\": \"CL0000007\",\n            \"accountType\": \"Customer\",\n            \"amount\": 10,\n            \"balanceAmount\": 10,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. 202 - Agencia de Viajes Barceló SL\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 130000,\n            \"sourceNo\": \"CH0000006\",\n            \"systemCreatedAt\": \"2023-06-06T06:15:54.177Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"e843de91-3104-ee11-8f6e-6045bda14c6a\",\n            \"systemModifiedAt\": \"2023-06-06T06:15:54.263Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxOTE3NTYyMDEwMTQ4NzU3OTYxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10009,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 942.61,\n            \"balanceAmount\": 942.61,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº 104 - PETER JACKSON\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 540000,\n            \"sourceNo\": \"CH0000004\",\n            \"systemCreatedAt\": \"2023-07-20T23:56:17.777Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"8084bb03-5927-ee11-bdf5-000d3aaa00db\",\n            \"systemModifiedAt\": \"2023-07-20T23:57:51.177Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxODI4MTg2MjY2Mjk2MjU3NjYxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10010,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 7400,\n            \"balanceAmount\": 7400,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cliente TPV4\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 400000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-14T14:16:34.44Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"7a243d2b-ad3a-ee11-bdf5-000d3a3a6d84\",\n            \"systemModifiedAt\": \"2023-08-14T14:16:34.51Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQ1MjI4NTQ4MDM3MjgzNTI4MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10011,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 54,\n            \"balanceAmount\": 54,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cliente TPV4\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 410000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-14T14:17:09.427Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"28a1ac40-ad3a-ee11-bdf5-000d3a3a6d84\",\n            \"systemModifiedAt\": \"2023-08-14T14:17:09.447Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc5MTY0NzE3MTg0NzUwMzMzMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10012,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.5,\n            \"balanceAmount\": 9.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cash Credit BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 610000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-14T14:33:40.213Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"bc1d2e8f-af3a-ee11-bdf5-000d3a3a6d84\",\n            \"systemModifiedAt\": \"2023-08-14T14:33:40.237Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzIwNTQxOTAzODIzMzY2MTEzMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10013,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300,\n            \"balanceAmount\": 300,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cliente TPV4\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 820000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T13:24:09.297Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"17230929-383c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T13:24:16.447Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDMwMzQzMDE0MjA1ODg1MjUxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10014,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 79.7,\n            \"balanceAmount\": 79.7,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cliente TPV4\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 910000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:28:47.247Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"436179bc-623c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:29:09.21Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzEyOTAzMjUxNTkwNzc3NDMxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10015,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 158,\n            \"balanceAmount\": 158,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Cliente TPV4\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 960000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:43:54.217Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"005c19d9-643c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:43:54.233Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjczNjk2Mjg2MzI4MDEzMTIzMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10016,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.5,\n            \"balanceAmount\": 9.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 980000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:46:52.237Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"82c51c43-653c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:46:52.257Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDQ1MzczOTY3ODgyMjA1NTYxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10017,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 69.5,\n            \"balanceAmount\": 69.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1000000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:46:52.387Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"85c51c43-653c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:46:52.39Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTczMTc2MzI2NDc5MDc4NTMxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10018,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 200.5,\n            \"balanceAmount\": 200.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1020000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:52:15.527Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"42c3cb03-663c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:52:15.54Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzM5NDc0MDU5MDc3MDM5NzQxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10019,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300.5,\n            \"balanceAmount\": 300.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1040000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T18:52:15.64Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"45c3cb03-663c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:52:15.643Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTQwNjEwNjExMDY1OTM4OTAxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10020,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 200.5,\n            \"balanceAmount\": 200.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 20000,\n            \"sourceNo\": \"CH0000016\",\n            \"systemCreatedAt\": \"2023-08-16T18:54:54.49Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"9b805462-663c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:54:54.513Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE0Mjc2ODkzMTk5ODE2MjA2MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10021,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300.5,\n            \"balanceAmount\": 300.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 20000,\n            \"sourceNo\": \"CH0000017\",\n            \"systemCreatedAt\": \"2023-08-16T18:54:54.617Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"9f805462-663c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:54:54.62Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Mjg3OTYxODM4NjkxMTU1MzIxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10022,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300.5,\n            \"balanceAmount\": 300.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 20000,\n            \"sourceNo\": \"CH0000019\",\n            \"systemCreatedAt\": \"2023-08-16T18:59:56.857Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"49ba9913-673c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T18:59:56.88Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE4MTE4MzAzOTk2MDIyOTM2MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10023,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 200.5,\n            \"balanceAmount\": 200.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1060000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T19:15:00.347Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"f8444f31-693c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T19:15:00.363Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc5OTY1NzgyMjM3MTU4MDMzMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10024,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300.5,\n            \"balanceAmount\": 300.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1080000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-16T19:15:00.473Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"fb444f31-693c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T19:15:00.477Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDM0OTQ4MDM4NTY0NjQ3MjIxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10025,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 335,\n            \"balanceAmount\": 335,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº 104 - PETER JACKSON\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 600000,\n            \"sourceNo\": \"CH0000004\",\n            \"systemCreatedAt\": \"2023-08-16T19:57:33.237Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"27bcf722-6f3c-ee11-9cbf-6045bd98d146\",\n            \"systemModifiedAt\": \"2023-08-16T20:25:36.817Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA2MTg2NTY0MTAwNjQxNzg5MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10026,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 1300,\n            \"balanceAmount\": 1300,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº 104 - PETER JACKSON\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 730000,\n            \"sourceNo\": \"CH0000004\",\n            \"systemCreatedAt\": \"2023-08-17T07:03:11.447Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"1859e41f-cc3c-ee11-9cbf-6045bd8bd87c\",\n            \"systemModifiedAt\": \"2023-08-17T07:03:33.343Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjY3ODI5MDgyNzk2MTI1MzgxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10027,\n            \"accountNo\": \"9999997\",\n            \"accountType\": \"Customer\",\n            \"amount\": 290,\n            \"balanceAmount\": 290,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº 104 - PETER JACKSON\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 760000,\n            \"sourceNo\": \"CH0000004\",\n            \"systemCreatedAt\": \"2023-08-17T07:11:40.917Z\",\n            \"systemCreatedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"systemId\": \"4f5fb94f-cd3c-ee11-9cbf-6045bd8bd87c\",\n            \"systemModifiedAt\": \"2023-08-17T07:11:40.933Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU4MDk5MDMxOTc2MzIzMTAyMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10028,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 9.3,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1100000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T11:21:46.597Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"2c852c92-3943-ee11-be6d-6045bd8bd87c\",\n            \"systemModifiedAt\": \"2023-08-25T11:21:46.677Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTEwMDM1Mjk5NDgzNDM0NTg2MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10029,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 9.3,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1120000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T12:49:55.407Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"45e439e3-4543-ee11-be6d-6045bd8bd87c\",\n            \"systemModifiedAt\": \"2023-08-25T12:49:55.457Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTM4MDA0MzM2NjkyNTk5OTExOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10030,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 9.3,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1150000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:56:26.93Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"f618682e-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:56:26.99Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjQ5MTQwNjY2NjI3NDY0NTAxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10031,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 4.45,\n            \"balanceAmount\": 4.45,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1170000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:56:27.12Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"f918682e-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:56:27.123Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE4MDUxODQ4MzA5OTkxMjg0MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10032,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1190000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:58:12.317Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"60bf726d-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:58:12.32Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzcwODgyOTgzNTU5MjA0MDcxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10033,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 4.45,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1210000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:58:12.36Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"63bf726d-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:58:12.363Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTU5NTQ4NTM5NDE5NzM0NDExOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10034,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 0.05,\n            \"balanceAmount\": 0.05,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1230000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:59:52.573Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"191d28a8-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:59:52.573Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MDkxMDkwMDkwMzQ0MzA1NzIxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10035,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.25,\n            \"balanceAmount\": 9.25,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1250000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T13:59:53.553Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"1c1d28a8-4f43-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T13:59:53.553Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyMjU0MDE5MzI0MzkxNDQ2MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10036,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 9.3,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1270000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:03:39.283Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"e6f5a52d-5043-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:03:39.283Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTYxNTQ2NTk1NDY4MTg4MzMxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10037,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 4.65,\n            \"balanceAmount\": 4.65,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1290000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:04:55.14Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"72638e5d-5043-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:04:55.147Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQxMDM4MTc1OTU0ODAyNTE4MTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10038,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 4.65,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Venta TPV BAR RESTAURANTE\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1310000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:04:56.537Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"75638e5d-5043-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:04:56.54Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTgzODI5MDE1MjI2Mzc2NDgzMTswMDsn\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10039,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 9.3,\n            \"balanceAmount\": 9.3,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Habitación Nº TPV - Abono Ticket BAR RESTAURANTE/FS-89-1  4:14\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1330000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:15:03.74Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"cf0b16c8-5143-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:15:03.763Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzI5ODM4MjQyMDAxNTk1NzUxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10040,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 200.5,\n            \"balanceAmount\": 200.5,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE Time  6:58:00 P\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1350000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:18:33.383Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"b8e71645-5243-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:18:33.397Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTA1Mjg3MTA2OTQ2MTMyOTYxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJARECEP\",\n            \"lineNo\": 10041,\n            \"accountNo\": \"TPV4\",\n            \"accountType\": \"Customer\",\n            \"amount\": 300.5,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Room No. TPV - Credit POS Sale BAR RESTAURANTE Time  6:58:00 P\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"0001-01-01\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Collection\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 1370000,\n            \"sourceNo\": \"CH0000014\",\n            \"systemCreatedAt\": \"2023-08-25T14:18:33.5Z\",\n            \"systemCreatedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"systemId\": \"bbe71645-5243-ee11-bdf5-6045bd905c13\",\n            \"systemModifiedAt\": \"2023-08-25T14:18:33.5Z\",\n            \"systemModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU3NDI1ODQyMjA0NTUyNjY1MTswMDsn\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 1,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 175,\n            \"balanceAmount\": 175,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Depósito Bono WB0000001 - Cliente genérico SPA\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Reserve Deposit\",\n            \"origin\": \"SPA Voucher\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"WB0000001\",\n            \"systemCreatedAt\": \"2022-09-16T10:00:47.667Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"e8514a6f-a635-ed11-97e8-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-09-16T10:00:47.757Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA0MzcyMjEyNzUyMjM3OTA3MTswMDsn\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 2,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 65,\n            \"balanceAmount\": 65,\n            \"depositRentalNo\": \"\",\n            \"depositReturn\": false,\n            \"description\": \"Depósito Bono WB0000002 - Cliente genérico SPA\",\n            \"dimensionSetID\": 0,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"\",\n            \"operationType\": \"Reserve Deposit\",\n            \"origin\": \"SPA Voucher\",\n            \"paymentMethodNo\": \"CONTADO\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"\",\n            \"shortcutDimension2Code\": \"\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"WB0000002\",\n            \"systemCreatedAt\": \"2022-09-16T10:33:57.907Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"e2f69011-ab35-ed11-97e8-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-09-16T10:33:57.92Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NjA5NDk4OTA2MjUwODk5NzE7MDA7Jw==\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 10002,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 25,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000001\",\n            \"depositReturn\": false,\n            \"description\": \"Fianza alquiler TOALLA HA0000001, JOAN GARCÍA GARCÍA\",\n            \"dimensionSetID\": 6,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"ENT-ALQ\",\n            \"operationType\": \"Refund\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"103\",\n            \"shortcutDimension2Code\": \"31\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T07:32:14.63Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"7b54cfa0-0060-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T07:32:14.973Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDY1Njg3NjU4OTAxOTQwNTIyMTswMDsn\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 10003,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 25,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000001\",\n            \"depositReturn\": true,\n            \"description\": \"Devolución fianza TOALLA HA0000001, JOAN GARCÍA GARCÍA\",\n            \"dimensionSetID\": 6,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"SAL-FIANZA\",\n            \"operationType\": \"Payable\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"103\",\n            \"shortcutDimension2Code\": \"31\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T07:37:40.26Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"7fa5f561-0160-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T07:37:40.327Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTQ2OTYxNzIyODc5NzU1MDAxOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 20003,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 25,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000002\",\n            \"depositReturn\": false,\n            \"description\": \"Fianza alquiler TOALLA HA0000002, JOAN GARCÍA GARCÍA\",\n            \"dimensionSetID\": 6,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"ENT-ALQ\",\n            \"operationType\": \"Refund\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"103\",\n            \"shortcutDimension2Code\": \"31\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T07:45:19.337Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"24849174-0260-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T07:45:19.417Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjAxNzg0MDQ3MzYyOTU0OTExOzAwOyc=\\\"\",\n            \"cashNo\": \"CAJASPA\",\n            \"lineNo\": 20004,\n            \"accountNo\": \"9999999\",\n            \"accountType\": \"Customer\",\n            \"amount\": 25,\n            \"balanceAmount\": 0,\n            \"depositRentalNo\": \"HA0000002\",\n            \"depositReturn\": true,\n            \"description\": \"Devolución fianza TOALLA HA0000002, JOAN GARCÍA GARCÍA\",\n            \"dimensionSetID\": 6,\n            \"documentDate\": \"2022-08-31\",\n            \"operationNo\": \"SAL-FIANZA\",\n            \"operationType\": \"Payable\",\n            \"origin\": \"Hotel\",\n            \"paymentMethodNo\": \"VISA\",\n            \"posted\": false,\n            \"postedExternalFinancial\": false,\n            \"postedFinancial\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"shortcutDimension1Code\": \"103\",\n            \"shortcutDimension2Code\": \"31\",\n            \"sourceLineNo\": 0,\n            \"sourceNo\": \"\",\n            \"systemCreatedAt\": \"2022-11-09T07:48:24.943Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"07a562e3-0260-ed11-8c34-000d3aab50ed\",\n            \"systemModifiedAt\": \"2022-11-09T07:48:25.007Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"userID\": \"\"\n        }\n    ]\n}"}],"_postman_id":"e628ffc9-5e66-406c-96c3-40f348c7591d"}],"id":"86bb89a1-cfee-4e1c-91ce-1aae4430fff4","_postman_id":"86bb89a1-cfee-4e1c-91ce-1aae4430fff4","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"planning","item":[{"name":"guaranteeEntries","id":"220dba5c-f5f3-4c77-bb39-afcb15137327","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/guaranteeEntries","description":"<p>System table: Guarantee Entry HTL<br />Page in Business Central: Guarantee Entries HTL</p>\n<p>Returns the list of guarantee entries.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>guaranteeEntryDate</td>\n<td>Date</td>\n<td>Specifies the date of the movement.</td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the allotment code.</td>\n</tr>\n<tr>\n<td>allotmentRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the room type of the allotment.</td>\n</tr>\n<tr>\n<td>realRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the real room type.</td>\n</tr>\n<tr>\n<td>bookings</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings for that day.</td>\n</tr>\n<tr>\n<td>pendingGuarantee</td>\n<td>Decimal</td>\n<td>Specifies the number of units of the expected sales.</td>\n</tr>\n<tr>\n<td>pendingForecast</td>\n<td>Decimal</td>\n<td>Specifies the units of pendind forecast.</td>\n</tr>\n<tr>\n<td>udsGuarantee</td>\n<td>Decimal</td>\n<td>Specifies the number of guarantee units.</td>\n</tr>\n<tr>\n<td>udsForecast</td>\n<td>Decimal</td>\n<td>Specifies the number of units of the expected sales.</td>\n</tr>\n<tr>\n<td>paxHD</td>\n<td>Decimal</td>\n<td>Specifies the number of people in bed and breakfast (HD).</td>\n</tr>\n<tr>\n<td>paxMP</td>\n<td>Decimal</td>\n<td>Specifies the number of people in half board (MP).</td>\n</tr>\n<tr>\n<td>paxPC</td>\n<td>Decimal</td>\n<td>Specifies the number of people in full board (PC).</td>\n</tr>\n<tr>\n<td>paxSS</td>\n<td>Decimal</td>\n<td>Specifies the number of people in accommodation (SS).</td>\n</tr>\n<tr>\n<td>paxTI</td>\n<td>Decimal</td>\n<td>Specifies the number of people that are in all-inclusive (TI).</td>\n</tr>\n<tr>\n<td>totalPax</td>\n<td>Decimal</td>\n<td>Specifies the total number of people.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","guaranteeEntries"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"6bdd736f-cc19-4054-a39c-bfd34b4de413","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/guarantees/v1.0/companies(< company ID >)/guaranteeEntries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0e18961f-490d-e1ab-badb-d300e5b2bb49"},{"key":"mise-correlation-id","value":"d721fb78-97e6-41b7-929b-19582949d877"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"8fb5ac53-c716-4b72-b678-3ec23bfa3872"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 08:01:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/guaranteeEntries\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU4MDQ5NTg5Mzk0NjAzNjg3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c33aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTI0MzgxMDMwNDI4NjgxMTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c63aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDEwNzc1NDcwMzEwMzI4NDQ1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c93aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTQ3OTg0NzY0NzE2MDQwOTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cc3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExOTQ3NjgzODc3MjM1MjkwNzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cf3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDQxOTMyNDUwMDQ3MTQwODExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d23aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5OTQ2MzExOTQyNTU4MjQyMDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d53aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkwODg1OTM0Njg5NTQwNjYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d83aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIxMzgzODMxOTI1NTgyMDAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"db3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjE3MjQ1MTQ4NzUyNDEzOTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"de3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzIwMzQ4MTgxNzMwNTcxNzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e13aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgyMzgwNDIyNTUyODc4NDcwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e43aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMjE0MDg1NTk5NDY2NzI4MzMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e73aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA2MjI2OTA4NzE2ODU1MjEyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ea3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMjE4ODUyODc3MDkyMTYyMzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ed3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQyODI4ODY3NTI4NTQwMDUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f03aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMwNzM3NTM0OTYyNTg3MjE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f33aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE0ODczNDU2OTMyNDk0MTM5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f63aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDU1Mjc0MDMyNjI5NTk2NTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f93aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM0NzA1NDM0NDc2MDQ3NzEzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fc3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDA4MzA4NDY4MjM1NzYxNDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ff3aeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDIzMjU2MTQ4Mzg4MDM1OTE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"023beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzU1MzEyNDMzNDY2MTE0NjEzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"053beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU4NTEyNDQ2NDA5MzI4NDE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"083beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzcyNzc2NDAyMzgzNDgwNDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0b3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDE2ODgzMzg4MjIxMDIwMDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0e3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzQzMzUyNTMwNTEyMjgzODUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"113beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDA3NzA2MDEwMjQ5MDAwNjMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"143beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODczNzUyODc4Nzc1NTg4OTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"173beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTA1NzUzMDA4MjA3NzI2OTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1a3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODIyNjMxNTg1ODk4ODUxMzkyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-01-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1d3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzA3MTQ2NjUwNjMwMzUxNzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"203beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUzMzAyMDY5MDM3MzI2NjE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"233beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM1MjYxMDg3ODEzOTU0NTgwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"263beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk1OTM3MjE5MDc5OTA5NjMxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"293beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTAwNTA5NTYxMTQzMjcwMTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2c3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:13.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjI5NzQ4ODQ3NjM0NjAwNjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2f3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODMxNTkwNTc0MTMxMTYwNzg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"323beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjM0Mjc0MDgyOTU5Mjg5Mjc1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"353beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ0Mzk1MTkyMzQ1MzI3Mjg5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"383beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzgwMzcyMzg2NDk5MTQzNTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3b3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTM4ODQzMjg4OTcyMDIzOTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3e3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NzczMzE2MDY5MzYyNjAwNDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"413beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzk5MTEzNjAyOTc5NjE1NDEzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"443beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTk4Mzg1MDA4MzA3MTM3NjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"473beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MjY5NjMzODIyODY4MDg4MTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4a3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzc0MDEzMzE1Mzc5MTg5MzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4d3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTY4MDQwMDM4ODM2MTQ0MDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"503beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI2MDA2MzI4NjU3MTM1MDIzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"533beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDExNjA2OTc2OTIwNjQ2Mzc4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"563beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU5OTIyMTU5MjUyNjE3MTczMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"593beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzg5NjM1NjE4NDUyMjI2NzcxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5c3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTU3NjEwMzA3OTk3NTUxOTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5f3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTI1MjU0NzUwNjc3OTIyOTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"623beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQzNzcyNTkyMjMyMzg2NzA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"653beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYzODI0NjczMjYzNjIxNTAzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"683beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUxNTY4NDIxNDM4MTE4NTA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6b3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5OTE0OTMxODMzNjExNjU2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6e3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ3OTU1MzM3NTUxNzM1NDExMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-02-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"713beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjg3NzU5NTI3NjI0NDg2NzUwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"743beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM3MTY1MzAxMzgyOTAyNjAxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"773beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc1NzU4ODA1ODE1MTEzNzgwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7a3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzc5MjMwODUyNzE2NjE4NTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7d3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjcyNTQ3ODgwMTg1MDU3NTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"803beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTQxODkzNjgyNzk1MTg0NzIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"833beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMzMyNzczOTIxNzkyODc2ODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"863beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM3ODQzNjQ4NjQwMDY0MzY2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"893beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTMyNDM0NTIxNDU2ODg2NjUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8c3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjczNjQ0NzU0NzgzNDc5MTA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8f3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4OTg3NTAxMDQ0NTg2MjcxNTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"923beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4ODEyNjExMDMxNTg5Mzg5NDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"953beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjAzMzQzNTE0OTAzNDE3Mzg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"983beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODU4NzM3MDg1OTczMDMwNTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9b3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU0OTExNDE3MTIwNDA4MzM0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9e3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIwMjgyOTQyNTUxNDU5ODMzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a13beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDIzMTczMTg1NTg1OTQzMjg3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a43beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyMzcyNTU3MzMwOTIyNDkzMDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a73beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjQ5MzQ0MjE2NzE5OTQ2NTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"aa3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAxMTM0NzY2NTkxMzU1NDAwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ad3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5NTA3OTQzMTY5ODcwNjE2MzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b03beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzkyNzgwNzQ5MzQwMTQ5NDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b33beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ5MTI3NDk5MTEyNzg4NzgwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b63beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3Mjg3NzE4Mzg2MjI5ODgzMTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b93beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzI3MjAwODg1MzcwMjE2OTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bc3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ4NTE4MzExNDA3NDM4Mzk3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bf3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzMjcxMzc4NzA5NzAyNjM0NDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c23beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Njg5MTQxMzIwMTYzODcwOTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c53beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI3NzM1Njk2MDQwMjU1MjQ5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c83beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEzOTk0NjQ2ODY4MjE3NTk2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cb3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDYxNjkwMTIzNjY1MzE0NzkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-03-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ce3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTczMTI0NTk2Nzg2MDM0NzQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d13beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDY2MjYyNzIzMDI2NjkyNDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d43beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQxNjk3NzM3NDk2NDA4NTIwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d73beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Nzc3MzIzMjc2MzYxODgzNTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"da3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNDg0OTgzNDg0NzUwMjc2OTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dd3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ3Nzc4MTQ3Mzg3OTgzNTE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e03beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTg5NjE1MzUxMjc0NTEyNzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e33beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODM3MTg5NTI5NTQ5Njg5NDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e63beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTE2MzY5NjIyNTk3MzA1MjUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e93beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk5ODkyNzY4MDA0MjQ2MzYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ec3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAxMjIyMDc3Nzc5Njc5NzAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ef3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjAyOTI0ODA3Njk2MTM1MDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f23beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzEzNjcwODc4MDYzOTEyMTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f53beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDcyMjQ2NTUyMTI4OTg0NTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f83beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzA1NjQwMTY4MjAyNjg0MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fb3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjUwNzYwNjA3NjQwMzczMjgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fe3beac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MDg3OTk2ODA4MTk2MzU2NDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"013ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODA0NTIyNTc0NDIxOTYxMzQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"043ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQ0NjAwNzg2OTYzMDUwMzg1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"073ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzA2MDM0NTI1NDY4NjA2MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0a3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ3NjEyOTY1Mzc5NzA1NjU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0d3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDEzNjA0NDY0ODEyNDYzNjY5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"103ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkyMzg3NDMxNjIzMjg1NTM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"133ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc0NjY3NjM3ODQ3MDAxMTc5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"163ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzc0NTk5MDkyNjkxNzk3MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"193ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI4MTUyMjMyODkyNzY0NzIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1c3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxMjIyMzQxMjg4Mzk4MzY0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1f3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDM1MTg1MDg2NDg2Njc0MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"223ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDk4MjY4NDc5NDY0OTc1NDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"253ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY3MzAyNzUxMTc5OTczMzYwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-04-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"283ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTkyNjM4Nzc4ODg5MzU4NzE1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2b3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjM0ODIxODc1OTg0MzQ5MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2e3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTk5MTM2OTE1MjUyMDc4ODkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"313ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzM3MjEwOTY4NTE2NDUwMDcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"343ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA4ODkxMTg1MTg3MjQxNTMwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"373ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM2NDc1MDgyNzk5MTg2NzI1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3a3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjU5MzEzNTQwMDg5OTU4NTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3d3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYyODA1ODA5MjA0MjAyNzQ3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"403ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM2Njk1OTgzOTI3MDgxMjA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"433ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDU5NDY5OTQ0NTY5NzAyMjgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"463ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTE1MjYyMzk3NjMyMzcwODcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"493ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTA4ODMxNDMwOTQzMjQ2ODIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4c3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE2NTMwOTg5Mjk2NTQ5NTczMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4f3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE2NDEwNTYwMTk5OTY3NjY0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"523ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg3NDg1MTY3MjM2NzQ1MzcxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"553ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA1NDk3NTYzMzQ3MTI5MjQxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"583ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDAyODk3NDg0NDgzNDg0MzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5b3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjQxODc4ODQ2NDc5MjcyOTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5e3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTg2NDIyNDc3ODcwMjUxMzAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"613ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzExMDM5OTIzMjMwNjk5MDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"643ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgzNTYyNjcwMTIyOTc2NTI4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"673ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg0NzIyOTk4MTQ1MzM5NDA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6a3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyNTkwNTU5OTU2MDU4NjQ4OTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6d3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU1Njc3MTc2MDg1NTM1MjA0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"703ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyODYxNjE1MjIxNzI5NTUwMzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"733ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDIzNzA0OTM1OTIwNjM2MjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"763ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEyNDI2MDY4MDk1Mzc0MTk3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"793ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTcyMDA3NDk0MjgyMTk1MDcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7c3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzIyMjc2ODI1MjU1MjAxNzEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7f3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTgzNTk2NzM4NTYxMzUzMjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"823ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzI0NDE1OTY1NTYyMDMzOTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-05-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"853ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDM4Mjk2MDc4MzEyODYxMjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"883ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDUwMzUzODUyOTEzMDY1ODYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8b3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDk1MjQ4MjExNzM1MDIyOTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8e3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAyMDE4MzY4MjU0MDY4MjkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"913ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODU2NzY4MTMxNjQzNDM1MDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"943ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU2MjU1MzY2ODc0MzE0MTY5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"973ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ1OTU3Njg2NzA1NTUyMDM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9a3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE0NjIzOTMyOTgxMTMzMTk5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9d3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQ0MDY4MTY3NTU3NDMwMTM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a03ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTY4MjI0NTU3NDI4MDk3MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a33ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzY4MzA0ODA0MzAwNjIyNjkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a63ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMjcxNTkxMTg4NzY1OTQyNTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a93ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk1MTE4MDUyNzUzNzAxOTYxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ac3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjMyMTg5ODkwMDg3NjUyMzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"af3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE0NTg5NzU4MzgxNDI2MjA3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b23ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMTk0NzU5Mjc1NjQ4MTY2NjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b53ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYyODY3NTkzNjE1MTAzNDk2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b83ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODM0ODc3NTQzNTMxNDA1NDcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bb3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzQxMTA4MjEyODMwMTQ3MDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"be3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTk1ODM3MzY5NDQwNjE3MjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c13ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDk2ODc1NzQ1MDIzNTU0NjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c43ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzEyMjUxOTg4MDc1NDQxNDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c73ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzMyODg0Njc1NzI3NjYyNjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ca3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAwNDI1MTE3NzYzMzM3MDAwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cd3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEwMTc3NTUxMzA5MDI5Mzk1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d03ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjg3Mjg3OTk2Mjg4NTg1MDM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d33ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQwNzQzNDkyNDU1MzkwMDYwMTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d63ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg2NjA5NzQzMjQ5ODQxNDYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d93ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Njc2ODA4NTY4MTQ1NDMzOTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dc3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjYzMjU4MzUxMTE0MTYyNzAxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-06-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"df3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc3MDg0NjgyOTY3MzQwNzkyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e23ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTkxOTc1NzczNTgwODkzMTU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e53ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzQ5MzQwMTk3MDI1Nzk0MDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e83ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkxODA5ODk5MzcyMzk1MjQ0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"eb3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI1MDYxNjY4ODQyNjY3OTkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ee3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc2NzQ2MDQ4MDA5NzQ5Njk4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f13ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTMyMDQ4MzE0NjI3MDAyMDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f43ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc2MDI4OTQ0NzQ5Njg5MjQwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f73ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MDgwNzAwMjg1Nzk0MjE4MjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fa3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDc0NTQ3MTE4OTUzNDU1MzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fd3ceac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc3MDkyMTM5OTEzOTI2NjUyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"003deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjcwNDc4NTczMjc5NTE3OTI3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"033deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxMDc0MDUxODkzMDczNTU3MDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"063deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDYyODU1NDg2NjgxMzE3ODkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"093deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NDM4MDM3NzQzOTMwNDg3NjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0c3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMyNTE1MTUzMzA5OTg1MjA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0f3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzcxNDE4NDg5NzMwOTQ1NjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"123deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTExMzgzMTc2ODAxMzAzMTk2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"153deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDc1MTE1Mzk3NzA0NTc5OTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"183deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ1NDU0MzY3OTMyNTk3MzYyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1b3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQzODMxODc1Mjg1NDUzMTQ5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1e3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkwNjkxMjU4NjI5Nzk5MDgzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"213deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM1Mzc5NDE5NzYzNjA1OTEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"243deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODAyNjc1MjA0MzUyNDI2MjUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"273deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTMyNDc5NTE0OTI0MTg0MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2a3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzQyMDk1NzI2NzUwODAwMjMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2d3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODM5NjIwMDYyMjA3NzI0MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"303deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTg5ODQwMzg5MTg2NTk5MDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"333deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzEzMTEwNTY2OTE1MjgxMzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"363deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAwNzA2Nzg1NTc0NTY5NjU0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"393deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ3MDYzMzk2MjQ5Nzk5NTg1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-07-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3c3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTA1NTc4MjM5OTM4NjAyMzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3f3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzcwOTIyMDQ3MDQ3MTExNzk5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"423deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ2NTA5Mzg5NzY1NTE3MTczMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"453deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk1NDAyNTQxNjgzMjcwNzUyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"483deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjUxNzE5Mjc0Nzk3NTcxMzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4b3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTY3NzE2MzA0MTg4OTIxMDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4e3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkyOTMyMzM4NzgzMDE3NTIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"513deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU1Mzk3MTI1Mjc1Mjk1NTE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"543deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk4MTA4MzIyNzUzNjUzMjc0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"573deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyMDE2NTg5ODI5MjE4NDg1MzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5a3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjUxOTA5MDU2OTkzNzU4MjA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5d3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjUwODU5ODAxNjEzOTY5NzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"603deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODMwNzg5MjIwMzc5OTA4NzAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"633deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTc0MjI1NzkzNjk0MjY3NjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"663deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NjYwNTU5ODM3NTgyOTc2NzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"693deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY4MTgwNzE3OTk0MjE3Mjc0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6c3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjU2NTQ0MzA0OTkyMzA3NTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6f3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM2MTUxNjM2NDkwMTgzMDA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"723deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg0MDI3ODU3ODMxNTM2MjAzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"753deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTQ3NTk2ODczNTU0NjA0MDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"783deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjYzMTAyNTY3MzIyMDY2NDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7b3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjI1NjkzNDE4NjU3Njk3NTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7e3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDY0MTkxMzIwMzg3Mzc2ODU4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"813deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MzA0MjgyMjA1ODU0NTA0MzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"843deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODk4NDYxNDYxOTM4MDk1ODQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"873deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTc0MzAwNDM4MDU3NTQ3NzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8a3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzIyMDI0NTA5NTg5MzIyMDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8d3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzY2ODg1MzAzNzMzNTI5MTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"903deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Mzg2Njk4ODI4Nzk1OTkyOTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"933deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTUzOTgwODM2NzAyODgyOTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"963deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI0ODIzOTQ3NjAwNjYzMzI2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-08-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"993deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 4,\n            \"pendingGuarantee\": 0,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-01T10:36:21.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjA5MDEzNDM0NDUzNDUxOTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9c3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 2,\n            \"pendingGuarantee\": 1,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T08:12:00.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM5MTk2NTQ4NjU0MjE3OTM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9f3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 3,\n            \"pendingGuarantee\": 0,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-11-22T10:33:30.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzAyNzU1MTI5Mzc0MzM3ODkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a23deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 3,\n            \"pendingGuarantee\": 0,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-11-22T10:33:30.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDMwOTMwMzgzNTE0NTEzOTExMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a53deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 2,\n            \"pendingGuarantee\": 0,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T08:10:14.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQ0ODU0NDcxNzg5OTc4ODM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a83deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 1,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T08:10:14.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjUwOTA1MTA3NjQ2Mjc1MzUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ab3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 1,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T08:10:14.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NzUzNTg1MTc4MjAwNzk5OTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ae3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T09:45:23.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzM4OTQzOTY2NjcyODQwODYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b13deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T09:45:23.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk5NTAwMjcyMDU4ODQ1MjY1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b43deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T09:45:23.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU3OTM2NjY2NTE3MDE2OTY5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b73deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzM2NDg4MDA3OTk5NTYzNTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ba3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzMyNTEzNTIzNDY3NDc1MDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bd3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY0NzEwMTMxMTE3NDY3NDgyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c03deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MzI2NDM2NTI5MjUxMDg4MjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c33deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDUwMDEwNTQyNzc3OTgyODY3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c63deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDE4NDk5ODgwODE3NTUyNjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c93deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTExNzQ4MzA1NzE5OTEyODA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cc3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDEzNzI5NjU4MjI2MTU5MTg4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cf3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM1MDg5MzMwMzk2Njc4MDMxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d23deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzIzNTU1OTE0OTMzMDkwNjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d53deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQxMjY3ODg2MzkwMzE4OTY4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d83deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM2ODQ5ODk0MTI3MDUxOTU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"db3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzE3ODA1ODE5NzU1NTAzNjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"de3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1OTA5NjU1NDkwMjcxNDMzMDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e13deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY4NTUzMDMxNDQ1NzcxMTI0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e43deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTU4MDkxODUxNzg0MjQ2OTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e73deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY3ODY5NDExOTg3NDEzNTk3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ea3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE1NzQ1NjMzMzI4NzY2NzkyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ed3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTIxMDQwODgwNjU2NjcxNzk1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f03deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM5NjEzMDM4ODY0NzAwNjk1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-09-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f33deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMyNjU2OTc5MDQ2Njc4MTc4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f63deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ0ODE4NDE5OTExODU0MjQwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f93deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc2NDA1NzIwODkxOTAzMzcxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fc3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg1OTYwODM3NzAzMTU4MzEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ff3deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA1Mzk1MTA3MTEzNjQ3MTA1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"023eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQwOTEwMzc5NTIxMDE2MDQ0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"053eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQzNjI1NTc4ODg3NDc4NjYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"083eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTUwOTY0OTc2MTU5NTcyMDIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0b3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjg4ODU3MjIyODM3NDk5MDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0e3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-01-24T12:34:56.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYzMDQxMDU0MDc5NDc3ODEzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"113eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-10-06T07:53:53.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODY5MzkxOTAyNzkwNTY2NzIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"143eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-10-06T07:53:53.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTMxNjE2MzA4NTA3NzU4MDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"173eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-10-06T07:53:53.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDk5NTg1NDU0ODQ3MjYyNDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1a3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-10-06T07:53:53.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTkzNDAxODY4NDQ0MTY3NDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1d3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-10-06T07:53:53.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDYxNDQ2OTE4MTgyNDkxODAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"203eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzU4MTM3MDQzMDI0NDY1NTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"233eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk1OTY0NjEzNjE4OTYxNjAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"263eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTI0MTA1Njc0MzM3MzY2MjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"293eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYzMTE4MDUyOTg1Mzc4NDU2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2c3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQyMzgzNDU0NTAwNjUzNTQyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2f3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODQ2MDE3ODk0MDI1NjYzNTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"323eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc4NzAyODU1MDgxODkwNzQ4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"353eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5NTQ1NTM5OTg0NDg2MjExOTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"383eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTQ4NzMzMjU0NTMyMjEyNjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3b3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NjIxMTMxMDM1NjQ1NTE4ODUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3e3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ0MjE0MTM1MTcwMjg2MDI3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"413eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODA0NzMyMjAzMDM4NDkxNDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"443eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTA4MDgzMDgyMDQxNjE5NTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"473eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDUxODg2OTc3MjUyOTcyNzY0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4a3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc1Mjg2ODY5Mzk3MjgyMjQ3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4d3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk5MTIzNTQwMTI2MTYzNjM0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-10-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"503eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQzNzc4OTUwNzA3ODY3MDU2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"533eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODcyMzQ4ODcxMDYwOTU5ODk5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"563eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEyOTcwNzY1OTk5ODQxOTI2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"593eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA5MTY0NTc1NDkwODkzNjgxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5c3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjI0Nzg3MzUzODcwNzE2MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5f3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0OTE3MTc3MDE3MDg1MDMzOTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"623eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc5NTAwMTUwMjIwNDgxNjM3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"653eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg2OTc5MDk1NDEwMTkwNjcyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"683eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDU5Njc1ODIxNDExNDg3MzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6b3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzEwMTYxNjAwMzA0OTMyMjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6e3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk5NzkyMDkyMDQ0MDU0Mjg5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"713eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY4OTU2NTgyMzc0OTA0ODI4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"743eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEyMzUyODUyMzY1MjU0Mzk0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"773eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE4NzM0ODg4NjEwNTMxNDQ1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7a3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE2NjA4MDY3OTk1NjUxNDI0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7d3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYyNzEzMTAxNTMyMDc0NTcxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"803eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjE3NjY4NjM5MDU1NDM5OTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"833eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY4NTc4MzA4NDg0MTI5OTA1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"863eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzE4MTAwNjA2MzE2OTk4NTExMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"893eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ5NTk4MTE2ODAyODY4MzE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8c3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM2ODEwMTU5NjEzOTMzODkzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8f3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjA4MDgxODIwODU4MTc2MDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"923eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5NDIwNTAzMjI3Mzg5Mzg2NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"953eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjcyOTkwMTg5ODEzMTc4MDcwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"983eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzAyODk2OTMyMDIyNDQ1NDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9b3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzA1NzcxNDExNzI4ODUyNjMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9e3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTEzMTA4NDcyODg3NDQ5NTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a13eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjkwNjI3NzAxODY5MDQzOTQxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a43eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzAwMDQyNTg1NTIxMTY5ODcyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a73eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NzY3NTUwODgxOTE0MjgwMjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-11-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"aa3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Njc5Mjg1NjM3Mzc5NzU0NjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ad3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIwNTE0ODE0NTg3MDY5ODYwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b03eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTU2MTE0NzcxMzUwNzU5ODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b33eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzkzNDY3MDAzNTk3ODY1MjQyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b63eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTk5MDk5MTU0NTY0MDcwNDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b93eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzAwNjM4NjY3MjkxNTUzMTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bc3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTU4NjE3MDI4MTIxNzYzNDcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bf3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODY2MzMyOTE3NDMzMjA2MjMzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c23eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTIwOTA3MTY1NTUyNjY3NTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c53eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjExODE1MjIxMzIxOTk0MTU5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c83eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1MjgwMDM3MjQ5OTk1OTMwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cb3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3NjMwNzYzOTk5NDQ0MTg3NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ce3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg2NDExOTY5MjkzMDY3NjQ4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d13eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgwODc5MjIwMjM5NzczODIyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d43eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc0NDk2NDAwNDE3MjI0MDQxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d73eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQ3MzQ2NjUyMTYwNDQwOTE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"da3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDU4NDEwNjg1NzIxMzY3MTE5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dd3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY2MjE2MzAyMzM1NDk4MDQyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e03eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQxOTkxOTUzNDgzMDI5NTQxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e33eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjI2MTMyNjY3MTU1MTMwMTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e63eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTIyNDg0ODAzNTcwMTI4OTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e93eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMwNTc1ODczOTk1NDE0MTUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ec3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjU1NDIzNTcyMjk0NjEzNjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ef3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg2MTI2MTQzNjI0MTI3NTgzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f23eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQzNzA5NzA3OTU0NDY3MjI2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f53eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDcxMDc1NzM3MzM1NTQ0OTg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f83eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIwNjIwODAwMzAxNjI5ODI3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fb3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg5Nzg1MjkwNjMyNDgwMzY2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fe3eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzcwOTE5MjcwOTMxMTYyMDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"013feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTE4MDIyNzMxNjI0MTI1NjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"043feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTU4MDE0ODAzOTAwNTE1ODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2022-12-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"073feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDAwMTk1Nzc4NTkxNTAzMzMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0a3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjY1ODY1NDQ4OTQ2OTUxNDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0d3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY0ODM1ODI3NDU1Mzg2NjU5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"103feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc1MjQwMTcyMDQ5NDEwMzE4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"133feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAxMzIyMDA2MTEwNzkzMjA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"163feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA3NzY0OTE3OTY5MzM1MDEyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"193feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk0NTk3MTU3ODYwODAxNzYyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1c3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODg3MjI0ODc3MDk2MzU0MjUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1f3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY2MzM2NzA2MDYwMDYwMzQ0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"223feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjU3NTEwMTgxNjA2NjA3Nzc5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"253feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDk5MDQwNDEwMzI5Mjg4MTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"283feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTc5NzUzNjU0NzE5MzMyMDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2b3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDI1OTQ5ODA2NjgwODc4MzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2e3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjU4MjUwNTY5NDMyMDMwNzQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"313feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzNTExOTcyNjU4ODAxMjUyNTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"343feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYxNTUzODc0ODk3MzY1OTc2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"373feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjg5ODg0NTAyMTYwOTU5MzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3a3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzE1OTgzMTc0MjYxNzc0NTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3d3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NzMyMzcxNjA4ODY0MDMyNDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"403feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Njc5Njc2NzM4NDc0MTgwMjMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"433feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzgxMjE2MjUxMjAxNjYyOTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"463feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDMxNTAzMzAyNTA2NjM1NDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"493feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NzYwNjIwNDc0NjQ1Nzc4OTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4c3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY3ODQ4MTUyNTA2OTQzNjUxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4f3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTM4MjA1MDg5NjA0NDUzNDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"523feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MTE2OTM2ODgzNDU1NjUzMjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"553feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE5MTcyNjMzNTM1Mjc0MzU5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"583feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzQzMzk1NzU1NDY2NzI4MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5b3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDgyNzE0MDQwOTQzMjk1Mzg5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5e3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDgwMTE5MjQ3NTYyOTk5MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"613feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI3MTA0ODI3MTkzMjY1MDMwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-01-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"643feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzY4Mjg4MTY0ODgwMjAxNjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"673feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzY3NzM2NjMwMzM5NDk2MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6a3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUzODU2ODE3NDg0ODQxNjIzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6d3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzE3MTA2NjkzNjUxMTA3Mzk0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"703feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTk5NzY5Mzk2MDEzNTE0NjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"733feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDU3Mjk1MDQ4ODM1MDg1MzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"763feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODkxMTA0OTI5MjU3NzY5NTEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"793feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTkxNDA0NTgzMTEyMjUxMDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7c3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjU1NjI0NzYxODgwNjI3MTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7f3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY1MzU2ODA0NzQ2NDM2OTE5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"823feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MDU4NDgyNDk3MzcyMjU3NjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"853feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2Nzc3OTU1NjA3Mzc1ODMzOTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"883feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMzM3NzA2NDc4OTI3ODQ2NTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8b3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE2MDAzMzE3MzAwNzI3NjIyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8e3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzgyNTE3MTU1MzQ1NDE4NzMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"913feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM2Nzc4NTQ1MTgwNjEyODkyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"943feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MjI3MzE0NDc0MDAzMjQ2MTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"973feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzAxNjMzNzc2MDYzNDkxNDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9a3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQwNTQ2ODI4MjE4NjY4NjA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9d3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU3NTQwMjM0OTYzMDgyMDI3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a03feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIzOTYyMjUyODM5OTE5NjM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a33feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ4NDQ3ODE1MjA3NDE4ODgxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a63feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5MzI0NzI1NDQ5MTQ2NjA0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a93feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODM5MDgzODgyMTk4NDc3MTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ac3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-22T10:59:51.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDg1MjA0ODQxNjU3NzU1NTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"af3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-22T10:59:51.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjYzOTA2MTYyNDM1Mjc3MDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b23feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-22T10:59:51.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjY3NTE4ODE5MjAzNTc2NDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b53feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-22T10:59:51.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjM1NDg3OTY1NTQzMDgwODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-02-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b83feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-02-22T10:59:51.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgwMzI0ODIxMDQ5NjA4MDk3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bb3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk0MTMyMjI2Mzc2MDQ1MjE1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"be3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDgxNTkwMjIzNTg5Mzc5NzIyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c13feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI4MzIyMDYxNTI3NjQ1MDY3NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c43feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDY1NTk5NzY4ODM4MjA2NDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c73feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkzMjQ4ODk3MTM5MzAxNzA3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ca3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgwNjU5Nzc2NDg1Nzg4NjE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cd3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjU5MDEyMjI0ODUyNTMwODg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d03feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc4NjA0MzU5NTc2ODM3MDM5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d33feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4Mzk4MTk3ODE0Njk3MTgwMjE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d63feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTE5ODk1MzM4MDUyNjAyNDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d93feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkzNTk5MDE5NzIwNzk4OTEyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dc3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDMxNjg5Njk1MDk2MTU1MzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"df3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU1NDg3MzIxODA1Mzc0MTIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e23feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NzE5MDMyNDc1ODQ2MzkzMzIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e53feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTg1NDc3OTc5NjkxNDEzMjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e83feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTkxMzc0OTUzMjEyMzYzNTc4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"eb3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MzAwNTM0NDg5OTQzNDUzMzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ee3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDk4MTgwNDExMTE1MTY1MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f13feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTY3OTU1NjMyODU0MjIxNzQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f43feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Nzk0NzAzNTQyNzkxOTU5NzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f73feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjYyNDUwODM5Nzc2NTY4ODQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fa3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NjYzNDY0NTI1MDcxODc3NDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fd3feac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODQ1ODEyNjQ4MDQ2NTA3NjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDQxNzMzOTk1Mjg5NTY5MTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTg0MjU1NzYyOTA3ODE5NzYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTM4NjM0MzI1MTM3NTAzOTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTc4MjY4NDQzNTU4NDA2MTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0c40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE4ODc3NTU1Njc5MTcwMzg4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0f40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc4NjI2OTQ3MjY4NjI5NTY3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1240eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2Mjg1OTU0NTE4NzE5Mzc1NzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-03-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1540eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg3NDE3MDE1ODk1ODA1NzM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1840eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjM4ODIxMjQ0Nzk2NjUxNzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1b40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjgyNDA4OTU0MTI1NzM2MTkwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1e40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzMxNjc5MDA1MjcxODQ0MDg5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2140eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUwMTYxNDY1MDQ2OTM2MDM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2440eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI2NjcwOTQzNTAxNzc0NTQzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2740eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYzMjI0NzYzMDEzMTM0Nzk3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2a40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDkyMTg0MDc3NjI3NjY4MTY4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2d40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ1MjMzNzY1Mzc4NTU0ODAzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTExNjU1NzgzMjU1MzkyNDE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzAyMDM1MTg2NzI5OTU3MjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE0ODY1MTQwNzI3NTE2OTMyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDcxNzU1MjAyMzIzNDIxNjk4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3c40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkxMzQ3MzM3MDQ3NzI3ODUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3f40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjE2MDc4OTc4NDczNDIwNDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4240eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY0NDgyNDE4Mjg0MTA2MDAzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4540eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTEyNTcxNDc5ODI1NjY5MTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4840eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDcyMzIyMzUxMzc3NjgxNjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4b40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODA5MDk0NjExNTAyNDYzNzUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4e40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDQ5MDQyNDY5ODA4MjE0MTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5140eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQ4Njk3NDMwNzU4MTY0MTA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5440eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjA2OTAxOTExOTYxNzkzMjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5740eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY4MTY5MTM2Mzg1ODg4MzU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5a40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyNTc4MDUyMDcyNzA1OTg3MDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5d40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODI0NDA2Njk4ODM2Mzk5NjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDQ1MjA4OTA4OTk2NTYwNzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTEyNjE2MDE5MDg2NDgyNDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDkyMTU4NDM5OTYzMDA3NTA0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc4MzE1NjM5NzMxNzEwODExMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6c40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzc4MTExNjM5MzYwMzA3OTQyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-04-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6f40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDMyMTMwMTkyMTcxMDQxNDgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7240eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzE0NDE2MzM4NTk1NTE4MzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7540eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM2MDg2MzczODg5ODE0MzMwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7840eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg4NjY2NjgzMDM5NzM2OTY1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7b40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 1,\n            \"pendingGuarantee\": 2,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2023-05-02T06:19:21.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzY0NDIwNDMxOTM1NDc5MDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7e40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzc2NjA1NjMwODE2MzQxNTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8140eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODA0OTk0NjY2NTQ4MzI0ODYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8440eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM2MjE4OTIwMTc1NDQzMDI1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8740eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIwNTA1NTYzNTgyMTkzOTgwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8a40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Njg5NjE1MzE3NTIxMjM3MDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8d40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg0MTI5NjQxNzIyMzAzMDEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODMwMTc1NjA5NTUzNjEwMzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTQ1MTUwNzE0NDEyMzA4NDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk5MTE3NzM0Mzg2NTkxNDc4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDcxNjQ3NjUyNjUxNjMzMTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9c40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MjkyNDQ5ODYyODExNzk0MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9f40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwODM4ODA0ODYwNDc4NDE3OTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a240eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTM0Mjk1NDE4NTQ5NTQyMjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a540eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTc5MTIyNTkxMTQ3MjAzMDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a840eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI5NzA2Mjk0MzAxMTI0Mzk1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ab40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODc0Mzk0NDU1NDM0OTMxMjIyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ae40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDkxNTMxMjQ4OTU5NDQ5NjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b140eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjY1MDM5MDk1MzU0NDA0NDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b440eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODM5MTIzNDYzOTc5NDI1NjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b740eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxMzkxMjkxNTg3NjUxNjAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ba40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQzMDk1MTc2MDk4NjQwNjU2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bd40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTg0NDQzMjI5MTk3OTAzMzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ4MDUyNDU0MzkzNTgwNjQzODE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5NjQ1OTQzNTU5NjM1MTUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODYyOTAyOTQ1NzE0NjAzNDUyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODI5Njk5MDEyMTQ5NjIxMDMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-05-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cc40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQzMzQ0MzEwMjEyNjgwOTMzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cf40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg4MDk1NjcxMDU4MzM5NjAwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d240eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODA3OTM0NTQxMjc4MDQxMzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d540eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDk0OTcyMTAzMTU2MDg1NzE4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d840eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU2MTkzMDQyNTQ0MTYzMDA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"db40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTMyNDIxNTI2MTE5NTQwOTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"de40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODk3NTI0NzU5NDUxNTg4MjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e140eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk5MTExMzMxNzk4NjM2MDA1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e440eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzkzOTI5MjM5NTkyNzAwOTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e740eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY5MDk1MjQzNzkwNTA3OTYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ea40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NzE5NDQ1OTU3NTkwNDc4NDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ed40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTMxNTgzOTI1MDU2MzkwMDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f040eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUyNjU2NzU0NDAwNTcwMjA3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f340eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMDIwMTY2OTk2ODc4OTEwMTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f640eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM4MDM4NDkwNzkxNDU4MTAxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f940eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:15.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODg2NjY5NDY5OTk2OTU4MzIwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fc40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI1NjAxNzU5MTAwOTk1NDE5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ff40eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDY3MDA4OTc2MTM5NTcwMjQ2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzczODQ0NjMzNjU0OTQ1OTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkzMzc0NTE1ODA2NDc3MTAzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzcwNzk1MjY5OTEzNDMyMTU0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0b41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY1MDIyMzY3NTAwMjY2ODA1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0e41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjcwODc4MTIxMjg2NTEzMjMyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1141eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU2ODk0Njc5NzA1Mzg0NzYzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1441eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwNjAzMTkyMDMyMTY1OTQ0OTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1741eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTU0ODM5MjYyNzk2NDMzMTg4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1a41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk2NTI3OTMwMDUzNzE5MDg3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1d41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM5NzI3MDM4MTU2ODQ3Mzg2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2041eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzczMjQzNjUwODM2Mzk3NTczMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2341eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDg3Njg5MDg2NjI2NTM2ODAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-06-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2641eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjY0MDgzMzY5MzU4NDcxNTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2941eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDAzOTI2NTYyNjYwNzY0MTIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2c41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5MTM3ODA5MDIzMDI4ODA2ODE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2f41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4MjA2OTg3MTAwMzQyMzY2MzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk1NjIyNTQzNTMyMTUzODcxNDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1NzQxNzAxNDcyODg4NDc1NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzg0MzkyMjg4NjUzNTA5MzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3b41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzIyMTAyMjc3MDcyMDQwOTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3e41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzQ0MzYzNDI5NDY1MDIzNzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4141eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ4NjMyODc3NTU2ODY4MTMyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4441eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjU0ODgwNjg2MzE3NzU4NzM1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4741eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNjU2MTI1MTU4NDE2ODI5MzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4a41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4Njc1NTg5MjcwNjczNjM1NzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4d41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0MTYwMzg2NzQ0ODQzNzQ3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5041eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEzNjczMjEwMjcyNDY1MzU4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5341eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTM2Nzk1MjIyODkwOTIyODExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5641eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDA3MDg2MzgxNDk4NTYxNjQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5941eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDA5ODk3MjY3ODAzMzAxMjcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5c41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ1MDg5NzIwMzI0NjQzNzU3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5f41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTIwNjA5NDIxMzM1Njc2NDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI2MzY1ODI4NzQ0ODk3OTIzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAyMjIzMzk2MTUxNDA1MTY2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI4NzQ1OTgxNTI2MTQyODA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6b41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTgyNTM2NDg2NzU2MjY4MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6e41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDA4ODMxMjY2MTY3ODQzMzk0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7141eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyNzI5NDAyMzY3NDIyMjUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7441eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMDI4NDUzOTM5MTA3OTQ0ODE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7741eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDY0NzI3NjA3NjA1NDU2ODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7a41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQwNjQ3NDY4MDU3OTE3MDU0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7d41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDc3ODIwMTEyODcwMjY1MzcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8041eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjUyNDM3NDIxODY4NzI5OTU5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-07-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8341eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MzEyNTk5MzM5MDAxODAzMDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8641eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwODczMDEyMTkwMTQ5NzI0OTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8941eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODcxNzczNTE3MTc2NDA1MDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8c41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDYwMTA3NzIzMTE5MDc4NzUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8f41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAwMzg4ODU3MzQ3ODU5MjE0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY2MTgxMjE4MDgyOTkzNDM2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU4MzcxNjI0MjA1OTQxMjU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE3Nzg5NTQ5ODE0MzAwNDAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9b41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzYyNzIwMDk1ODkzOTIzNDkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9e41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgzNTI2NjU3MzI3MjMxMjU2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a141eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTQzNzAwNjYwMzYzMDc0NTkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a441eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODY3Mjk4MDMzMjY1Mzc5ODUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a741eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjIwNjgxNDEzNjE0NjQ4MTIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"aa41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjI0NzQxNTg1NzY0NDMxNzUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ad41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI3NjM5MjI2NTkwMzg5MjY2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b041eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTg4MzM1OTYxMTg2NDA4OTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b341eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc1NTYxNzk2OTA5MzI5ODk2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b641eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUxOTQxOTAwOTI4MDgyMjMwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b941eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc2ODI5NDk4MDY5NTU4ODE3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bc41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc5MzMwMDc5OTQ3Mzg1NjEyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bf41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzIxNzA2MDIxMDEwMDU5MjU1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIyODkyOTUyNjE2OTczMjgyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM0MTQ0MDExNTEyNDc3OTAxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODkxMzg1MDMzOTI3NTU4MDkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cb41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI3NjQ0MTE5MDYxMTIxMjA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ce41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE5NzMzOTg5OTY3MTk0MzA1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d141eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMyMTk1NzM0NTAzMjM5MDg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d441eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcxMDc5MjY4ODExOTYwOTgzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d741eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDM0NTc1ODg3Mjg0NDgzOTcwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"da41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ1MjAzNjYzNjE0MDE3OTIwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dd41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTY5MTE1NzMyNDc5MDMzMzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-08-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e041eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzQ4MDU2NDY2MTQ3Mjc1MTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e341eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4OTUwODY3MzUyNDUyMDE0NzMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e641eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjY2Mjg2OTcyNTEzMTUzODgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e941eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA3MzEzOTk3ODY3NDY3Njg3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ec41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE2MDU2Njg3NTg4NTkzMzE3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ef41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NTgyNzUwMjI0OTA1MDYxMjgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f241eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzMDI0Nzc2OTEyMTEwNDA3NTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f541eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE2OTM2Njg5Mzc2NTg1MTQyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f841eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDYzMzI0MzAwNDk0NTQ3NTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fb41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc2MTc3MjMxOTcyOTk5NTE2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fe41eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY3MjYzNDE5NDc2MTkyMzQ2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODUwMzUyMzg3NzYyMjg2OTE3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg1OTcyOTcyNzczMTI3NzI4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY3Mzk2MjEyMjU1NzY5NDUxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0a42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTkwODY5NzQ2MDE4MTI1OTEwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0d42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTQ3MDY0MTY3NDcwMDcyOTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1042eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODI2Mzk5Mzg1NTQ2NDg2MzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1342eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxODI1MTYwNzEyNTczMTY2NTAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1642eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwNDMyNjM3ODA2Mjk1Nzg0NTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1942eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTM2OTAzMDQ0MDE0NzgxNDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1c42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTE1ODQzNzc3NjgzMDIzMTUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1f42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMwODQ1NTI5MDI1MjIzNjM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2242eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjczOTg3NzM4MTQ4ODQ0NjgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2542eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzk2MzExMDY4NzExODk0MzY3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2842eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc2MDAzNzcwOTM0MTAwNTU0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2b42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDY4NDcxNzk2NDMxNzY3NTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2e42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjkzNjgzMjY1MTIwMzE1MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA2NDM2NTc5NTU5MDc4OTIzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYxMjY5MjQxMjEyOTYyNTY5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjM0MTE5NDkyOTU2MTc5NDQ0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-09-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3a42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NzI3NDcwNjc5OTM3NzQwNjMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3d42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQxODQ3OTM5Nzg2NzQzMDAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4042eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDIzMDM5MjY3MzU4NzYxNDEzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4342eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjMzMDEyMTMwMDk5NzkwNTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4642eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQyNTQ2MTM2MTMzNjA5OTE4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4942eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTc5NTQ1MTMyNDg2OTQ2NDczMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4c42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODQ1MzM4MDA2NTY0ODMyMjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4f42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Mjk2Nzk3MjU2OTExNzI5OTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5242eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDI1MTAwNjc2NDgyMzM5NzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5542eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0NDU3MzMzNjQxMzQ1NjEwMTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5842eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTUzMzM4ODA4NTU5NzQzNzExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5b42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4ODU4NTY1MDMyNjI0NzExODE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"5e42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2ODgyNTQyODc5MTg4Njg1NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYwMjU3NjYzNjM1MjQ1MzAwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTI5NTA2NTg1MTMzMDkxNTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDY0NTAzMTg5NDIwNjUzNTQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6a42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODgyMTI4MzE4NzEzNjA3MzIwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"6d42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDA4MjEzNTkwOTc1NzQwMjkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7042eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDc3ODY1ODI3MjA3OTAxMjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7342eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjkyNjE5MDgyNzExNzAzOTMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7642eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTU1NjkxNDY4OTY2ODMxNTYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7942eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODY3MDUxNDk1NDU0NDk2MTI3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7c42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg0OTgxOTc1MzA1OTA0MjUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"7f42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU1MDQ0MTA4NjY3NzkwNjk2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8242eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDM5MDUyNzY4NTQ5NDQwODMxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8542eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM5MDIzMjczMTEwNjY4ODYyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8842eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU3MTE2NzgyNDg1MTYyNzkzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8b42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjA5OTU3NzU3MDU0ODUzMzIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"8e42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDM0MTAwNjg4Mjc2ODM0ODcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcyNTA2MDEzMjIwODgxODIxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM3NDI5NDA1NzQ3OTA3MjA4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-10-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Njg5NTEyNjAyMDYwNTkzNzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9a42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTMyNzUyNTkxODYxNjI1MjYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"9d42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcyMzg3MDg4MTQ5ODY4NjE3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a042eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MjM2ODY0MTAxMDAzNTY0MDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a342eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDA5MTk0NTMyNzM4NjMxNDkwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a642eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzQxMDUyMjYzODAxMDI3MDExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"a942eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzU3MTA3MzEyNDQ0NDE4ODAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ac42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgyMDI3Nzk2Njk5MDQzMzMxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"af42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxNTU1MTYzMjQwODkxMTk4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b242eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MTE0NzM4ODMxMjA0MjA5MDUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b542eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzgwMTY4MzA5Nzg2NTYzMzY3MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"b842eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTk2OTExODc4MTcxNTg2NzQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"bb42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg0NDQ1MjQzNDkwMDIxNzA5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"be42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ5Njc4Njc0MzkyNjEwMzYwMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODI5MzA0NDM4NjI4ODMxMDcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjcwNTk4MzA0MDQ0ODEwMzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"c742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTkzMzQwNDI4NjgyNjU4MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ca42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODUxMzkwMzI3OTQ2MzQ0NTE5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"cd42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzY2NjY0MzIyOTQ5OTMyMDIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d042eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE4Mzc2OTg5MjM4NTkyMDI5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d342eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODUwOTM5MDM1MDkxMzk5NzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d642eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTg1OTYxNjg3ODgyMTY4MDUxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"d942eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU4MTQwMjg4NTQ0ODM0MDMzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"dc42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDk0Mzk2MTA0OTUzMjE4MjAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"df42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExNTk0NjcwNDA2OTk5OTMzNTE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e242eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjQwNDU4ODkzMjI2MTQ3MzgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e542eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDAyMzExODE3NDkwMzE4NTI1MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"e842eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTQ5ODk2NTA0NDAzMjU1NDQxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"eb42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwODQ5ODA1NzIxODk5ODgwMDYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"ee42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjcxOTcwMjA1NDc4OTIzNjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-11-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f142eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQyNDI2NTk1OTg4NzY5MTQ4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-01\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f442eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMxMzA3MDg4MzQxMjU3ODMxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-02\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"f742eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDQyODc1MTkzOTg0MzM2MTgxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-03\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fa42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTMxNTU2NDA4OTQ5OTk4MDI5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-04\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"fd42eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ0NDkxMjMwOTQyMzk5NjkxMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-05\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0043eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAxNzI1NDU4Njg4OTU0ODA2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-06\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0343eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NjY0NjM3MzM1MzcyMTYxNjExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-07\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0643eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODEzNjQyMTcxNjkxMTk1Mjc2MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-08\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0943eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDQ2MjQwMzYzMjM1ODY5NTExOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-09\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0c43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTUwOTQxMTAxNzc4MTg4NDAyMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-10\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"0f43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM3NzIyNjI2MTQ1MTc0Mzg0MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-11\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1243eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkzNTc2MjUxODIwNzcxNDE5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-12\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1543eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTI2ODI1Mjg0NTA5MTc0NjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-13\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1843eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjA3NjkwMTQ4MTc5Nzg2ODkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-14\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1b43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTkxNDY1MjIxNzA4MzQ0NzYxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-15\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"1e43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzUyMDUyMTQ2MjQ1NjY1NTU5MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-16\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2143eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDAyMDkwNjY4OTg1NDQyMjkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-17\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2443eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUwMjczMzU5MjM2MjA5NDg4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-18\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2743eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0NzUzODQ2NjM4MzM1NTk2MzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-19\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2a43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzU0NjUxNDE1MDgxNTQ2NjIxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-20\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"2d43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY0ODMzODE4OTk3OTk3MTUzMTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-21\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3043eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3OTYyNzc5MjEwNDIyNzY2MDE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-22\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3343eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4MDMxMzU2MzcyNzIzNjY4MjE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-23\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3743eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjI3MjM1NTE3MzYyMjI1MTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-24\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3a43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjgwODEyNzI0Mjk4ODc2MDAxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-25\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"3d43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5NjU0MDUxODQzNzkxMzk0NzE7MDA7Jw==\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-26\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4043eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE1NTE1MTM4MzU1ODA4ODM4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-27\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4343eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDQ2MzcyOTc4NzI4MDE1ODUxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-28\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4643eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjc0MzY4MTY1MjI0MTg0NzkxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-29\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4943eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU1MzIzOTQ2NDI2NTg4Njk4MTswMDsn\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-30\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4c43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzU1MzM1OTU5NTczMDYxMTcxOzAwOyc=\\\"\",\n            \"guaranteeEntryDate\": \"2023-12-31\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentRoomType\": \"DBL\",\n            \"systemId\": \"4f43eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"realRoomType\": \"DBL\",\n            \"bookings\": 0,\n            \"pendingGuarantee\": 3,\n            \"pendingForecast\": 0,\n            \"udsGuarantee\": 3,\n            \"udsForecast\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"totalPax\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:16.753Z\"\n        }\n    ]\n}"},{"id":"5e95a0ca-8095-4aeb-816d-f172fc25bc1f","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/guarantees/v1.0/companies(< company ID >)/guaranteeEntries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"3c95757d-2212-4613-99cf-689150406d5a","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/guarantees/v1.0/companies(< company ID >)/guaranteeEntries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_DataNotFoundFilter\",\n        \"message\": \"The company <name> does not exist.  CorrelationId:  31115690-7eb7-4502-b6d1-f6893e92b29c.\"\n    }\n}"}],"_postman_id":"220dba5c-f5f3-4c77-bb39-afcb15137327"},{"name":"plannings","id":"0cdc7848-3ba9-4980-90bc-e60c35f72e53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"password","value":"<password>"},{"key":"username","value":"<username>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"tokenName","value":"<token-name>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/plannings","description":"<p>System table: Planning HTL<br />Page in Business Central: Planning HTL</p>\n<p>Return the list of plannings.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>planningDate</td>\n<td>Date</td>\n<td>Specifies the datewhich the occupation values shown in the planning correspond.</td>\n</tr>\n<tr>\n<td>capacity</td>\n<td>Decimal</td>\n<td>Specifies the official capacity of the hotel defined in the hotel capacities. This may differ from the actual capacity in the case of rooms communicated or used by staff.</td>\n</tr>\n<tr>\n<td>capacityPax</td>\n<td>Decimal</td>\n<td>Specifies the official capacity in hotel people defined in the hotel capacities. This may differ from the actual capacity in the case of rooms communicated or used by staff.</td>\n</tr>\n<tr>\n<td>bookingsBookedRoom</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings postered for the day according to the booked room. The bookings will be included tentatively or not depending on the parameterization of the planning (See Include tentative).</td>\n</tr>\n<tr>\n<td>bookingsBookedExclPlanning</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings postered for the day in rooms excluded from the planning. Usually these are rooms used by internal staff or bookings made to rooms communicated in the case of the main NO room.</td>\n</tr>\n<tr>\n<td>bookingsAssignedRoom</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings postered for the day according to the assigned room. The bookings will be included tentatively or not depending on the parameterization of the planning (See Include tentative).</td>\n</tr>\n<tr>\n<td>bookingsAssigExclPlanning</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings postered for the day in rooms excluded from the planning. Usually these are rooms used by internal staff or bookings made to rooms communicated in the case of the main NO room.</td>\n</tr>\n<tr>\n<td>bookingGroups</td>\n<td>Decimal</td>\n<td>Datas to include/exclude</td>\n</tr>\n<tr>\n<td>guarantee</td>\n<td>Decimal</td>\n<td>Specifies the rooms in guarantees planned for the day.</td>\n</tr>\n<tr>\n<td>pendingGuarantee</td>\n<td>Decimal</td>\n<td>Specifies the rooms in guarantees not covered for the day.</td>\n</tr>\n<tr>\n<td>arrivals</td>\n<td>Decimal</td>\n<td>Specifies the arrivals of the day.</td>\n</tr>\n<tr>\n<td>departures</td>\n<td>Decimal</td>\n<td>Specifies the day checkout.</td>\n</tr>\n<tr>\n<td>detours</td>\n<td>Decimal</td>\n<td>Specifies the detours of the day.</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Specifies the total number of adults in the hotel for the day.</td>\n</tr>\n<tr>\n<td>adultsExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the total number of adults in extra beds based on the maximum capacity of the room in the hotel for the day.</td>\n</tr>\n<tr>\n<td>totalChildren</td>\n<td>Decimal</td>\n<td>Specifies the total number of children in the hotel for the day.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the total number of babies in the hotel for the day.</td>\n</tr>\n<tr>\n<td>lateCheckIn</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings for the day in the ''Late Check-in'' state. Bookings whose entry has been made after the date of arrival initially planned.</td>\n</tr>\n<tr>\n<td>pax</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying staying at the hotel for the day.</td>\n</tr>\n<tr>\n<td>paxExclBabies</td>\n<td>Decimal</td>\n<td>Specifies the total of people excluded babies.</td>\n</tr>\n<tr>\n<td>paxExclBabiesHD</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying excluded from babies in the Room and Breakfast board basis.</td>\n</tr>\n<tr>\n<td>paxExclBabiesMP</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying excluded from babies on a Half Board basis.</td>\n</tr>\n<tr>\n<td>paxExclBabiesPC</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying excluded from babies under full board basis.</td>\n</tr>\n<tr>\n<td>paxExclBabiesSS</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying excluded from babies in the Only accommodation board basis.</td>\n</tr>\n<tr>\n<td>paxExclBabiesTI</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying excluded babies from the All Inclusive board basis.</td>\n</tr>\n<tr>\n<td>paxExtraBookedRoom</td>\n<td>Decimal</td>\n<td>Specifies to total amount of extra people in the hotel for the day.</td>\n</tr>\n<tr>\n<td>paxHD</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying in the Room and Breakfast board basis.</td>\n</tr>\n<tr>\n<td>paxMP</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying on a Half Board basis.</td>\n</tr>\n<tr>\n<td>paxPC</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying in full board basis.</td>\n</tr>\n<tr>\n<td>paxSS</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying in the Only accommodation board basis.</td>\n</tr>\n<tr>\n<td>paxTI</td>\n<td>Decimal</td>\n<td>Specifies the total number of people staying on All Inclusive board basis.</td>\n</tr>\n<tr>\n<td>blocked</td>\n<td>Decimal</td>\n<td>Specifies the number of locked rooms. Room locked excluded planning not included en Locked rooms.</td>\n</tr>\n<tr>\n<td>allotmentFilter</td>\n<td>Code[100]</td>\n<td>Allows indicate allotments to be deducted from the sum of entries.</td>\n</tr>\n<tr>\n<td>boardBasisFilter</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>customerFilter</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>roomClassFilter</td>\n<td>Option</td>\n<td></td>\n</tr>\n<tr>\n<td>roomTypeFilter</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>statusFilter</td>\n<td>Enum</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","plannings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"512e6899-07d5-4faa-80b8-d9d7d5a742e1","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/plannings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"1e82b53d-65ca-eeb9-405d-470c74c886e7"},{"key":"mise-correlation-id","value":"cff65018-756d-48ad-8a95-266fbb57850c"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9f8c1394-7d67-4ece-bcf6-4e581970802f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:03:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/plannings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4NzQxMjM4Mjg2NTY1NDg3OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-08-31\",\n            \"systemId\": \"80c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDgyODIzMzQyNjgzMjI3Nzg0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-01\",\n            \"systemId\": \"88c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc5ODE0NzQzODgyMDkyNDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-02\",\n            \"systemId\": \"90c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQyNDU5MjczNjAyMzIzNDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-03\",\n            \"systemId\": \"98c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzE3NzY4NjYwNTA5NDAxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-04\",\n            \"systemId\": \"a0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc2MTYyMDQ3MTc4OTgwMjY5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-05\",\n            \"systemId\": \"a8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzg0NzYyNDIwNzMwMjc3OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-06\",\n            \"systemId\": \"b0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzc3MDg0MjMxNzI5ODkyMDk1MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-07\",\n            \"systemId\": \"b8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMDU4MjE4MDI5Mzg0MTk2MDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-09-08\",\n            \"systemId\": \"c0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjE1ODA3NzA3MTgyNDQxNzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-09\",\n            \"systemId\": \"c8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDg1OTc0MjY4MTI0NDQwMTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-10\",\n            \"systemId\": \"d0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NjkwODMwNTcyNTgxODU5ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-11\",\n            \"systemId\": \"d8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjQ0MDkyMDA4MTg0MDQ1NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-12\",\n            \"systemId\": \"e0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEyNTg5MzgxOTY0MDcyNDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-13\",\n            \"systemId\": \"e8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTE3NzA0Mzk0OTIyOTcwOTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-14\",\n            \"systemId\": \"f0c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzMTM1ODkxNTM5MjE0OTU5MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-09-15\",\n            \"systemId\": \"f8c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc5NTI2Mzg4MTU4NDU2MTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-16\",\n            \"systemId\": \"00c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQwNDIzMTg3NTM1NjM1NzcxMTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-17\",\n            \"systemId\": \"08c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzQ2MTM3NzA2Njk2NDk1MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-18\",\n            \"systemId\": \"10c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDM5NjA5NDg5MTM2NDk1NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-19\",\n            \"systemId\": \"18c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE5NzI4Njc5MTU0NTE2MTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-20\",\n            \"systemId\": \"20c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDc4MTkwNTYzMzEzOTQyNTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-21\",\n            \"systemId\": \"28c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDQ4MTA0NTc1MzAyNTg5MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-22\",\n            \"systemId\": \"30c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDM0NDQ5NTQ2MzEzNjk4NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-23\",\n            \"systemId\": \"38c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTE3NDcwOTU2MDk5ODIzNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-24\",\n            \"systemId\": \"40c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTM3ODUzODUxODYyNDk3MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-25\",\n            \"systemId\": \"48c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDM3NzAzNzI0NDk1NzIxNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-26\",\n            \"systemId\": \"50c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTczMDMyNDIzODk1NDQ1MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-09-27\",\n            \"systemId\": \"58c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTExMDE0OTA3NjA5MTMwODc5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-28\",\n            \"systemId\": \"60c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3NzI4OTQwODc5OTIzNDgyNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-09-29\",\n            \"systemId\": \"68c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzY1MzE3MDU0Nzc1OTYwNjI2MTswMDsn\\\"\",\n            \"planningDate\": \"2021-09-30\",\n            \"systemId\": \"70c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk4OTEzNDE3NzcwODU1NzcxMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-01\",\n            \"systemId\": \"78c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDcyODUzMjQ3MjcxNzA2OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-02\",\n            \"systemId\": \"80c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA3MDg4Nzg2OTAwMjU0NjM3MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-03\",\n            \"systemId\": \"88c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjg1MTA4ODA4MzMyNjI5NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-04\",\n            \"systemId\": \"90c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDA4Mzc1NTI3NTcwMTE0NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-05\",\n            \"systemId\": \"98c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA2MDY4MTc3MjQ0MzM5NDk3MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-06\",\n            \"systemId\": \"a0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDc3ODgxNTE5OTkyNjg0MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-07\",\n            \"systemId\": \"a8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDM0NDMyOTI2NjA5MzYyODExMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-08\",\n            \"systemId\": \"b0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjEwNDYxOTM1MjQyNjg0NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-09\",\n            \"systemId\": \"b8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYyODgxNDcwNTAzODg4NTg5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-10\",\n            \"systemId\": \"c0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzU1MDczNjYzMTI0NDg5NTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-11\",\n            \"systemId\": \"c8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTc3NzUxODIwODk4ODMyNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-12\",\n            \"systemId\": \"d0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzY5OTQ0ODkzMDQyOTI1NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-13\",\n            \"systemId\": \"d8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODc5MTUzMjczODM0MzA2NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-14\",\n            \"systemId\": \"e0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTQ0MDM1MzAwODgyOTYyMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-15\",\n            \"systemId\": \"e8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDA3NTQzNjg3ODEwODg4NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-16\",\n            \"systemId\": \"f0c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODc0NzkyOTIzMzIwMzU4NjIyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-17\",\n            \"systemId\": \"f8c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzMxNjc1MTY1OTUzNjY0NTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-18\",\n            \"systemId\": \"00c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTk5NjYzMjY0NjcyNjAxOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-19\",\n            \"systemId\": \"08c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Nzg0ODc0ODkzMTczMjA3NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-20\",\n            \"systemId\": \"10c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTIwODM4NTIzMTIyMTU5MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-21\",\n            \"systemId\": \"18c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDcwODAzMDg3NjM3OTcwNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-22\",\n            \"systemId\": \"20c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk0NzQyMjA5NDkwMTQyNDIxMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-23\",\n            \"systemId\": \"28c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDU1NjczNDAyMTU1Njk5MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-24\",\n            \"systemId\": \"30c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MjMxMDY5NTg4NTUxNjU3MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-25\",\n            \"systemId\": \"38c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTkxODI2MTkzNjcwNjQ5NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-26\",\n            \"systemId\": \"40c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODk5NzA3NTk3MDkyODUxMzY5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-27\",\n            \"systemId\": \"48c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDg3NjgyOTA4NjM4MzY2MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-28\",\n            \"systemId\": \"50c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDA3MjgxMTM3NDM1NzQxMjYwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-29\",\n            \"systemId\": \"58c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NjEzNTY4ODkyMzU4MDU1NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-10-30\",\n            \"systemId\": \"60c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI5NzU3NDQ0NjQ1MzYzMzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2021-10-31\",\n            \"systemId\": \"68c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDQ0NDk0MjUyOTQ5OTQ2NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-01\",\n            \"systemId\": \"70c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkyOTEzNDczNzU5NDc1MjMyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-02\",\n            \"systemId\": \"78c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTQxNzcyMjA0MjU3NjA1ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-03\",\n            \"systemId\": \"80c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODkwMTg1NjgyNTgxMjE2NzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-04\",\n            \"systemId\": \"88c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzIwOTQyMjg0NDc4MzU4NTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-05\",\n            \"systemId\": \"90c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzIwNTIyNzk2OTgyMzY1NDc3MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-06\",\n            \"systemId\": \"98c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU4MzUxMzI1MjYyMzYyMTkwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-07\",\n            \"systemId\": \"a0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzY4NDg4ODQ3Njk0NjI2Njc5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-08\",\n            \"systemId\": \"a8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1OTkyNTA0ODUzNjUxMzE0MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-09\",\n            \"systemId\": \"b0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjY3NzE1MjgxODM1NDg4NzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-10\",\n            \"systemId\": \"b8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODkyNjQ4Mjc2NjA5NDg3MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-11\",\n            \"systemId\": \"c0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA4NzEwODYwODYxODA4MTU2MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-12\",\n            \"systemId\": \"c8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjA1NTE0NDMwNTcyMzk4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-13\",\n            \"systemId\": \"d0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgxMjA1MzE3OTQxNjY5MjMwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-14\",\n            \"systemId\": \"d8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE3NjE1ODk5NTIzNDQ2NDIzMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-15\",\n            \"systemId\": \"e0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTU4MzQ4MTAxNzgwNDkzMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-16\",\n            \"systemId\": \"e8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTA5NTg3NzQ1MDc4MTczMjU4MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-17\",\n            \"systemId\": \"f0c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4Njc1ODU3ODE0ODY5MTEwNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-11-18\",\n            \"systemId\": \"f8c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc1MjA5OTE4MjMzODEwMzgwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-19\",\n            \"systemId\": \"00c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAzNzk1MDE0NjY0NzA3ODI5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-20\",\n            \"systemId\": \"08c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEzODk4NjI5ODM3NDMyODYyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-21\",\n            \"systemId\": \"10c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDE1MTk3NzM0ODI1NTIyODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-22\",\n            \"systemId\": \"18c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODgzMjkxNTU3NDA3MjQ5NjY1MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-23\",\n            \"systemId\": \"20c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA2MzMwOTEwNDczODg3Mjc0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-24\",\n            \"systemId\": \"28c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjYyOTUxMDQ0MjkzNTI3ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-25\",\n            \"systemId\": \"30c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjAxODQ4MTI2NzAzNDQ0MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-26\",\n            \"systemId\": \"38c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTgwMTMzNDA5NTAzNDExNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-27\",\n            \"systemId\": \"40c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzg2ODY1NzQzMDMyMDA0MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-28\",\n            \"systemId\": \"48c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg2MzU2NzkxMzA3NzAxNzA0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-11-29\",\n            \"systemId\": \"50c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MzkxMDIwODgxNzM5MTEwNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-11-30\",\n            \"systemId\": \"58c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjA1Nzk5MzYxODEzMDY2OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-01\",\n            \"systemId\": \"60c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzUxMjgyNTc1OTEyODMzMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-02\",\n            \"systemId\": \"68c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDI4NjE5Njc2NTA3MDczNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-03\",\n            \"systemId\": \"70c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgxMDEyMzQ5NDc3MDI0NTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-04\",\n            \"systemId\": \"78c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzQxNTI0ODQzODMyNzYxMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-05\",\n            \"systemId\": \"80c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA5MDY4NDMyODI0NjI0NzkyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-06\",\n            \"systemId\": \"88c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjUwMDQ3MDQxMzMxNjQyMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-07\",\n            \"systemId\": \"90c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ4MDQ0MDU3MTk5ODAxODM0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-08\",\n            \"systemId\": \"98c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYyNDk3MzAwMDAyMDY0MzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-09\",\n            \"systemId\": \"a0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDk3OTE3ODA4MzE3ODI0NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-10\",\n            \"systemId\": \"a8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTk4OTUzOTYwMDQ1MDc1MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-11\",\n            \"systemId\": \"b0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDg4NjE4NTE5MDczMTgxNTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-12\",\n            \"systemId\": \"b8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg5NjE4MTg0MzYyMDExMzIwMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-13\",\n            \"systemId\": \"c0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQyNjc3NTcyODI1NTQzNjQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-14\",\n            \"systemId\": \"c8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDE2MjYzMTUzMTEwMDQ5MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-15\",\n            \"systemId\": \"d0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODAzNTk1MzYxNDY3OTk1MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-16\",\n            \"systemId\": \"d8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDE2Mjg5ODA0OTcxMDc0MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-17\",\n            \"systemId\": \"e0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzU4MDMxNDY3MjgxMTcwMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-18\",\n            \"systemId\": \"e8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2OTk5MzcyOTg2MjEzMDc1MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-12-19\",\n            \"systemId\": \"f0c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjg3OTIwNjcyNTczMDcyNzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-20\",\n            \"systemId\": \"f8c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzIwNDAxNzAyMTcxNTg3NTIxMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-21\",\n            \"systemId\": \"00c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg2NTczMzA0NjA4OTgwMjAyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-22\",\n            \"systemId\": \"08c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTYzMTA4NjUyMjc1ODY0MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-23\",\n            \"systemId\": \"10c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTIxNTg1MDU0MjYzNzk5MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-24\",\n            \"systemId\": \"18c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTIzMzcwMzQ2NDQ5NTg2NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-25\",\n            \"systemId\": \"20c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc2MjY5NjI1OTkyNDAxNzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-26\",\n            \"systemId\": \"28c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU3OTI1Nzk4Mzg4NjY5NTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-27\",\n            \"systemId\": \"30c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxNzE2ODc4NjA5NTE3MDk5MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-12-28\",\n            \"systemId\": \"38c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI5NzkyODgxMjA3OTM2MDU5MTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-29\",\n            \"systemId\": \"40c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzkxMzQ4NzM3Nzg3NDAwODUyMTswMDsn\\\"\",\n            \"planningDate\": \"2021-12-30\",\n            \"systemId\": \"48c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDAxNzgxMTg1Nzg0OTQzOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2021-12-31\",\n            \"systemId\": \"50c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE3NzU0ODQ3NzE2ODM2Mzg3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-01\",\n            \"systemId\": \"58c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA2MDU2OTg4Njk1NDQ4OTA4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-02\",\n            \"systemId\": \"60c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDI0OTg2NjY3MTIyNzM3ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-03\",\n            \"systemId\": \"68c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU3MjY4NDE4NDI0OTEwMzM1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-04\",\n            \"systemId\": \"70c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjU2NTA0NjkzNjE0NDk3NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-05\",\n            \"systemId\": \"78c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUxNDA3MDEyNTMzMzg4MzY5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-06\",\n            \"systemId\": \"80c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDQ3NTAyNjgzMTU3MzMzNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-07\",\n            \"systemId\": \"88c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODUzNDY2NzAyNjcxMTA1OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-08\",\n            \"systemId\": \"90c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTQwOTYxNDExMDAyNzcyMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-09\",\n            \"systemId\": \"98c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjgwOTk3NzQyNjM1MjQ0NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-10\",\n            \"systemId\": \"a0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM0MDg2ODM1Njc5NTc3NTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-11\",\n            \"systemId\": \"a8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTYwNDMxMDk5NzY1NzQ5MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-12\",\n            \"systemId\": \"b0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI4Nzk5MzI5NTA5MzY0OTc3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-13\",\n            \"systemId\": \"b8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA4OTc3ODU4NzI3OTQzNzA2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-14\",\n            \"systemId\": \"c0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk1MjEyOTU0MjIwMjU5MTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-15\",\n            \"systemId\": \"c8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjE3OTUwMzI2Mzk5NTUzMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-16\",\n            \"systemId\": \"d0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMjg3OTc1NDU1MjYwMTI1ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-17\",\n            \"systemId\": \"d8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTkyMDQwNzM0MjM5NTg5OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-18\",\n            \"systemId\": \"e0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTQwMzYyNjIxNTI3NDgyODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-19\",\n            \"systemId\": \"e8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Nzc2OTIzNDMyNjA4NTEwMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-20\",\n            \"systemId\": \"f0c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExODY2NTA5NDkxODYwNjAyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-21\",\n            \"systemId\": \"f8c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODYwMzYwNjc5NjgzNTcxMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-22\",\n            \"systemId\": \"00c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTExOTIyMTg5MzU3NDU1ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-23\",\n            \"systemId\": \"08c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTExMTc0OTE3MzY0MjI5NDYyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-24\",\n            \"systemId\": \"10c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTc2MDA4NDY4NTkwOTcxOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-25\",\n            \"systemId\": \"18c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU3MTIxMzUzNTc5ODk2MjE2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-26\",\n            \"systemId\": \"20c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3NTczMTQwMzE5NTgwMzMyOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-01-27\",\n            \"systemId\": \"28c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODAyNzMxNTYyMjkwNzIyMDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-01-28\",\n            \"systemId\": \"30c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM3MTg2NjI3MTUyNDA5NTA4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-29\",\n            \"systemId\": \"38c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ1NTUyMjYxMTg1OTQ0NzgxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-30\",\n            \"systemId\": \"40c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEwNzA4NDEyMTUzMzMzMjM4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-01-31\",\n            \"systemId\": \"48c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE0NDA1NDc4NDE0MDEyMTkxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-01\",\n            \"systemId\": \"50c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA1NDIwOTA1OTgzMTIwNzEyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-02\",\n            \"systemId\": \"58c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUxMjM3NDM0MzMxNDExNDEwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-03\",\n            \"systemId\": \"60c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzA1NDM5MTUwOTI4MzU1NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-04\",\n            \"systemId\": \"68c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDEzNDkxNDE2NDM1NDQxMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-05\",\n            \"systemId\": \"70c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzNDQ2NjI2MDgyODAyOTkzMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-02-06\",\n            \"systemId\": \"78c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDA5NDQzMTk1NTI2NzA5OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-07\",\n            \"systemId\": \"80c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjI3MDUxMjMwMTIzNTE1NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-08\",\n            \"systemId\": \"88c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU5MTIzMjY0Mjg1NTg2NjMzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-09\",\n            \"systemId\": \"90c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDQ2Mjk4MjEwNzk0NTI0MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-10\",\n            \"systemId\": \"98c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEzMjg5MzkxMDMwMjg5NDM1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-11\",\n            \"systemId\": \"a0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzI1MzIzNzg3MzY3OTA4NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-12\",\n            \"systemId\": \"a8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTMzNTMwNTI4NjM1Mjc4OTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-13\",\n            \"systemId\": \"b0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEwNDAzNjExMjI4NDc5MzgyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-14\",\n            \"systemId\": \"b8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg2MjQ0NzQ3NDQ0NjQyNjQwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-15\",\n            \"systemId\": \"c0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3Nzk1ODgwMDMyMjY5ODc2NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-16\",\n            \"systemId\": \"c8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3Mjc2MzEzNDg5MDk5NzE1NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-02-17\",\n            \"systemId\": \"d0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDczNzkyNzM0ODk2ODM3MDUxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-18\",\n            \"systemId\": \"d8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEyMzIyODc0NTU0ODE3MjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-19\",\n            \"systemId\": \"e0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI3NDQ4OTk5MjAwOTA4MzAxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-20\",\n            \"systemId\": \"e8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDk3MjA5NzA1NTcyNjA0MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-21\",\n            \"systemId\": \"f0c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTQxMTgyMTc3MzgzMTIzMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-22\",\n            \"systemId\": \"f8c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODI5NDM3MTMwMDIzOTg2MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-23\",\n            \"systemId\": \"00ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM1NTY1NDUzMjMyMDQxMTU0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-24\",\n            \"systemId\": \"08ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDk4MTk1Mjk0MjA5Nzc2NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-25\",\n            \"systemId\": \"10ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTUxNjA1NjE5NTI3NjkwOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-26\",\n            \"systemId\": \"18ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjAwMjUxMzE4ODU5NzgzMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-02-27\",\n            \"systemId\": \"20ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkyNzgxMzUxNDE4NzY4Mzc1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-02-28\",\n            \"systemId\": \"28ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc3ODMyODcxMzIyNzQ0MDk2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-01\",\n            \"systemId\": \"30ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTgxNTQ4MDM1NTQxNzI0ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-02\",\n            \"systemId\": \"38ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNDkyNDY3MzgxOTI0ODQ5NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-03\",\n            \"systemId\": \"40ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxNTQxODM0MDYyOTg3NzY0MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-03-04\",\n            \"systemId\": \"48ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzAxODgwOTIzNDI1MTQxOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-05\",\n            \"systemId\": \"50ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTY4OTY2NjkzMTEyNjk2OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-06\",\n            \"systemId\": \"58ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjgxMTUyNTc4Njc3MjUyMDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-07\",\n            \"systemId\": \"60ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Mzc1ODQwODY2NDA5MzE1MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-08\",\n            \"systemId\": \"68ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjc4MjIxODExMTY4MDQwNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-09\",\n            \"systemId\": \"70ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzg1NDMyNTIzNTYwMjczMTcwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-10\",\n            \"systemId\": \"78ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzU1MDUxMjgxMjM5NTUzNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-11\",\n            \"systemId\": \"80ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTYzNDEzNzA1MzY1NzU0MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-12\",\n            \"systemId\": \"88ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEyMzU4MTQ4OTcwMTg3NTAyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-13\",\n            \"systemId\": \"90ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTc1MDkyMjY4MDEyODgyMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-14\",\n            \"systemId\": \"98ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NDkzMTEwMzcwNDcyODMwMDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-15\",\n            \"systemId\": \"a0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk1NzkxOTk2MDQxNzg2MTIxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-16\",\n            \"systemId\": \"a8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjUyNzY0NDk0NDc4NDIxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-17\",\n            \"systemId\": \"b0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ3OTY5MDQ0NzAzNTMzNzU2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-18\",\n            \"systemId\": \"b8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjE1MDc4MjE5NzIyMzUyMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-19\",\n            \"systemId\": \"c0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzk5ODI3ODIyMTYwNzg2NTEwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-20\",\n            \"systemId\": \"c8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1MDI5MDM4MTQ0NDAwMjk1MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-03-21\",\n            \"systemId\": \"d0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTk4NjA2OTgxMTYyNDcxMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-22\",\n            \"systemId\": \"d8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDM4MTUyMTg5ODI4MTE5MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-23\",\n            \"systemId\": \"e0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxNTY5NjkzOTE4NjczMzYxOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-03-24\",\n            \"systemId\": \"e8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYyMjIwNjY1ODMwNDExMTAwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-25\",\n            \"systemId\": \"f0ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYxNTY3OTc1Mjk2NTg2ODg1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-26\",\n            \"systemId\": \"f8ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjkxNzQ5NzM1OTYzMTA5NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-27\",\n            \"systemId\": \"00cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQzODkyOTQwNDQwNjMyMjc5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-28\",\n            \"systemId\": \"08cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODY5MjcyNTYwNTQ0Mzg0OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-03-29\",\n            \"systemId\": \"10cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc5NDU1MzQ1Njg1Njg1MTMwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-30\",\n            \"systemId\": \"18cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQwNDU5NzEyMjE2NjQwNjkxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-03-31\",\n            \"systemId\": \"20cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE2OTEwMTUzNTIyMjgzMTMyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-01\",\n            \"systemId\": \"28cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTQ2MDA0MDU5MjM2NzkxNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-02\",\n            \"systemId\": \"30cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjg1NzE1MjY2NjAzMzA3MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-03\",\n            \"systemId\": \"38cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjQ5OTU4ODQ1NjYwMzMyNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-04\",\n            \"systemId\": \"40cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY1MTc0MTA0NDgwODczNjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-05\",\n            \"systemId\": \"48cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODU5ODA2MjMyNjQ0NTEyNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-06\",\n            \"systemId\": \"50cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ0NjA2NDE3MTc3OTI0NTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-07\",\n            \"systemId\": \"58cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTIwNDc0OTAxNjQzOTkzNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-08\",\n            \"systemId\": \"60cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM3ODQ0OTM3NDIyODI0OTk3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-09\",\n            \"systemId\": \"68cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYxNjEwMjIxNDU1MDM0ODQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-10\",\n            \"systemId\": \"70cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTU5OTQyMDc5NDUxMjA2NDA4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-11\",\n            \"systemId\": \"78cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIyMTAwMjI5NjIxMDc5MDg5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-12\",\n            \"systemId\": \"80cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDczNzk3NDA4ODAzNjYxMTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-13\",\n            \"systemId\": \"88cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM4NjU5MzE0NTUwMDA5NDc1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-14\",\n            \"systemId\": \"90cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTE3NzA2MDEwNTI4MjI3NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-15\",\n            \"systemId\": \"98cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDgxOTQ5NTg5NTg1MjUyODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-16\",\n            \"systemId\": \"a0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY5OTI1NjA0ODc0NzMyNjg3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-17\",\n            \"systemId\": \"a8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDczMjE5MjEzNTg4MjY5MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-18\",\n            \"systemId\": \"b0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE5MTQ3NTU5ODk0Mjc0ODk3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-19\",\n            \"systemId\": \"b8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc5MTM2NDc0OTU1MjI2MjM0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-20\",\n            \"systemId\": \"c0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzE1NTUxNjk2OTA1MTA3NTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-21\",\n            \"systemId\": \"c8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDg3ODU3MTY5MzkzOTIwNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-22\",\n            \"systemId\": \"d0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjk0ODc5OTU4Mzk5MjgzODQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-23\",\n            \"systemId\": \"d8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzM1MDA5ODg0ODAyMDc3OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-24\",\n            \"systemId\": \"e0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkxMTExMzMwOTIzNjc2ODg4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-25\",\n            \"systemId\": \"e8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkwODkwOTgzODU3ODAyNzUzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-26\",\n            \"systemId\": \"f0cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk0NDY2OTEzNjQyODEyNDU4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-04-27\",\n            \"systemId\": \"f8cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTQxNjIwNDg4NjQ0OTgzNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-28\",\n            \"systemId\": \"00cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MzUwNjE3ODQzMzIwNDExODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-29\",\n            \"systemId\": \"08cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzE3MzY1ODUyNjM0MzI5NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-04-30\",\n            \"systemId\": \"10cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI4NTExMTIxNjc4NTg3NzI3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-01\",\n            \"systemId\": \"18cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg4NTAwMDM2NzM5NTM5MDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-02\",\n            \"systemId\": \"20cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjQ0NDg1NTgyODU2NzkwMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-03\",\n            \"systemId\": \"28cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTQyMjY5NDc2MDkwMzY4NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-04\",\n            \"systemId\": \"30cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyODE5ODA2ODM0NTY4ODQwNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-05-05\",\n            \"systemId\": \"38cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM3Njc4OTQwOTEwNTE4MTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-06\",\n            \"systemId\": \"40cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE3NTYzMjI0OTA4MDU2NzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-07\",\n            \"systemId\": \"48cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA2Nzg1ODY3OTEzOTI1MDcxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-08\",\n            \"systemId\": \"50cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTg2Njc1ODgxMTc4NDY3NzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-09\",\n            \"systemId\": \"58cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzgxOTY3OTgwMjYyODMzOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-10\",\n            \"systemId\": \"60cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MTU2MjY1NDMzMTQ0NDcxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-11\",\n            \"systemId\": \"68cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTczODM1OTcwNTgwNjE0NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-12\",\n            \"systemId\": \"70cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAzMTgxMDQ0MzE2NDg3MDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-13\",\n            \"systemId\": \"78cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Nzc4NzM2MDUyMjQxMDU2ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-14\",\n            \"systemId\": \"80cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ2MjE3MDcxMDU1MDgyNzk5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-15\",\n            \"systemId\": \"88cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODc2NzE2OTc1OTMxMTQzMDk3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-16\",\n            \"systemId\": \"90cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzMyMDA3NDc0OTc5NTAzMzMwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-17\",\n            \"systemId\": \"98cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDcyOTQ4MzQ4NDU1NTM2MTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-18\",\n            \"systemId\": \"a0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NDY5MTk0NjkxOTIxODc3MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-19\",\n            \"systemId\": \"a8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjY3NjAxNjg4NjUxMDAxMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-20\",\n            \"systemId\": \"b0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzExODk3MzExNDM0OTgzNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-21\",\n            \"systemId\": \"b8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTU4MDExOTM4NjQxNTc0NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-22\",\n            \"systemId\": \"c0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDg1MTM4MjQ1MTY3NDM3MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-23\",\n            \"systemId\": \"c8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIzOTQyMTkzMDU3MDUwNzU0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-24\",\n            \"systemId\": \"d0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NjI5OTU1NjY2MDU5MjQ3NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-25\",\n            \"systemId\": \"d8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjA4OTUwODExMzQxNDYyNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-26\",\n            \"systemId\": \"e0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjczNTA1NTA4OTAzNTE2MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-27\",\n            \"systemId\": \"e8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI4MjI5OTI2MjQxODA2MjE1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-28\",\n            \"systemId\": \"f0cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODQ4MDYzMTI3NDIyNTI3MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-29\",\n            \"systemId\": \"f8cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDMzMDc4NDU3Njc3Mzk4NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-05-30\",\n            \"systemId\": \"00cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA3NTIyNzA5NDgxMzI1MzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-05-31\",\n            \"systemId\": \"08cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ1NTQ0ODIyMDMwMzQ0Mzk1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-01\",\n            \"systemId\": \"10cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjYyNDE1MTIwMDM1MjkyMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-02\",\n            \"systemId\": \"18cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjA0NDIxMzQxNDA0OTU2Nzk4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-03\",\n            \"systemId\": \"20cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjcwOTU0MzIxODc2Mjk5OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-04\",\n            \"systemId\": \"28cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDYyNDcyMjAxNjc0NDkyOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-05\",\n            \"systemId\": \"30cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg0OTk1MjkwMDA1ODU2NTA1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-06\",\n            \"systemId\": \"38cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgwMjI2MDQ1NzE1MzYwMjkwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-07\",\n            \"systemId\": \"40cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjA1ODIwNDQ3NDc5NDI3OTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-08\",\n            \"systemId\": \"48cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTU0ODA3Mzg3MTkxODYwMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-09\",\n            \"systemId\": \"50cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDA2MjkxNDMxMzEwNzA1MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-10\",\n            \"systemId\": \"58cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg5ODI1Njg3NjEzMjcwMzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-11\",\n            \"systemId\": \"60cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk0MTYxNTk5MjkzMjcyNzA0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-12\",\n            \"systemId\": \"68cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0OTA5MzAwNTA4MjMwNjAzOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-13\",\n            \"systemId\": \"70cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjM0NTMwNjczMTgwMTkyODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-14\",\n            \"systemId\": \"78cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0Mzc2MTU5OTUyNzYwNTIyNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-06-15\",\n            \"systemId\": \"80cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTQyNzI0ODQ4Njg2ODIzNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-16\",\n            \"systemId\": \"88cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTM0MjQyNzI4NDg1MDE2NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-17\",\n            \"systemId\": \"90cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODE4MjY5ODU4NzA3MjIyNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-18\",\n            \"systemId\": \"98cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyODgyNTg4MDYzMzA1OTc0NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-06-19\",\n            \"systemId\": \"a0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODcxMjc1ODEwODU3NTgxNTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-20\",\n            \"systemId\": \"a8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc5MTA3NzE1NzIwNjI1MTM4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-21\",\n            \"systemId\": \"b0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA3NzIyMTc3NDI0ODQxMzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-22\",\n            \"systemId\": \"b8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NjE0ODQ1MjA3MTc4NjMxMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-23\",\n            \"systemId\": \"c0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTA2NjUxMzQyODQ2NTMwMDQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-24\",\n            \"systemId\": \"c8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTM5NzY4MDQzMDQ1NzUyNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-25\",\n            \"systemId\": \"d0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA1Nzc4MzA1MjQ2ODMxNjk2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-06-26\",\n            \"systemId\": \"d8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDA0OTUxNjYzNjg5MDgxMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-27\",\n            \"systemId\": \"e0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTY2MjUyNzkwNTM1NzA1NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-28\",\n            \"systemId\": \"e8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1NjEyMTA2NDY2ODg4Mzc0MDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-06-29\",\n            \"systemId\": \"f0cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjc1NjUxMzY2Mzg5MTU2NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-06-30\",\n            \"systemId\": \"f8cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA1NDA4NjQ3MTY2NjIzMDg2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-01\",\n            \"systemId\": \"00ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUxMjM5NzA2NDAwMDk5MjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-02\",\n            \"systemId\": \"08ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzUxMzQzNDUyNzk1MDAwMDQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-03\",\n            \"systemId\": \"10ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzNTY0NzIzODk1Nzg4ODM3ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-07-04\",\n            \"systemId\": \"18ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjE3Mzg5MzE0MzczNTQxNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-05\",\n            \"systemId\": \"20ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzYwMDgzMTkxOTcxMTkxODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-06\",\n            \"systemId\": \"28ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTUxNjAxMDcxNzY5Mzg0ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-07\",\n            \"systemId\": \"30ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM0NDEzNzY2MDQ0NzE4MzY2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-08\",\n            \"systemId\": \"38ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjkzNTA1ODU4MzY5MjAzOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-09\",\n            \"systemId\": \"40ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkwNTgxNTUwMDQwMDMxNjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-10\",\n            \"systemId\": \"48ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ3NjQzOTM3NDg3MTIxMDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-11\",\n            \"systemId\": \"50ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTk4MDk1MjUwMDk4NTU0MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-12\",\n            \"systemId\": \"58ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5NTE1MzgzNTQ5MjQ3NDA5MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-07-13\",\n            \"systemId\": \"60ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAyODgwMDU4OTA2ODIxMzk3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-14\",\n            \"systemId\": \"68ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU1NTMxNjQ3Mzc2MTk4NzE4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-15\",\n            \"systemId\": \"70ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTY3OTQwNzQ1OTEyNzU3MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-16\",\n            \"systemId\": \"78ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzg0MDM5NTUwNzA5NjU4NjA5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-17\",\n            \"systemId\": \"80ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDUwMDA2MzU0MTE5MTUzMzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-18\",\n            \"systemId\": \"88ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjc1MzA3Mjk2MDc4OTk4Mzg3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-19\",\n            \"systemId\": \"90ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUyODQ5MDcyMzMxMjU2OTg4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-20\",\n            \"systemId\": \"98ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjAzODM3OTU5MTYxMjc2ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-21\",\n            \"systemId\": \"a0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzcxNjY4MzEzMjU3OTc2MTkxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-22\",\n            \"systemId\": \"a8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzcxNzcyMDU5NjUyODc2OTY4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-23\",\n            \"systemId\": \"b0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjE2MTc4MDM3ODA1MDI0ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-24\",\n            \"systemId\": \"b8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDEzMjI4NTE1MjI2NDExNDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-25\",\n            \"systemId\": \"c0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjc0NzE5MTY3OTU3MjAzMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-26\",\n            \"systemId\": \"c8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjE1NDE0NTE5NjMzMTcxODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-27\",\n            \"systemId\": \"d0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTA0OTk5MTEzMDMwMjcyNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-28\",\n            \"systemId\": \"d8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyOTA1MTg5ODM5MDc0NTE3NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-29\",\n            \"systemId\": \"e0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mzg5OTc0MzM3NzY5NjgxMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-07-30\",\n            \"systemId\": \"e8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY0ODc5ODY0MTI5NjA4NDMzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-07-31\",\n            \"systemId\": \"f0ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTgwNjA5MDMxMjIzNDcwMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-01\",\n            \"systemId\": \"f8ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDAwMjEyNzY3MTA0NjQ4MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-02\",\n            \"systemId\": \"00cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU4ODcwNDY1NDc2OTU0MzE3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-03\",\n            \"systemId\": \"08cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTk2OTU3Mjc0MjQ1NTc1NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-04\",\n            \"systemId\": \"10cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU3OTk3NDI3ODc3MjU1OTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-05\",\n            \"systemId\": \"18cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTgzNjA0OTgxMTcxNzQzNDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-06\",\n            \"systemId\": \"20cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjEzMTM0ODI3OTkzMTA5OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-07\",\n            \"systemId\": \"28cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDI0MjE4MDQ3MjU5MDYyNzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-08\",\n            \"systemId\": \"30cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODM2MjE3ODY1NTQ2NTg0MTMyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-09\",\n            \"systemId\": \"38cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUwNDk2NjYyODQxMDA2NDQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-10\",\n            \"systemId\": \"40cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODE1MTczMTUwNTI3OTA0MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-11\",\n            \"systemId\": \"48cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDI1MjkxMjQxMjgwMDgzODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-12\",\n            \"systemId\": \"50cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzQwMzY2ODkxNTI5NjMwNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-13\",\n            \"systemId\": \"58cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODg2NTk0ODQwODI4NzkyNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-14\",\n            \"systemId\": \"60cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjQ3MjYxMDM3MTI2MTg5MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-15\",\n            \"systemId\": \"68cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTg0MzU0MjU2ODIyODA4MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-16\",\n            \"systemId\": \"70cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTQzNTM3ODk2ODQ5NDc2MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-17\",\n            \"systemId\": \"78cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkwNzM4MzI5MDMzMzY4NTE4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-18\",\n            \"systemId\": \"80cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NjIwNDI4NDg1NjM5NjUxNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-19\",\n            \"systemId\": \"88cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5ODcxNzY0OTQ5NTM1Njk1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-08-20\",\n            \"systemId\": \"90cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjU0MzcxOTE4MDkzOTA0ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-21\",\n            \"systemId\": \"98cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTczMDI0OTUxMTAzMDgwMjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-22\",\n            \"systemId\": \"a0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDIyNjYyNzE3NDQ2MTY5MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-23\",\n            \"systemId\": \"a8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM0NTMwMjczNjk4Mjk2NTg5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-24\",\n            \"systemId\": \"b0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzY0MjczNjg2OTkwNzY5NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-25\",\n            \"systemId\": \"b8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDkyNDQ2MzA0MTUwNzU5ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-26\",\n            \"systemId\": \"c0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTI1NzM3OTM4MTI3MTE3MDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-27\",\n            \"systemId\": \"c8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDUyNDUyODY0NTY4MDgwMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-28\",\n            \"systemId\": \"d0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA0ODQzODAxNzQ5Njc2MTg3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-29\",\n            \"systemId\": \"d8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTE1ODg0NDM1OTA2MzM5MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-08-30\",\n            \"systemId\": \"e0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ5OTcyNzY4OTg2OTgxNzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-08-31\",\n            \"systemId\": \"e8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 8,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 8,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 9,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 17,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 17,\n            \"paxExclBabies\": 17,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 17,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 17,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 1,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MzkzMDM2MDYwNzY5MjY0NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-01\",\n            \"systemId\": \"f0cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 3,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 3,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 1,\n            \"arrivals\": 1,\n            \"departures\": 6,\n            \"detours\": 0,\n            \"adults\": 8,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 8,\n            \"paxExclBabies\": 8,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 8,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 8,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTgyMjk5OTM3MzcyODA2NzA2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-02\",\n            \"systemId\": \"f8cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 4,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 4,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 9,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 9,\n            \"paxExclBabies\": 9,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 9,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 9,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA5MDQ1NTI4NzIzNTgyNDk2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-03\",\n            \"systemId\": \"00d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 4,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 4,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 9,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 9,\n            \"paxExclBabies\": 9,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 9,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 9,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDk1ODYwOTAxNDUwOTU1NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-04\",\n            \"systemId\": \"08d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 3,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 3,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 7,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 7,\n            \"paxExclBabies\": 7,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 7,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 7,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1ODgwOTA1MzI1MzI5MDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-05\",\n            \"systemId\": \"10d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 1,\n            \"arrivals\": 0,\n            \"departures\": 2,\n            \"detours\": 0,\n            \"adults\": 1,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 1,\n            \"paxExclBabies\": 1,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 1,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 1,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI5NzA1MDIyODMxNzk0MDk0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-06\",\n            \"systemId\": \"18d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 1,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 1,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 1,\n            \"paxExclBabies\": 1,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 1,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 1,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzUyMzg0MDkzMjc5OTM2OTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-07\",\n            \"systemId\": \"20d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDkzNjU3NTYzNTExNTQ3NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-08\",\n            \"systemId\": \"28d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI2Mzk3OTg2MjU0NzcxMDQzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-09\",\n            \"systemId\": \"30d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk3MDA4OTkwMTYzNDc1NTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-10\",\n            \"systemId\": \"38d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4ODc0MjkzNDY0MzkzMTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-11\",\n            \"systemId\": \"40d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE4NzIyNDY4MTE4MDMzMzc0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-12\",\n            \"systemId\": \"48d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE2MDY4NzIyODgzOTM1NDk1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-13\",\n            \"systemId\": \"50d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzQ0NzIxNzQ1NTk4NzgwMzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-14\",\n            \"systemId\": \"58d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDExOTE3MzE5OTM2NTAzNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-15\",\n            \"systemId\": \"60d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDM1Njc5NjE0ODU1MDE0NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-16\",\n            \"systemId\": \"68d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMjUzODg1MDgyODQwMzg0NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-17\",\n            \"systemId\": \"70d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDQ4MzQ1NDE0ODQ4OTc4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-18\",\n            \"systemId\": \"78d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc0Mzk0Nzg3ODYyMTAxODg2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-19\",\n            \"systemId\": \"80d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTQwNzQ2MzE1MzIzMzg2OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-20\",\n            \"systemId\": \"88d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjM2NTE0ODEyMzA2ODcyODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-21\",\n            \"systemId\": \"90d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAzNzY4OTY4MjY2MDU3MDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-22\",\n            \"systemId\": \"98d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ3NTEwNjU5ODA2OTQwODAzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-23\",\n            \"systemId\": \"a0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQwNTk4MDQ4MjAxMjgzNTAwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-24\",\n            \"systemId\": \"a8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MzUxNjM2OTM4MDQzMDU1NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-25\",\n            \"systemId\": \"b0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY0NjcxOTU2NDQ5MzE5Njk1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-26\",\n            \"systemId\": \"b8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA0NTk3Mzc4NDU1MzQ4MjgwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-27\",\n            \"systemId\": \"c0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzU5MDE4OTc5ODU5NDQ5MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-28\",\n            \"systemId\": \"c8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI3ODUxODc1MDc3MzM4NzYyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-09-29\",\n            \"systemId\": \"d0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTk1MzYyMTgyNjU2MTA0MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-09-30\",\n            \"systemId\": \"d8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDg2NDYzNjEzNTAxNjc1OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-01\",\n            \"systemId\": \"e0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAxNjQxNDY0NDg4NjIyNzczMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-02\",\n            \"systemId\": \"e8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTA0OTY2ODc1OTc4NjM5MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-03\",\n            \"systemId\": \"f0d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTUxNDk0NjcxMDAwNjI0NTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-04\",\n            \"systemId\": \"f8d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDIwOTg0NDI5MDIwMDY4MTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-05\",\n            \"systemId\": \"00d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NDkyMjI2MDYzMTcyNzAzNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-06\",\n            \"systemId\": \"08d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDU5NjA5MDAzMDM1ODQ4ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-07\",\n            \"systemId\": \"10d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQyNjA4OTY2NDcwMzI4ODc2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-08\",\n            \"systemId\": \"18d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjMyNTU5MDQwMjkwNTk5MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-09\",\n            \"systemId\": \"20d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ4NjI1NzU3NjA0NDc4MDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-10\",\n            \"systemId\": \"28d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDQ0OTg4MDE1NzM3MTE3NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-11\",\n            \"systemId\": \"30d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk0NDUxNzgyOTg0NjM2NTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-12\",\n            \"systemId\": \"38d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNjAzNzY4MTA5MzM5MzU4MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-13\",\n            \"systemId\": \"40d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjIyOTg0NDU4Nzc4ODY5MDkyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-14\",\n            \"systemId\": \"48d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIxMzQ2MTY1MDE0Nzc1NDM3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-15\",\n            \"systemId\": \"50d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDU5ODgwMDU4MDA5NzIyMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-16\",\n            \"systemId\": \"58d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE5OTY4ODAxNTM0MTQ3OTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-17\",\n            \"systemId\": \"60d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk4MjAxOTM1Nzk1NjM1ODgwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-18\",\n            \"systemId\": \"68d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzI1NTY4OTMzMzE5MTg4MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-19\",\n            \"systemId\": \"70d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNTc2NDUzNzQyMjUyMzk5NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-10-20\",\n            \"systemId\": \"78d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODg0ODUyNzE5NDE4NTM3MDkyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-21\",\n            \"systemId\": \"80d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA3MzEyMTExNjM2Mzk3NDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-22\",\n            \"systemId\": \"88d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjEyNDk1ODc1NTc4NjEwNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-23\",\n            \"systemId\": \"90d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjU4NDEzNjY2MjU4NjU3MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-24\",\n            \"systemId\": \"98d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDkzOTAwMTQ1MzU4NDM0MTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-25\",\n            \"systemId\": \"a0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYwOTUyMTg0NTg5NDc1MDQyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-26\",\n            \"systemId\": \"a8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE3NjkwNDc4NTc1Nzg5NTc5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-27\",\n            \"systemId\": \"b0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzU4MzIxMTk4NTE1NDQzNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-28\",\n            \"systemId\": \"b8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwODM4ODExNTM2MTc2MDY3NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-10-29\",\n            \"systemId\": \"c0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDIzMzIzNjA4NzU0OTA3NzY2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-30\",\n            \"systemId\": \"c8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk0OTE2MTU2ODc0MDc3MDg3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-10-31\",\n            \"systemId\": \"d0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjg4NDUzMTY1MTczODQ3NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-01\",\n            \"systemId\": \"d8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzc2NjkyNjA4NzA0OTA5NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-02\",\n            \"systemId\": \"e0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDc2MzY0Mzk3NDI5OTk4NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-03\",\n            \"systemId\": \"e8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzc1ODMzNjQwMzU0NDYxMjY4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-04\",\n            \"systemId\": \"f0d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjA0NzU0ODExNDA2NTgwNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-05\",\n            \"systemId\": \"f8d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MjM5NjU2MTYzNzk5NzE3NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-06\",\n            \"systemId\": \"00d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjI0ODUxMzI3NDQ4MjE4NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-07\",\n            \"systemId\": \"08d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY1Mzg5Njk3MjA0NTczNTc3MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-08\",\n            \"systemId\": \"10d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc0NjAyNjU4NTg5Nzc3NTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-09\",\n            \"systemId\": \"18d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg4ODgxNDU1ODg0MTk5ODk5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-10\",\n            \"systemId\": \"20d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODIzMTc3NTk3MDIxNTE0MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-11\",\n            \"systemId\": \"28d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTA5MzIzMTM4ODYxNzYwMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-12\",\n            \"systemId\": \"30d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTU2OTIyNTI3NTU5NzI1MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-13\",\n            \"systemId\": \"38d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTUzOTczMDA0OTgxMTExODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-14\",\n            \"systemId\": \"40d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjcyMTYxMzAyMDk4OTk1MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-15\",\n            \"systemId\": \"48d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjg0MjEwNTU4NDY1MDI5OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-16\",\n            \"systemId\": \"50d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjEyOTE5MTg0MzE2MTExNzM5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-17\",\n            \"systemId\": \"58d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDQ0NDcyMjUyNjM4NzUyMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-18\",\n            \"systemId\": \"60d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMwNjE4MDM1NDMxMTEzNTE4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-19\",\n            \"systemId\": \"68d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE3NzIzMDc1NjcxOTM1MzE5MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-20\",\n            \"systemId\": \"70d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDAxNDE5MDE2MjkzOTU1ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-21\",\n            \"systemId\": \"78d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1MjU4MzE4NTMzMzExNTgxNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-11-22\",\n            \"systemId\": \"80d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ0MDM3OTI4NDY0NDI2MTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-23\",\n            \"systemId\": \"88d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODM4NDc3Mzg5NDIwMjUyMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-24\",\n            \"systemId\": \"90d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTE3MjY1NzY0ODkxNTM2MzI0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-25\",\n            \"systemId\": \"98d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc3MTE5MDY4MjYwNzQ3ODU0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-26\",\n            \"systemId\": \"a0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAyMzY2NzEyMjEzODY5NDMxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-27\",\n            \"systemId\": \"a8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTk1NDI2NTQ0MzQwNzM3NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-28\",\n            \"systemId\": \"b0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjU4MTY2Mjg2MjE2ODEzNTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-11-29\",\n            \"systemId\": \"b8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ4NTEyOTczNTkzNDM5MjE4MTswMDsn\\\"\",\n            \"planningDate\": \"2022-11-30\",\n            \"systemId\": \"c0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDkyODAzODczNzA0OTczMDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-01\",\n            \"systemId\": \"c8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTYwMzI1ODg5MDI5MTI5MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-02\",\n            \"systemId\": \"d0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE5ODU2Nzk0MTI5MzUxMTY2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-03\",\n            \"systemId\": \"d8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTAzNjI4NjQzMjEzNzA4MDcxMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-04\",\n            \"systemId\": \"e0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDYyMzc2MDg3NjU2Mzg3NjY0MTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-05\",\n            \"systemId\": \"e8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjE1Nzc5MzczNTQzOTkwOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-06\",\n            \"systemId\": \"f0d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA2MDc2MDY1ODI0MDA3ODQyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-07\",\n            \"systemId\": \"f8d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUzNzkyOTAyMDMyMTE2MzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-08\",\n            \"systemId\": \"00d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA5NDI4MDAxMjc4NzU5ODEzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-09\",\n            \"systemId\": \"08d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM0MDA2MDM5NzA2Mjk1NDcwMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-10\",\n            \"systemId\": \"10d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTAzMjcxNjEzODE1MjkwNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-11\",\n            \"systemId\": \"18d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODA5NDcyNjI2NzU0MDU2ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-12\",\n            \"systemId\": \"20d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjkyNTEyNTE5NjI5NDI2MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-13\",\n            \"systemId\": \"28d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3ODI5NzgwMDE3MTMyMzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-14\",\n            \"systemId\": \"30d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxNDExNDkzNzIyNzYzOTg4NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-12-15\",\n            \"systemId\": \"38d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDgzMzAyNDE0NjcxMzk0NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-16\",\n            \"systemId\": \"40d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTA5NTg4Mjg0OTMzMjk3MTAyMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-17\",\n            \"systemId\": \"48d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMDgzMTAyODQ5NTcxOTY3MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2022-12-18\",\n            \"systemId\": \"50d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUwODU0ODY0OTMyNjkzNTM2MTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-19\",\n            \"systemId\": \"58d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODYzNDc0MzEwNDIzODUwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-20\",\n            \"systemId\": \"60d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTMwMjgwMDgwODAzMzAxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-21\",\n            \"systemId\": \"68d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODA5NzExNzU4NjY1Njk3MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-22\",\n            \"systemId\": \"70d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQxNzE2NTI3ODU2MjQ2MDUzMTswMDsn\\\"\",\n            \"planningDate\": \"2022-12-23\",\n            \"systemId\": \"78d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTQxNTc4MTE1NTk5NjYyODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-24\",\n            \"systemId\": \"80d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDY5OTIwOTI3NDE3NTg4MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-25\",\n            \"systemId\": \"88d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjI2NDI4MTY2MjEyNTIwOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-26\",\n            \"systemId\": \"90d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODQwMDA3NDcyODMwMjcyNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-27\",\n            \"systemId\": \"98d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODYzMzk2NjMyODI1NjA2MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-28\",\n            \"systemId\": \"a0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzYwNjE1OTkyNjgzMTcwODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-29\",\n            \"systemId\": \"a8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjA2Mzk2Mzc2OTU4NTI3NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-30\",\n            \"systemId\": \"b0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMTA3MTA2MDAwNDMxODE4MDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2022-12-31\",\n            \"systemId\": \"b8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgyNTAzNzg0NzA3MjgyMjk2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-01\",\n            \"systemId\": \"c0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTA2NzMyOTQ2OTE2NzE3MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-02\",\n            \"systemId\": \"c8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTM4MTg0MDAwMzQzODM4MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-03\",\n            \"systemId\": \"d0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjIzNTc5OTk0OTI5NzYxNDQzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-04\",\n            \"systemId\": \"d8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE1NDc1NDU1Nzc0MTUyMTQwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-05\",\n            \"systemId\": \"e0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyNzQ3ODgyNjUwNzI4MDExNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-01-06\",\n            \"systemId\": \"e8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mjk5MjM2ODU4MTQ1MTcxMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-07\",\n            \"systemId\": \"f0d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDQyMTg5MDAwMTE5NDM1OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-08\",\n            \"systemId\": \"f8d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDA2OTE2ODMyMTE0ODI1NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-09\",\n            \"systemId\": \"00d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg4MjAzMTcwNjk4MDkyMjY2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-10\",\n            \"systemId\": \"08d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDg4MzA2OTE3MDkyOTkzMDQzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-11\",\n            \"systemId\": \"10d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzcyMjU5NDI1NjA4OTUyOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-12\",\n            \"systemId\": \"18d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjI0MTI3OTgzODA4NTY1NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-13\",\n            \"systemId\": \"20d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDUyMjcwNDQxNjU3NTQzOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-14\",\n            \"systemId\": \"28d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODI0NjcyNzY4MDYyODc1NDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-15\",\n            \"systemId\": \"30d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5ODk5NDI0NzM4MDMzNzg4MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-16\",\n            \"systemId\": \"38d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDA5NjMxMTQwMjczMjcxNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-17\",\n            \"systemId\": \"40d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTc2MTM2NjQ3NDM5NzQ4OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-18\",\n            \"systemId\": \"48d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk3NjI1MTI1ODgyOTg4MTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-19\",\n            \"systemId\": \"50d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODAwNDM5NTE4NDA0NDg0MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-20\",\n            \"systemId\": \"58d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNzQzNzI4MTA4NTMwNjI4NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-21\",\n            \"systemId\": \"60d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjE1MDkxMzg3OTYwMjM0MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-22\",\n            \"systemId\": \"68d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5NDgxODc0OTc2MzE4MDQzMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-01-23\",\n            \"systemId\": \"70d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzE5MTQ3ODIwMjU0NTc4NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-24\",\n            \"systemId\": \"78d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NTUxOTc3MjgyNjI1NTE3MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-01-25\",\n            \"systemId\": \"80d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY0MDgyNjc2MjQ3NTk1MTE3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-26\",\n            \"systemId\": \"88d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzY2MTMzOTgxNTY2Nzg4NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-27\",\n            \"systemId\": \"90d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjc5MjA3MjY5Njc3Njg2NzY3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-28\",\n            \"systemId\": \"98d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI3MjU2MzAzNDQzNzQ5MTQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-29\",\n            \"systemId\": \"a0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU2NDExMTA3MzU0NjY5NjMzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-01-30\",\n            \"systemId\": \"a8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjU4MzIwNjc3MDU4MDI5NTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-01-31\",\n            \"systemId\": \"b0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxOTcwNTc2NzkxODg1NTU2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-01\",\n            \"systemId\": \"b8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzg5NjgxOTQ2MjMyMTc2OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-02\",\n            \"systemId\": \"c0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODgzMjQxMjE1ODExMDg2NjYyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-03\",\n            \"systemId\": \"c8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTY1NzA3MzA5NTI5NjI2NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-04\",\n            \"systemId\": \"d0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDcyNDUzMzcxMjkxMDUwODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-05\",\n            \"systemId\": \"d8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMyNzU4Njk2NTQ2NjUzNTA2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-06\",\n            \"systemId\": \"e0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTQ3NjE5MzYwNTc2MDU3MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-07\",\n            \"systemId\": \"e8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzgyOTQzNjU0NzE2NjQwMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-08\",\n            \"systemId\": \"f0d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTMxNjczODI5MDUyMDQ5MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-09\",\n            \"systemId\": \"f8d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc2MTUxOTI5MTE1MTQ1OTU4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-10\",\n            \"systemId\": \"00d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcwMzg4OTg1ODM4Mjg4OTExMTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-11\",\n            \"systemId\": \"08d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxODc5MzM1NTc5NDk0NTYwMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-12\",\n            \"systemId\": \"10d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDU2NTc0NTUxNjYwNDAwMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-13\",\n            \"systemId\": \"18d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ4MDU0NTEyNTYwODk3OTQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-14\",\n            \"systemId\": \"20d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTA2NjU3MTI4NTE0Mzc3NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-15\",\n            \"systemId\": \"28d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjAyOTU4NDY1NDc3MjI3MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-16\",\n            \"systemId\": \"30d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTM1NDU0NTE3MzE2NzE4MzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-17\",\n            \"systemId\": \"38d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwNzIzMjQ4NDYyNzQ0NjE3NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-02-18\",\n            \"systemId\": \"40d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTg3NDg5NzExNTQyMTI4NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-19\",\n            \"systemId\": \"48d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg3OTcxNjE0MTYwMDgxMTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-20\",\n            \"systemId\": \"50d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDYyODQ0NjMxNTkzNjIyMDkxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-21\",\n            \"systemId\": \"58d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTQ3NTk5OTY2MTI3MzE3NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-22\",\n            \"systemId\": \"60d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDYxNDQ4Mzk5NDk5NzEzNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-23\",\n            \"systemId\": \"68d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODc1OTAxODU1NzQ1ODQ4MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-24\",\n            \"systemId\": \"70d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg4Mjg3NTQ0ODE0MzU1ODA3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-25\",\n            \"systemId\": \"78d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM4NTA1ODEzNjg5MzM5NTI4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-26\",\n            \"systemId\": \"80d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjA1MDkwNTMyMDAyOTE3NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-02-27\",\n            \"systemId\": \"88d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM5MzQzMzY2NjA3NzUwNjY2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-02-28\",\n            \"systemId\": \"90d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzA4NTYyNTMxNjU3Mzc3NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-01\",\n            \"systemId\": \"98d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjU4MjA4MzE2MTE1MDI0OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-02\",\n            \"systemId\": \"a0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTM5NjAxODQwNTI0MTg3NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-03\",\n            \"systemId\": \"a8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDY4ODIyMDg1MDM4NzgxMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-04\",\n            \"systemId\": \"b0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU0NTMwMzgzNjUyMDA3OTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-05\",\n            \"systemId\": \"b8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTE1MjgwMDE0ODMzNDAwOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-06\",\n            \"systemId\": \"c0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk2ODE2NDc0MTQxMjEzMjkxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-07\",\n            \"systemId\": \"c8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ0OTcxNDUxMjE0OTc5MzE3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-08\",\n            \"systemId\": \"d0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQzMzAzMzA5MjExMTUwODc4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-09\",\n            \"systemId\": \"d8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc1NjExNTEyMzMzMjcxMDE1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-10\",\n            \"systemId\": \"e0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODY4ODMzMTE3NTg2NDA5NzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-11\",\n            \"systemId\": \"e8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODIxNjI2MzI3MjgyODU3NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-12\",\n            \"systemId\": \"f0d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzU2MDIwMTk4NjkxODIyNDM0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-13\",\n            \"systemId\": \"f8d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEwMDg3MjQ1OTA0OTk0MDI4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-14\",\n            \"systemId\": \"00d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzMxMDU5MzY4ODU5NTA0ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-15\",\n            \"systemId\": \"08d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMyNzcyMDM1MDQ2OTYxNDcwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-16\",\n            \"systemId\": \"10d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTkxNTExMzgzNzMzNTQ5NjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-17\",\n            \"systemId\": \"18d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzk1NjA0MTc0OTk2MTIwNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-18\",\n            \"systemId\": \"20d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk4NDg0NDgwMTM2OTMzODY1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-19\",\n            \"systemId\": \"28d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDExNzIxNzEwMDIyOTIyMzU1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-20\",\n            \"systemId\": \"30d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzIwNDk3MDIzMTc0MjM2NTcyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-21\",\n            \"systemId\": \"38d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDk0MDM1ODAwNDQyOTM4MDUzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-22\",\n            \"systemId\": \"40d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjkwNTA3NDQxMDE0ODI3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-23\",\n            \"systemId\": \"48d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzM0ODE0NTQ2NTQ0NzIwNDU1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-24\",\n            \"systemId\": \"50d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDMzMTQ2NDA0NTQwODkyMDE2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-25\",\n            \"systemId\": \"58d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjc2NDI4MzkwOTI5MjYxMDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-26\",\n            \"systemId\": \"60d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzQ5NzI3ODk4Nzc1ODI2MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-27\",\n            \"systemId\": \"68d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM1NDA0NDIyMzUyNDkwNjg0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-03-28\",\n            \"systemId\": \"70d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjczNDk2MzU2MTEzMzUxNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-29\",\n            \"systemId\": \"78d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTY1NTI0NTMwMTYzMTQ2MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-30\",\n            \"systemId\": \"80d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDk3NzQwNTgyNjk0NTMzNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-03-31\",\n            \"systemId\": \"88d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDY4NjM0MjMyMzc0OTU2MDE3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-01\",\n            \"systemId\": \"90d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 3,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Njc5NDI2NjE3OTY4NzgxOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-02\",\n            \"systemId\": \"98d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTI2OTk4MDQ4MDc3NjYxNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-03\",\n            \"systemId\": \"a0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE2MzY0ODY1MjE2MDQ3NTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-04\",\n            \"systemId\": \"a8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNzAzMDIzNDExMzc1MTExNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-05\",\n            \"systemId\": \"b0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTA3MDUzODE3MTYzMjY2ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-06\",\n            \"systemId\": \"b8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTQyNzE4OTQwNjQ0MzE3MDkzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-07\",\n            \"systemId\": \"c0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzMxMzk3Mjc4MzI2MDQ4NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-08\",\n            \"systemId\": \"c8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTY2NzIxNTcyNDY2NjMxNTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-09\",\n            \"systemId\": \"d0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkxNTQ1MTc0NjgwMjA0MDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-10\",\n            \"systemId\": \"d8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjc0NzczNTMwNjczMTM3NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-11\",\n            \"systemId\": \"e0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjA2OTg5NTgzMjA0NTI0OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-12\",\n            \"systemId\": \"e8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzIwOTIwODAyNzk4OTUyOTg4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-13\",\n            \"systemId\": \"f0d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE5MjUyNjYwNzk1MTI0NTQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-14\",\n            \"systemId\": \"f8d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk1ODM1ODI1MDQxMTQyMTI2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-15\",\n            \"systemId\": \"00d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTMzNjQ3NzI1MTk0NTk0NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-16\",\n            \"systemId\": \"08d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE4NTIwNjE0MTgzMTA5NTY4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-17\",\n            \"systemId\": \"10d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzYyNDQ1MTEzOTk2OTM1NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-18\",\n            \"systemId\": \"18d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjcxODI0MTg2Mjk5ODkzNTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-19\",\n            \"systemId\": \"20d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ0MjU1NzA5ODA5MTE5MzA4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-20\",\n            \"systemId\": \"28d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTU1MjgzODg2MDI4OTA0ODIxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-21\",\n            \"systemId\": \"30d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjEwNzg0NzY4NDE2NzUyMjg2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-22\",\n            \"systemId\": \"38d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODkyMDk2ODc2MzQ5NDI3OTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-23\",\n            \"systemId\": \"40d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA2NTU0MzA3MzM2NDYwODMyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-24\",\n            \"systemId\": \"48d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDQ0ODY0NjU5NjMzMjU2MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-25\",\n            \"systemId\": \"50d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5NzQ2ODA3NDY4MjEyNjkxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-26\",\n            \"systemId\": \"58d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTUyMjU2ODM2NDc2MTQ2NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-27\",\n            \"systemId\": \"60d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 1,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTMzNTc5NDA4NTA1MDU1Mjg0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-28\",\n            \"systemId\": \"68d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNTQ4MjIxNTIwNjc0Nzc4NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-04-29\",\n            \"systemId\": \"70d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU0NzQ3MjY0NzY5NzY4MDcwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-04-30\",\n            \"systemId\": \"78d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE0NzM4OTAwMzA3ODkyNDk2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-01\",\n            \"systemId\": \"80d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTc4NzY1MTE5OTMyMTU1NzUzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-02\",\n            \"systemId\": \"88d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODU5NzcwMjY2MTcwODYwOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-03\",\n            \"systemId\": \"90d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTYxMTY3MDY2NjIwMTMzNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-04\",\n            \"systemId\": \"98d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 1,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 2,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 2,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 2,\n            \"paxExclBabies\": 2,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 2,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 2,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDY3MjEzNDgyMTg1OTYwNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-05\",\n            \"systemId\": \"a0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 1,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMjE2ODE0MTQxNjg1NzU0NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-06\",\n            \"systemId\": \"a8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY0MjA5ODg2MTk2NDcyMTg0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-07\",\n            \"systemId\": \"b0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTc4MDg0MDY4MDQwMzAxMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-08\",\n            \"systemId\": \"b8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MDExNjI3NzQyNzM1Njc2OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-09\",\n            \"systemId\": \"c0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDc0OTY1OTM1MDA1NjY3NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-10\",\n            \"systemId\": \"c8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUzNDQyNTE2OTA4MTI5ODIwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-11\",\n            \"systemId\": \"d0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjEyOTAwMjQ2NzUyMDU4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-12\",\n            \"systemId\": \"d8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDUwNjE4NzM3NTk1NjI3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-13\",\n            \"systemId\": \"e0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA0NDk5MjgxMzc4NTI3OTEyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-14\",\n            \"systemId\": \"e8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ2NjI4OTM1MjUxMjM1NzkzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-15\",\n            \"systemId\": \"f0d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzMyNzg2ODU0NDc4ODEyNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-16\",\n            \"systemId\": \"f8d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODM2NTY2MDY3MTMzMzQ2MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-17\",\n            \"systemId\": \"00d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDczNjM5NzQ1NjY3NzMyNjA0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-18\",\n            \"systemId\": \"08d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMDgxNTY4Nzg4NzkzNjkzMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-05-19\",\n            \"systemId\": \"10d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MjkyNjU2NDM5Njc3MDgyMDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-20\",\n            \"systemId\": \"18d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTA0NjAwODEwODAzMjY5ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-21\",\n            \"systemId\": \"20d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAxMjE4MTMwNjIxNzY4ODE3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-22\",\n            \"systemId\": \"28d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDEwMjc5NDEwOTkzNjc4MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-23\",\n            \"systemId\": \"30d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODg0MDUyMTE3MjcxODE1MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-24\",\n            \"systemId\": \"38d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4Mzk2OTI3MTE3OTE5ODQ2MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-25\",\n            \"systemId\": \"40d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDExMTM5NzA4MzY3NzkxMDE0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-26\",\n            \"systemId\": \"48d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDA3OTA4MTU5ODk3NTc4NzAzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-27\",\n            \"systemId\": \"50d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzY0MjQ0Mjc2OTI5MTQxNjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-28\",\n            \"systemId\": \"58d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTQ2OTY1NDIzNTAyMjkyODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-05-29\",\n            \"systemId\": \"60d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg4OTQyMzIwMjI1MTkxMjQyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-05-30\",\n            \"systemId\": \"68d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxOTMyNDEyNzAxNzY1MTgyNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-05-31\",\n            \"systemId\": \"70d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUwMjU4NDMyMTE2OTc2ODkzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-01\",\n            \"systemId\": \"78d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcxMTE3MjYzNDk4MDMyNjc4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-02\",\n            \"systemId\": \"80d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE4MTcyNTk4Mjc3NzM0MjIzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-03\",\n            \"systemId\": \"88d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzY1MzQyNTU5NjU4NzMyODI0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-04\",\n            \"systemId\": \"90d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjczNTg2Mjc5NDM2MjYzMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-05\",\n            \"systemId\": \"98d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDczNTEzODEzNDc4MDE0ODI2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-06\",\n            \"systemId\": \"a0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY0MDUyNjk4NzQ5OTAyMzI0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-07\",\n            \"systemId\": \"a8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzcwNTQ0NTA4MzgyMDEzNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-08\",\n            \"systemId\": \"b0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQxMDQ2MzY0ODgyNzA5ODMwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-09\",\n            \"systemId\": \"b8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM2Mjc3MTIwNTkyMjEzNjE1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-10\",\n            \"systemId\": \"c0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc1MjA4ODQzNjExODgxMzY4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-11\",\n            \"systemId\": \"c8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTA5NTE4NTI3NDcyNjIxNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-12\",\n            \"systemId\": \"d0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI4NzAzODQxMDkzOTU3NzM5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-13\",\n            \"systemId\": \"d8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDUwNzM1OTM5NzA5ODMzMTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-14\",\n            \"systemId\": \"e0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2ODY3MDA4ODE4ODA1NDIwNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-06-15\",\n            \"systemId\": \"e8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDI2NzYxMzAzMDA3MjgyOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-16\",\n            \"systemId\": \"f0d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjM5MDIwNTkxNDcxNTU5ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-17\",\n            \"systemId\": \"f8d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjEzODgxNDA3MDI2Mzg5MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-18\",\n            \"systemId\": \"00d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5Njg4ODU2NjcwMjY3MTUwNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-19\",\n            \"systemId\": \"08d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc4OTYzMzY4ODcwOTA4ODI3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-20\",\n            \"systemId\": \"10d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTMzNDQ4Nzk5Nzg4NzUyMDY4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-21\",\n            \"systemId\": \"18d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUzMTUzODQ3NTMwODkwNzMzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-22\",\n            \"systemId\": \"20d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NjUyOTE0MzUxMjI4MTQ3NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-23\",\n            \"systemId\": \"28d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIwNTU5NjYxMTg4NzY3MDg3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-24\",\n            \"systemId\": \"30d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU2MDE4MzIwMDM4OTE5MTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-25\",\n            \"systemId\": \"38d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTU0Mjk0MzE4NjM3NTYwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-26\",\n            \"systemId\": \"40d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDY0MjgwMjIyODgxNTgyODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-27\",\n            \"systemId\": \"48d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTEzNTAzNzQ5ODA0MjM3ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-28\",\n            \"systemId\": \"50d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MzU3NDk3Nzk3MTUzNDg4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-06-29\",\n            \"systemId\": \"58d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTczMDA2NDQyOTAyNjU5NzY2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-06-30\",\n            \"systemId\": \"60d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzY1NjA3MTM1ODIwMzUyNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-01\",\n            \"systemId\": \"68d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTQxMTE3NzUzNDI3MDI0ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-02\",\n            \"systemId\": \"70d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjU1NTU4NDczMTI3MzQ0MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-03\",\n            \"systemId\": \"78d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTkwMTI1ODI0ODY0NTg4NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-04\",\n            \"systemId\": \"80d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg4MzM3Njk4OTQzMDc3MTQwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-05\",\n            \"systemId\": \"88d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ1MjgyNzA2Njc2MDc2ODYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-06\",\n            \"systemId\": \"90d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0MzUwMzc3NDk0MzM0MjUzNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-07-07\",\n            \"systemId\": \"98d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI1MTg0NjY4NDQ1MDk2MTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-08\",\n            \"systemId\": \"a0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg4Njg3NTEyMDYzNzcxMTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-09\",\n            \"systemId\": \"a8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzUwMzE4NzA1NjU1MzE2MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-10\",\n            \"systemId\": \"b0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU2MTY0ODA5MDcwOTA1NjExMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-11\",\n            \"systemId\": \"b8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MTIyMjU0NTYwNzM0ODc4ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-07-12\",\n            \"systemId\": \"c0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjYxNjUxNTA4MTkzNzUwNDYyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-13\",\n            \"systemId\": \"c8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTA1MDY3MzEzMDI5OTE1OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-14\",\n            \"systemId\": \"d0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwMjU1MDY2ODI5NjUxOTY5NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-07-15\",\n            \"systemId\": \"d8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjA1MTM2NzU4Nzk2NjM5MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-16\",\n            \"systemId\": \"e0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1NjIwNjkzMjYwMDU5MDk0NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-07-17\",\n            \"systemId\": \"e8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM4MTgxNTE3NTU5ODU3MzM5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-18\",\n            \"systemId\": \"f0d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQyMzEzNTkxNDc1MzQ3MjY5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-19\",\n            \"systemId\": \"f8d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEyOTExODg3MDA0NjkwNTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-20\",\n            \"systemId\": \"00da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIyMzQxNTA2NjI3MTA2NTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-21\",\n            \"systemId\": \"08da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg3MjAzNDEyMzczNDU0ODMyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-22\",\n            \"systemId\": \"10da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDUwNzA2MjU1OTkyMTI5ODE3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-23\",\n            \"systemId\": \"18da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc0NjAwOTc2OTE4Nzg1NzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-24\",\n            \"systemId\": \"20da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE5MzQxMDExNjEzODYzMjI4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-25\",\n            \"systemId\": \"28da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY1MTU0ODc1Nzc1MjkzMDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-26\",\n            \"systemId\": \"30da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODQ3MTQ0NjM3NDkyNjczNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-27\",\n            \"systemId\": \"38da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDI5NzY3MjEzMTM1OTQ5Mjg3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-07-28\",\n            \"systemId\": \"40da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxMDU5Mjc4NDM4NzI5MDg5NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-07-29\",\n            \"systemId\": \"48da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjQyODk3MTk0MjU3OTQxMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-30\",\n            \"systemId\": \"50da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDQ5NjI5NTI3Nzg2NTMzNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-07-31\",\n            \"systemId\": \"58da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDczNjE1NTY3NzQ3Mjk2NDkyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-01\",\n            \"systemId\": \"60da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjczOTY0NzE3NjM1MzEyODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-02\",\n            \"systemId\": \"68da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjQ3NDI3MjY1Mjk0MzM0MDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-03\",\n            \"systemId\": \"70da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODUyMDQyMTEyMDAyOTcwNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-04\",\n            \"systemId\": \"78da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM4MjIzMjk4MTQwMTMxNzI4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-05\",\n            \"systemId\": \"80da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAyODQ0NjAzNDEwMDQ4NTcwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-06\",\n            \"systemId\": \"88da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzMxMzI3NTk2MDQxMTMyNTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-07\",\n            \"systemId\": \"90da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Nzc3MjQ1Mzg2NzIxMTc5MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-08\",\n            \"systemId\": \"98da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjY3ODkwMjM5MDgxODQ1MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-09\",\n            \"systemId\": \"a0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDUxNTM4NDc1NDAwODYzNzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-10\",\n            \"systemId\": \"a8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTY0MDAzODExNDcyMTIwMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-11\",\n            \"systemId\": \"b0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzQ2OTAyNzgwNTAwMzk2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-12\",\n            \"systemId\": \"b8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg1ODM0MDY1Nzk4MjU0Nzc4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-13\",\n            \"systemId\": \"c0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4NzczODU4MTU3NDUyMzM2MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-08-14\",\n            \"systemId\": \"c8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NzM3MjUwODEwNjA5OTQ5ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-15\",\n            \"systemId\": \"d0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA1MTEwOTk1NTU2NzQzMzgxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-16\",\n            \"systemId\": \"d8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk4NTk5NzExMTA3MjUyNzM0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-17\",\n            \"systemId\": \"e0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkwNzkxOTAzNzI3ODUzNzA0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-18\",\n            \"systemId\": \"e8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk4NDkzMzMwODYxMjE1NDA5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-19\",\n            \"systemId\": \"f0da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjY3ODQ0OTEzNzQ4MTEwOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-20\",\n            \"systemId\": \"f8da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzAyNzQ2MjY2MTQxMjQ4MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-21\",\n            \"systemId\": \"00db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzYxNjYwNTQxMTA5ODczMTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-22\",\n            \"systemId\": \"08db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQyNjA2MjY3Mjg3OTY3ODc3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-23\",\n            \"systemId\": \"10db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MTU4NjM5NzMwOTY3NjUxOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-24\",\n            \"systemId\": \"18db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjc3MjkyNzYzOTc2ODI3NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-25\",\n            \"systemId\": \"20db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ4ODYyMjE0OTAzMDU2NzM3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-26\",\n            \"systemId\": \"28db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTQ2MTg4MDA2MTY1OTMzMzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-27\",\n            \"systemId\": \"30db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI5MDQ2MDc0MDYwMTUzMDU5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-28\",\n            \"systemId\": \"38db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc4MTEwNTU5Mjk2MjE5NjYwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-08-29\",\n            \"systemId\": \"40db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTQ3NzcwNDM5NDk0NTU1MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-30\",\n            \"systemId\": \"48db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTY5NDU2NDM0NDcwNzAyNTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-08-31\",\n            \"systemId\": \"50db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzczMjYzODkwMDE2Nzk5NzI3MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-01\",\n            \"systemId\": \"58db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc5NzE1ODg2NTczOTk0MTEzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-02\",\n            \"systemId\": \"60db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjI3MzQ5MDI0NTg5ODEwMDkwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-03\",\n            \"systemId\": \"68db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4OTQ0MjAzNDk0MDkwNDAzODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-04\",\n            \"systemId\": \"70db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxMjEwMjI4NTUzMjI4MDQ2MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-05\",\n            \"systemId\": \"78db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzMyNDQ5ODQyMzIxNDg5MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-06\",\n            \"systemId\": \"80db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDE4MzAwODA2NjMwNDYzNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-07\",\n            \"systemId\": \"88db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTA0NDQ3NjI4ODkzMjcxMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-08\",\n            \"systemId\": \"90db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4ODIyMzkzOTQxOTQ5NDQ0OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-09\",\n            \"systemId\": \"98db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyOTE2NDgxMjg5NTUyNzI1ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-10\",\n            \"systemId\": \"a0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjAwOTEwMjIyMzg3NjA5MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-11\",\n            \"systemId\": \"a8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzkzMzcwNDc1NjYyNDQ0ODEzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-12\",\n            \"systemId\": \"b0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNTMwMjA5MDY0NDcwMDUwMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-13\",\n            \"systemId\": \"b8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NzcxNjczOTM5NDU2MTgwNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-14\",\n            \"systemId\": \"c0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkzMjE4MDc5NjM4NzY5NTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-15\",\n            \"systemId\": \"c8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY0ODEwNjI3NzU3OTM4ODk3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-16\",\n            \"systemId\": \"d0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTExMjYwMzgwODE4NDQzMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-17\",\n            \"systemId\": \"d8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTgzNTk5MzAyMTYyMzQ5NDQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-18\",\n            \"systemId\": \"e0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA0MDYwNzg2ODMzMjEzMTAxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-19\",\n            \"systemId\": \"e8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk1NzE2ODI4MDA3MzA1MTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-20\",\n            \"systemId\": \"f0db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAwMTQ1OTY5OTI1MzU5NTM1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-21\",\n            \"systemId\": \"f8db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg4MTEwMzk3MTk3MzA4MTIwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-22\",\n            \"systemId\": \"00dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAwMzY2MDgyODcyODMxODQyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-23\",\n            \"systemId\": \"08dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQ2MTc5OTQ3MDM0MjYxNjQzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-24\",\n            \"systemId\": \"10dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzMxNDE2MzEyMTU1NjcyODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-25\",\n            \"systemId\": \"18dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MTEyNjQwMjg2Nzc4Mjg2MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-26\",\n            \"systemId\": \"20dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDQ5MzEzNzc5MjA5NDg1MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-09-27\",\n            \"systemId\": \"28dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIwOTQ4MTU2MzU0NTYwNjA3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-28\",\n            \"systemId\": \"30dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE0ODQ3MTU4NDU0Mzk1MTEzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-09-29\",\n            \"systemId\": \"38dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MjMxODM4ODk4NDM0MzA1ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-09-30\",\n            \"systemId\": \"40dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUyNDU4Njc0NTUwNzg1NTc5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-01\",\n            \"systemId\": \"48dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTgzNjYxODkzMTA2MTEyODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-02\",\n            \"systemId\": \"50dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjM1MjIzNDAyNzc5OTk3NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-03\",\n            \"systemId\": \"58dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY1NjEwNzI0NDcwMTcwMDIyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-04\",\n            \"systemId\": \"60dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MzE2MjYzODE0MTA5NTI1NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-05\",\n            \"systemId\": \"68dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg4Njg4NzY4ODU4MDQxOTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-06\",\n            \"systemId\": \"70dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzM5MDg0MTI4ODAzNTMyMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-07\",\n            \"systemId\": \"78dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDk5OTkwMTYzMTE0NzIzNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-08\",\n            \"systemId\": \"80dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzYxNzA2MTg3NDg4NjUwMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-09\",\n            \"systemId\": \"88dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzgwOTQ0OTM1NzM0NjgyMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-10\",\n            \"systemId\": \"90dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjk1NjAwOTc1MDUwNzg5NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-11\",\n            \"systemId\": \"98dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTE1NjUxNzg5OTg0NTQ0NzM2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-12\",\n            \"systemId\": \"a0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDM5MTI3OTI5NTQ2NjcyNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-13\",\n            \"systemId\": \"a8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODc2OTE3NzgzNTgzMjkwNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-14\",\n            \"systemId\": \"b0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTcyNzIxNTk2NDAxNjAyNTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-15\",\n            \"systemId\": \"b8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyNTY2NDA4NDA0NTg2Nzg4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-16\",\n            \"systemId\": \"c0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTA0Njg3MTg3OTE3MTY3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-17\",\n            \"systemId\": \"c8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjAxNjU4NzEzOTg4MTE3OTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-18\",\n            \"systemId\": \"d0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk1MDAxOTY5NzcwNDYyOTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-19\",\n            \"systemId\": \"d8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwNzU1NTQ1MzExMjYzMzM4NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-10-20\",\n            \"systemId\": \"e0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NTMwNjkwMzMwNTIyNDYzNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-21\",\n            \"systemId\": \"e8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA3MTM4NTY4MjE5ODQzMTk1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-22\",\n            \"systemId\": \"f0dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzgxMDM5ODMzMjE3Nzc5NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-23\",\n            \"systemId\": \"f8dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc5MzQyODQxMzU3MTkzMjk0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-24\",\n            \"systemId\": \"00dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzI2ODYwOTcxMzk1MzgyOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-25\",\n            \"systemId\": \"08dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY0NjY2MjMxNzc0NDA1MjgwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-26\",\n            \"systemId\": \"10dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDE2NDQ4ODQzMjI1OTI5NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-27\",\n            \"systemId\": \"18dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzc1OTcxNTU1ODQ3OTkyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-28\",\n            \"systemId\": \"20dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU0NTc5NjMzMDczOTYxNzU1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-10-29\",\n            \"systemId\": \"28dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3ODM0ODYyODMyNDM5MDMzOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-30\",\n            \"systemId\": \"30dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1ODAxNjQ4MzM4OTEzNjE0ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-10-31\",\n            \"systemId\": \"38dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA4NTE4MTU5MjkwMjc5ODQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-01\",\n            \"systemId\": \"40dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0OTQ3NTMyNTQ3ODI1OTUyODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-02\",\n            \"systemId\": \"48dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ2Mzg5MzkxNzgxOTY4Mzc3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-03\",\n            \"systemId\": \"50dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDEyNTYwOTk0MjE5MzYxMDU4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-04\",\n            \"systemId\": \"58dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0OTYyODIyOTkzMDAxMTIwOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-05\",\n            \"systemId\": \"60dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5Njk1NjIwNjIwMjc1MzQzNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-06\",\n            \"systemId\": \"68dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjA1OTY2NDI2OTc2ODQ0MDc4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-07\",\n            \"systemId\": \"70dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk5MzA5NjgyNzU5MTg5MDc5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-08\",\n            \"systemId\": \"78dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIwODM3NDc1MzU0MDI2MzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-09\",\n            \"systemId\": \"80dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTg1OTE1MzAxMTQwODM0ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-10\",\n            \"systemId\": \"88dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDIzNjU4NjU3NTM2MTA1MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-11\",\n            \"systemId\": \"90dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MTc0MzMzMjc2MzI1OTQ2ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-11-12\",\n            \"systemId\": \"98dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjA0MzI5MjkwMzUzOTM5MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-13\",\n            \"systemId\": \"a0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDcwMjI0Mzc3MjAxMzIwNDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-14\",\n            \"systemId\": \"a8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk3OTg3MTIwODg0OTk0ODA3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-15\",\n            \"systemId\": \"b0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE2NzA2NTY1Mzk2ODY0MDMyMTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-16\",\n            \"systemId\": \"b8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDg4NjM4MzY2NDE0NDI0NzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-17\",\n            \"systemId\": \"c0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxNDAxOTk4NzYwODgzMDkzMTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-11-18\",\n            \"systemId\": \"c8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTc4MjI2MjM4MjQ0OTcxNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-19\",\n            \"systemId\": \"d0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1Nzg1Njc5NzU4MTQxNzM0NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-20\",\n            \"systemId\": \"d8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTMwNzU3MzcyNTc1ODY1OTM0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-21\",\n            \"systemId\": \"e0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTE1OTc3MDE2NTk4MTc3MTQzMTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-22\",\n            \"systemId\": \"e8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTUyODUxNzY2MTkzMjk2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-23\",\n            \"systemId\": \"f0dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjE0NTY3NzkwNTY3MjIzNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-24\",\n            \"systemId\": \"f8dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk4Mjg0ODM4MTE0NDI1NTg3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-25\",\n            \"systemId\": \"00de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUxOTIyMDI5ODE0MDcyMzQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-26\",\n            \"systemId\": \"08de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY0MDU0NTk3OTE3MzQ2MzczMTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-27\",\n            \"systemId\": \"10de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTIzMTU2MDA4ODc0Njg5MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-11-28\",\n            \"systemId\": \"18de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzUyMTY4OTA0MjU2NjgwNDQwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-11-29\",\n            \"systemId\": \"20de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxNTAwNTIxMTgyODk2MDAzMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-11-30\",\n            \"systemId\": \"28de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzUwOTk4MzA5NzcwNDc5OTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-01\",\n            \"systemId\": \"30de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU5MTk1ODE5Njg1Njc5Nzc5MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-02\",\n            \"systemId\": \"38de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc4OTAwODY3NDI3ODE4NDQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-03\",\n            \"systemId\": \"40de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODcyMjQ0MTIzMjEwMTYzNDQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-04\",\n            \"systemId\": \"48de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNDI3MzM2MDA0NjQ1MDg2MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-12-05\",\n            \"systemId\": \"50de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzc5MTA1NTE3NDYwOTc2MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-06\",\n            \"systemId\": \"58de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI3MTA3MDk2MjI4Mjk3NDczMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-07\",\n            \"systemId\": \"60de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTkzMjc4Njk4NjY1NjkwMTU0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-08\",\n            \"systemId\": \"68de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTAwNDcxNTAxOTU0Nzc4NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-09\",\n            \"systemId\": \"70de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAzMTg4MTM0Mzg1MDU4NTQwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-10\",\n            \"systemId\": \"78de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDkzMjc1MzU5MjM2MDE3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-11\",\n            \"systemId\": \"80de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTQ1NDcxNzk5NDU5MTI5OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-12\",\n            \"systemId\": \"88de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgyMTE2NTE1NjAzMDY3ODQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-13\",\n            \"systemId\": \"90de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDU3NjMzMjc3NjUxMzU5MDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-14\",\n            \"systemId\": \"98de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNjAwNDIxMjUwNTk1NTgyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-15\",\n            \"systemId\": \"a0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ4NTk3MDYzOTQ2OTgyNTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-16\",\n            \"systemId\": \"a8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA0MTg0Mjk0NzcxNTUzMDIxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-17\",\n            \"systemId\": \"b0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYzNjI1MjU0ODM2MTI0NzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-18\",\n            \"systemId\": \"b8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE1ODUyNzg3MDEwNTc0OTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-19\",\n            \"systemId\": \"c0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY4NTY1NDE3NjYzMTYxMjA4MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-20\",\n            \"systemId\": \"c8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTI1OTY0MTI5NjA4NDQ5NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-21\",\n            \"systemId\": \"d0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDk5MTYxMjc3NjEzMDEyNDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-22\",\n            \"systemId\": \"d8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODgzNjgwODAzMzI3MjMyODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-23\",\n            \"systemId\": \"e0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NjM4NTg0NjczMTU3MTg4NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2023-12-24\",\n            \"systemId\": \"e8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzgxMTI4NzQxNTM4ODg3MjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-25\",\n            \"systemId\": \"f0de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY5MTUyMDMwODM4NjkxMDcxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-26\",\n            \"systemId\": \"f8de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ1Nzc3MDQ0NDAyMDM2MjY0MTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-27\",\n            \"systemId\": \"00df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjkyOTcwNTk4MzU0ODk2OTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-28\",\n            \"systemId\": \"08df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc1ODIwMzcyOTQ3MzYzNTMxMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-29\",\n            \"systemId\": \"10df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODIxODAyMzYxMjI3MTI4ODIwMTswMDsn\\\"\",\n            \"planningDate\": \"2023-12-30\",\n            \"systemId\": \"18df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDc2OTEwMDgyMTIyMzY1NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2023-12-31\",\n            \"systemId\": \"20df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 3,\n            \"pendingGuarantee\": 3,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MzI2Njc3NjIwMjI1ODQzNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-01\",\n            \"systemId\": \"3fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:25:59.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzA2MDY4NzIwMjY4MjgzNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-02\",\n            \"systemId\": \"47c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MzgxODI3OTkzODc5NDQ3MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-01-03\",\n            \"systemId\": \"4fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.34Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzI2NjIyNzAzMDY1MzEyMzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-04\",\n            \"systemId\": \"57c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE5OTQ4NjUwNTExNDAxMTYyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-05\",\n            \"systemId\": \"5fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTE5MzUwMDE3Nzg3MzU2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-06\",\n            \"systemId\": \"67c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTExNzg1ODYxMjgwNTUzMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-07\",\n            \"systemId\": \"6fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYzNDQ4ODA2NTg3MzAzNjYxMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-01-08\",\n            \"systemId\": \"77c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODcyMDA2OTY1MjU2MjI4OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-09\",\n            \"systemId\": \"7fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTIwNzM2MjE1MzIwMTgwNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-10\",\n            \"systemId\": \"87c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjUyMjUxODQxNDQ2ODU4NDMzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-11\",\n            \"systemId\": \"8fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDgwOTU3MzE5Mjk1ODU2NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-12\",\n            \"systemId\": \"97c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTczMzM4MzY5ODM3OTgyOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-13\",\n            \"systemId\": \"9fc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc5MTA1NjIwOTA4NDk1Njc2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-14\",\n            \"systemId\": \"a7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mjg0ODI5NTY2OTU5Njg4NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-15\",\n            \"systemId\": \"afc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzU2NzAyNjQ5NjkxMzMxOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-16\",\n            \"systemId\": \"b7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTI0NDk2OTY5NjM5Mzc3MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-17\",\n            \"systemId\": \"bfc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjY4MTkzODQ2ODEzMDM3NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-18\",\n            \"systemId\": \"c7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA0OTgzMzQxMDA0NDQyOTM4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-19\",\n            \"systemId\": \"cfc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzNTc0NDk3ODY3NDk0NzY4MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-01-20\",\n            \"systemId\": \"d7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTc1OTIzMTk4NTg5Nzg4MDQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-21\",\n            \"systemId\": \"dfc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjYwNDA4Mjk5MDkyMjYzMTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-22\",\n            \"systemId\": \"e7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzg3NTM0NjA1NjE4MTI1OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-23\",\n            \"systemId\": \"efc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzU3MjIxNDAwMDI3NTYzODMyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-24\",\n            \"systemId\": \"f7c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjM3MTA1Njg0MDI1MTAyNDMzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-25\",\n            \"systemId\": \"ffc6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NTE2OTAzNjExOTEyNzY5MDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-01-26\",\n            \"systemId\": \"07c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3NTA1MzMyMDExNjY2NjI5MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-01-27\",\n            \"systemId\": \"0fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDc4Njg4NTUyNTY4NzE3ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-28\",\n            \"systemId\": \"17c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTk1NjYwMzQ0Mzk0NTM4NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-29\",\n            \"systemId\": \"1fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTAwNTQyMDk4Nzc5NjgxNzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-01-30\",\n            \"systemId\": \"27c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk1MzE0NjgyNjA1MDMxMDAwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-01-31\",\n            \"systemId\": \"2fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjYwNzYzMjAyNzU1MzU3NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-01\",\n            \"systemId\": \"37c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTc5NzAzOTYwODUzMzA2NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-02\",\n            \"systemId\": \"3fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTU5NDcxNzk5OTI0MDAyMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-03\",\n            \"systemId\": \"47c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMTM3NDIwNjM0NTcyMDg5NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-04\",\n            \"systemId\": \"4fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQzMTgwNTQwOTg4NzA0OTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-05\",\n            \"systemId\": \"57c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk0ODc3NzIwMTcxMjg3MDU1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-06\",\n            \"systemId\": \"5fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc0MzI5NjYwNzAwODc1NTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-07\",\n            \"systemId\": \"67c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTMxNDQ2Nzk2NDkzNTYyODMzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-08\",\n            \"systemId\": \"6fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM5NjcyNzU5ODE1NTUzNjI3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-09\",\n            \"systemId\": \"77c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MzIwOTE0NTQ1NTA4MzgxNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-10\",\n            \"systemId\": \"7fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTY0MjI5NTY5MzIzODE2MTA5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-11\",\n            \"systemId\": \"87c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjQzMzgzNjg4NjU5NTY2MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-12\",\n            \"systemId\": \"8fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDc2NDc4NDg2MTA5Mzc5MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-13\",\n            \"systemId\": \"97c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODg1NDc1ODQwNzg0ODA3MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-14\",\n            \"systemId\": \"9fc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYzMzIwMjI5ODE4MTg4MDAyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-15\",\n            \"systemId\": \"a7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjE4MzY2Mjg4MzU2OTkyMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-16\",\n            \"systemId\": \"afc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI3NTI5NDQ1MDMwNzEyMTE2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-17\",\n            \"systemId\": \"b7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzA3NTY4NjcxMjIwNTMzNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-18\",\n            \"systemId\": \"bfc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMyNTkyMTQ0MTAxNjczNTEwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-19\",\n            \"systemId\": \"c7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTAwOTMwOTE2NDkxODA0OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-20\",\n            \"systemId\": \"cfc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzMyMzY4MDIxNTg5NDg4MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-21\",\n            \"systemId\": \"d7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMwMDg0NzQyNDIzNjE1NDkwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-22\",\n            \"systemId\": \"dfc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjE3NzcxNTc3NzM2NDgxNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-23\",\n            \"systemId\": \"e7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTQ0ODk3ODg0MjYyMzQ0NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-24\",\n            \"systemId\": \"efc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MjczNjE5MjQxNDQ3MjAwNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-02-25\",\n            \"systemId\": \"f7c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY3NTQwMTQ0MDU5NTYwNDA2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-26\",\n            \"systemId\": \"ffc7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjgwNjAwNjAwNDY3NjU2ODAwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-27\",\n            \"systemId\": \"07c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTIyNDY3Mjk0NTU5MjUyMTUzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-28\",\n            \"systemId\": \"0fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk4NjY4NjE0MDE0MjAzODc0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-02-29\",\n            \"systemId\": \"17c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU4NDg5NDA0OTU2ODE5NzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-01\",\n            \"systemId\": \"1fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg1ODEzODM0NzY3ODczNzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-02\",\n            \"systemId\": \"27c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAyNTkzMjY2NzYyNjc4MjIxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-03\",\n            \"systemId\": \"2fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODY0NTg0OTI4MjUxNDkwMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-04\",\n            \"systemId\": \"37c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQyNDU5MTM3MzQ4MTMyMDE2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-05\",\n            \"systemId\": \"3fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjgzNDc3ODQzMzMyMzk3NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-06\",\n            \"systemId\": \"47c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzczNjA4MjU3MDYwMzAyNTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-07\",\n            \"systemId\": \"4fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTYxMzY2NDQ3OTM1MjUwNzMxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-08\",\n            \"systemId\": \"57c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjczMzUwMDQ4NzgyODUzOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-09\",\n            \"systemId\": \"5fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY1MjYxNzI3MDY3MTYyODQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-10\",\n            \"systemId\": \"67c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODIwOTUyMDU0NjMyNDk4MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-11\",\n            \"systemId\": \"6fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzMyNDQ0Mjk2NDk0NTIyNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-12\",\n            \"systemId\": \"77c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA1NTgyOTA1MTIzMDcxNDgxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-13\",\n            \"systemId\": \"7fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODI1NjIzNTE5NjQyMDIwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-14\",\n            \"systemId\": \"87c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI2NzEzNzIyNjIyODY0NzYzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-15\",\n            \"systemId\": \"8fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjk2NTcxNDc4MTM3MjcyMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-16\",\n            \"systemId\": \"97c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg5NTQxOTYzMjc4NTA4NDQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-17\",\n            \"systemId\": \"9fc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY5NzIwNDkyNDk3MDg3MTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-18\",\n            \"systemId\": \"a7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MzA4Mjc3NjcxMjM2MzQ0NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-19\",\n            \"systemId\": \"afc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk1MjIxMjY0NTI5ODMwNDczMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-20\",\n            \"systemId\": \"b7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjY4NDk4Nzc1MjEyMDIwMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-21\",\n            \"systemId\": \"bfc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYxMjc2MDk2NjQxMzE0NjA0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-22\",\n            \"systemId\": \"c7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTYzNjM1NTAxOTUzMTY4MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-23\",\n            \"systemId\": \"cfc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTcwMzUxODYxNzM2NTY2MjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-24\",\n            \"systemId\": \"d7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTU5NDYyNjM1MDA2MzM4NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-25\",\n            \"systemId\": \"dfc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTc1ODMyMjgzMTQ5NzM1NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-26\",\n            \"systemId\": \"e7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDI0NTYxMTQ1MjYzMzg3MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-03-27\",\n            \"systemId\": \"efc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkyMTQzNjEzNDI2NzUyODAzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-28\",\n            \"systemId\": \"f7c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjkwNTY2MzYxODQ1ODY4MTA4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-29\",\n            \"systemId\": \"ffc8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk0Nzc2MzEyODA3Mjc5NzMzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-30\",\n            \"systemId\": \"07c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEzMjYyNTU0MjgxMzE3NzkwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-03-31\",\n            \"systemId\": \"0fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjMzOTYzMjY5OTc1MTU5NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-01\",\n            \"systemId\": \"17c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk1MDg1MjQ4MzI0MjQ3NDQwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-02\",\n            \"systemId\": \"1fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU5OTQ5ODE4MjU3NDU2NjY2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-03\",\n            \"systemId\": \"27c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjI0MzkzNjgwMTg3OTAyMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-04\",\n            \"systemId\": \"2fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjgzNDM3NTE3OTE3Mjc4MzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-05\",\n            \"systemId\": \"37c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI5MjkxMDk1MTkzMjM3MTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-06\",\n            \"systemId\": \"3fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.903Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEwNDg1MDc1ODgxODIwMDk0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-07\",\n            \"systemId\": \"47c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.903Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ1MTc3MjEzMjI2NDcwMTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-08\",\n            \"systemId\": \"4fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjI4MjY2MzY5MjMxMTQ1NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-09\",\n            \"systemId\": \"57c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODgwNzM5NjE4NDcxNTIzMDE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-10\",\n            \"systemId\": \"5fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Nzc5MzMxNjY2NTM3NjM4NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-11\",\n            \"systemId\": \"67c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU1Njk3ODkyNTc1MDk5NDY4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-12\",\n            \"systemId\": \"6fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTM5NTUyNzcwNTEzMzE0NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-13\",\n            \"systemId\": \"77c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMzk1NDk2Nzg4MTUzOTkwNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-14\",\n            \"systemId\": \"7fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDg2MzY3NzgwNjQ3MTMwMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-15\",\n            \"systemId\": \"87c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI1NTM0MzA4MTQzMTE3MjQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-16\",\n            \"systemId\": \"8fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDQ4NzA2MzcxNDQyNzYyMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-17\",\n            \"systemId\": \"97c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTUxNTQ4NzkwNTY0MTgyODUxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-18\",\n            \"systemId\": \"9fc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzM0NjQyODY4MDU0NjgyNjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-19\",\n            \"systemId\": \"a7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTIzMTMwNzgxNjMyOTgzNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-20\",\n            \"systemId\": \"afc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI0MTA4NjcxNzc2ODI1Njk0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-21\",\n            \"systemId\": \"b7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ3ODI1NDIxNjkwMTU5MDgwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-22\",\n            \"systemId\": \"bfc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ4MDY3NDQzOTYzNjYwNTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-23\",\n            \"systemId\": \"c7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI4NTUyMTE1NjQxNTAxNTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-24\",\n            \"systemId\": \"cfc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODMwNjY5MTk0MjIxNDc4NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-25\",\n            \"systemId\": \"d7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.043Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDA1Mzc3MDk0MjYxODE2NzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-26\",\n            \"systemId\": \"dfc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.043Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMwNjgxOTk5MTkyNDk5MzMzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-27\",\n            \"systemId\": \"e7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjA4OTg5NDg2MTYyNzQ3MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-28\",\n            \"systemId\": \"efc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU5NTEzNzYyMDY0NzMxMTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-04-29\",\n            \"systemId\": \"f7c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTY5MjEwNTkwMTM4NDIyNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-04-30\",\n            \"systemId\": \"ffc9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTc1MDg3ODExNTkwNzU1MjU4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-01\",\n            \"systemId\": \"07ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUyODUyNTM3NTEyMDkwODUxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-02\",\n            \"systemId\": \"0fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTExMDk5MjE5ODgzMjI4MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-03\",\n            \"systemId\": \"17ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwMjM0MjMyMjg4MjEwMjQyMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-05-04\",\n            \"systemId\": \"1fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzYxODYyODI5NjAyOTAxNDM5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-05\",\n            \"systemId\": \"27ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTk2MjcwNTU5ODA2ODQxMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-06\",\n            \"systemId\": \"2fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU5NjA5NzU0NDA5MTY4MDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-07\",\n            \"systemId\": \"37ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTQ2OTcyMDc5NjMxNzAyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-08\",\n            \"systemId\": \"3fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0NDAxNDgwMDQxMTc4Njk2MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-05-09\",\n            \"systemId\": \"47ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDYwNTgwNzYzNTczMzY0MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-10\",\n            \"systemId\": \"4fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU1MDUwMjgwOTExMTAwODU0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-11\",\n            \"systemId\": \"57ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ4MDQ2Nzc4ODgyNDk5ODA3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-12\",\n            \"systemId\": \"5fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEzMzcxMDUzOTY4MjIzNzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-13\",\n            \"systemId\": \"67ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE2ODY2MzMzMTg3OTA0NTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-14\",\n            \"systemId\": \"6fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYyNTg5MzA2OTI2MzkwNjE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-15\",\n            \"systemId\": \"77ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ1Njk4MDk2MDYwMTM2NDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-16\",\n            \"systemId\": \"7fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTcxOTQ5MTQ1NDIwNzcxOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-17\",\n            \"systemId\": \"87ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDM2MDA0MTY4MTMyOTgzOTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-18\",\n            \"systemId\": \"8fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYwNTQxNzU2MjkzOTcwOTQzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-19\",\n            \"systemId\": \"97ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU3OTQ5MDUzMjQzMDgyMDI0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-20\",\n            \"systemId\": \"9fca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY3MzMwMTM4NzQ2NjIxNTIxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-21\",\n            \"systemId\": \"a7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDczNzg0MjEzNjY5ODgzMDk5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-22\",\n            \"systemId\": \"afca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTE0Mzc3MzY5MjI1MTgyNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-23\",\n            \"systemId\": \"b7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgwMjExNDM5MTQ5ODgwODM2NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-05-24\",\n            \"systemId\": \"bfca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYxNjM0ODk4MjE5NjA3MzgyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-25\",\n            \"systemId\": \"c7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzMyNjM1MTEyMTA5Nzg5NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-26\",\n            \"systemId\": \"cfca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDkzMjQ2MjA5NjM5NDYyODI0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-27\",\n            \"systemId\": \"d7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzYxNDEyNjYyOTEwNTEzNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-05-28\",\n            \"systemId\": \"dfca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjc2MjY5NzMzNzkxNDM3OTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-29\",\n            \"systemId\": \"e7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTU2MTU0MDE3Nzg4OTc2NTY0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-30\",\n            \"systemId\": \"efca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMyMzU1MzM3MjQzOTI4Mjg1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-05-31\",\n            \"systemId\": \"f7ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY5NjQyNDY5MDExODY2OTM0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-01\",\n            \"systemId\": \"ffca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODM5MTU5MzIyMjg1MTgyNTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-02\",\n            \"systemId\": \"07cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTczMTQ3Mzk4ODQ4NjI2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-03\",\n            \"systemId\": \"0fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2NTA3MzU2NTY5NDMzNjE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-04\",\n            \"systemId\": \"17cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MTk2ODgyNjQzMzk5OTY0NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-05\",\n            \"systemId\": \"1fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY2MTk1MDY3ODg5MDM4NTQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-06\",\n            \"systemId\": \"27cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDE0MTQ4NDMxMzM1MjU1MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-07\",\n            \"systemId\": \"2fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MjIzOTk3Mzg1ODk1Mjk5ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-06-08\",\n            \"systemId\": \"37cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY2NDQ1ODY2OTQ4NjQ3NjAwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-09\",\n            \"systemId\": \"3fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjQxMDQ4NzQ0MjYyNzYxMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-10\",\n            \"systemId\": \"47cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1NDY1OTg3ODQ3MzM1OTkyMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-06-11\",\n            \"systemId\": \"4fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDEzMDQ2NTMwODM0NTQyOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-12\",\n            \"systemId\": \"57cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzU5MzUzMjQ2MzIzNjAyNTY0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-13\",\n            \"systemId\": \"5fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ0OTI2OTIyODA3ODU3NDM3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-14\",\n            \"systemId\": \"67cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzEyMDU5NTIxNjc1NzEzNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-15\",\n            \"systemId\": \"6fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjAxOTgxMDIxMTc0ODA2NzM2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-16\",\n            \"systemId\": \"77cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI1NDU1ODY0ODYyNjcxMzUzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-17\",\n            \"systemId\": \"7fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTA3ODY0MTI4NzExNzQ5NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-18\",\n            \"systemId\": \"87cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY3NTE3NzY5NTg1NzU2NTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-19\",\n            \"systemId\": \"8fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQyNzAzNjM3NTcwNzA0MDM2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-20\",\n            \"systemId\": \"97cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA2MzI2NzM2ODg1NjQxNTE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-21\",\n            \"systemId\": \"9fcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDYwNDAyNDg4Njg1NzA1ODE1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-22\",\n            \"systemId\": \"a7cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE4MzU5NTg4OTQwMTIwOTYwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-23\",\n            \"systemId\": \"afcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODcyNDg3Mjc1NjYyMDMwMjQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-24\",\n            \"systemId\": \"b7cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDA3NTA0MzYyNDQ4MTU1NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-25\",\n            \"systemId\": \"bfcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc0Mzk4NjA4NDA5NDc5MTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-26\",\n            \"systemId\": \"c7cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEzMjI1NDc5ODQzNjY5NjM3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-27\",\n            \"systemId\": \"cfcb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjQwNTA2MTA1NjkwOTcxMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-28\",\n            \"systemId\": \"d7cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA2MDQ4MTU2NDQxMTc5MTQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-06-29\",\n            \"systemId\": \"554b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzE2NzI3MTU3NDg3MTk5MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-06-30\",\n            \"systemId\": \"5d4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI3MjIwMDcxNzI1Njk2NjAzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-01\",\n            \"systemId\": \"654b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQzOTk5NTAzNzIwNTAxMTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-02\",\n            \"systemId\": \"6d4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQzNTA2NDcxODQyMjg5NDIyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-03\",\n            \"systemId\": \"754b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjcyMjI1Nzg1MTMxOTgyOTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-04\",\n            \"systemId\": \"7d4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMzQzMDk3NzEwODU2NTQzNjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-05\",\n            \"systemId\": \"854b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDc2OTM4NTU1NzI3NTA5ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-06\",\n            \"systemId\": \"8d4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Mjg1NTk2ODM3ODA3NTQzNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-07\",\n            \"systemId\": \"954b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODI1OTMzNDU3MDY3NTI1MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-08\",\n            \"systemId\": \"9d4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc0OTUzNjYyNDQ1Njg4OTgxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-09\",\n            \"systemId\": \"a54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTkyNDg3NDU0MjA5Mzk3MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-10\",\n            \"systemId\": \"ad4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ5MTQwMDgyMDg1ODY2MjE1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-11\",\n            \"systemId\": \"b54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDI4OTg0NDg5Mzc3ODc1MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-12\",\n            \"systemId\": \"bd4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzYwNjI0Njg0NjQ3MzI1ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-13\",\n            \"systemId\": \"c54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODUwNzUwOTQ0ODc2OTMzODQyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-14\",\n            \"systemId\": \"cd4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYzODExNDI2MjI5MTE5MDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-15\",\n            \"systemId\": \"d54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTQyMDQyMTM0ODY1OTY0MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-16\",\n            \"systemId\": \"dd4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjQ5MTk4NDg0NTg3MTM3MjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-17\",\n            \"systemId\": \"e54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjY1MjM4ODYzMTQ5MjgzNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-18\",\n            \"systemId\": \"ed4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTU0NDk4MzMyMjgwNDI3NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-19\",\n            \"systemId\": \"f54b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDA4ODMzOTE3NzE1MTM5MzY5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-20\",\n            \"systemId\": \"fd4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1Mzg3MTEzMDUxMjMzMjYzODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-21\",\n            \"systemId\": \"054c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjI0NTk4NzI2ODAzNjYwNDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-22\",\n            \"systemId\": \"0d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Mjc5OTA0NzIwODU3NzI1NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-23\",\n            \"systemId\": \"154c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkxNjI3NTMyNTYzMjQzNTY2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-24\",\n            \"systemId\": \"1d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAwMzE3MjYwMDU3NTUzNzUxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-25\",\n            \"systemId\": \"254c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM5OTk3MTkzMDkyMjQxNjk2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-26\",\n            \"systemId\": \"2d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDUwNTY3ODIxNzcyMTc1Mjc0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-07-27\",\n            \"systemId\": \"354c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTE0MDQwNjQxODQ3OTUzNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-28\",\n            \"systemId\": \"3d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNTk3OTk4NTU3NjE4MDM3NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-29\",\n            \"systemId\": \"454c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjQ0NTIzNjc3MDkyNzkwMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-30\",\n            \"systemId\": \"4d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzMzMTA3OTI1ODA3MDg2ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-07-31\",\n            \"systemId\": \"554c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTgyNzczMjkzOTA0Njk3NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-01\",\n            \"systemId\": \"5d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTA5ODE2NDM3NjQ5MDAwOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-02\",\n            \"systemId\": \"654c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMwNzUyMzcyOTg5MzIzODE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-03\",\n            \"systemId\": \"6d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4NTA0NzI5ODQzMTAzNTUyMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-08-04\",\n            \"systemId\": \"754c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTgxMTY4NzA3OTI4MDYwMzMyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-05\",\n            \"systemId\": \"7d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzk5MTM1ODMwODIxMzIxNDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-06\",\n            \"systemId\": \"854c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM1OTc4NzU1ODcxMDQ4NzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-07\",\n            \"systemId\": \"8d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDIxMjUxNTQyMzY1Mzk1MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-08\",\n            \"systemId\": \"954c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MzIyNDY5OTAzNDY1NTE1MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-09\",\n            \"systemId\": \"9d4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUxODYxMTQ3NjY1NzQ2NDQyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-10\",\n            \"systemId\": \"a54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA0NTczNzc4MzE4MzMyNzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-11\",\n            \"systemId\": \"ad4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0MTcxMTc5MDY1OTU3NDY4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-12\",\n            \"systemId\": \"b54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjQxMTc4MjA1MzE1NjA5NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-13\",\n            \"systemId\": \"bd4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTc0MzAwOTU2ODU1Nzg4NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-14\",\n            \"systemId\": \"c54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDQ3MTY0NzU4OTA0NDg4MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-15\",\n            \"systemId\": \"cd4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjY1OTc3NTU1Njg0NTY0MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-16\",\n            \"systemId\": \"d54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTE1MDA3OTkzMjMyOTQ3MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-17\",\n            \"systemId\": \"dd4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MzgzNTQ5NjIxODAxMzk2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-18\",\n            \"systemId\": \"e54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzY3MDc0Mjc1NDY5ODMzMDg0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-19\",\n            \"systemId\": \"ed4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAxMjAwNTczMjc4NzY5NjcwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-20\",\n            \"systemId\": \"f54c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjIxMzA0NjYyODk3ODU2NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-21\",\n            \"systemId\": \"fd4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNDk3MTgxMjA0NDc2MDE1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-08-22\",\n            \"systemId\": \"054d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTc3NzM0OTg5NjQ4NzQ4ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-23\",\n            \"systemId\": \"0d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ3MzQwNzQyMTY5MDI2NDc0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-24\",\n            \"systemId\": \"154d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg1OTI1NzA3Mzc3NzQ4MTc5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-25\",\n            \"systemId\": \"1d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTMwNzE3MTIwNTgzMjg5MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-26\",\n            \"systemId\": \"254d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM5MTIyMjY2NTI5MzA0NzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-08-27\",\n            \"systemId\": \"2d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODczMDcxNjExNzM3MTQyNTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-28\",\n            \"systemId\": \"354d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDk1NDE0NDYxMDk4MzQ4NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-29\",\n            \"systemId\": \"3d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzQ4NjU3MjExOTU1NTg4MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-30\",\n            \"systemId\": \"454d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTQ0NjYxMzc4NzQyODQ3NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-08-31\",\n            \"systemId\": \"4d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTY3MTYwNDc0NDMyNTUxMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-01\",\n            \"systemId\": \"554d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU1Nzg4MTA4NDE0NDg4OTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-02\",\n            \"systemId\": \"5d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM1OTY2NjM3NjMzMDY3Njg2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-03\",\n            \"systemId\": \"654d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTY4OTY1MzA2NDQwODM2NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-04\",\n            \"systemId\": \"6d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODM0NzI0NzY2MTg2MTYwNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-05\",\n            \"systemId\": \"754d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA2NjgwODg1Mzc1Mjg1MzI5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-06\",\n            \"systemId\": \"7d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2NzU3ODU3NzQ4NzQ1MTg2NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-09-07\",\n            \"systemId\": \"854d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTUwNTg3NzczMDEwNjE2MzI0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-08\",\n            \"systemId\": \"8d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTIxMTA2OTc0NjI5ODQ5Mzg5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-09\",\n            \"systemId\": \"954d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzc1OTM5MTYzMzU4NjM4Njc4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-10\",\n            \"systemId\": \"9d4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDkzMjA5ODYxNTQ1NjE3MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-11\",\n            \"systemId\": \"a54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MjQ0NDcxMTA4MDA2NTI3NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-12\",\n            \"systemId\": \"ad4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjQzNzcxNzY5NzQ1MTQyNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-13\",\n            \"systemId\": \"b54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgzMzE5NTcxMTU1NDYwNDkxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-14\",\n            \"systemId\": \"bd4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDg2ODIxMDcyODIwMDA0MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-15\",\n            \"systemId\": \"c54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM0NzMyNjYxNzUyOTc2MjA1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-16\",\n            \"systemId\": \"cd4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI5NzI2MTU1NDA0ODQ0MTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-17\",\n            \"systemId\": \"d54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE3MDQyNjkzMTUzMTg3MjMxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-18\",\n            \"systemId\": \"dd4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDcyMTI3NDg1NjAwNzEwMDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-19\",\n            \"systemId\": \"e54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTA4Nzk5NjY1ODEwMTUxNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-20\",\n            \"systemId\": \"ed4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjk1MjI3Nzk5NjAyODIwMjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-21\",\n            \"systemId\": \"f54d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIwNjU1NTg3MjQzNDgwMjc2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-22\",\n            \"systemId\": \"fd4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjkwODk5MDI5MjA1Nzg2MTA5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-23\",\n            \"systemId\": \"054e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNDk0NTA2MDA5ODE3MDk4NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-24\",\n            \"systemId\": \"0d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDIyNzcwNjIwNjY1NzkzODcxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-25\",\n            \"systemId\": \"154e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAyNTE5MjkyOTcxNTkyNjY1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-26\",\n            \"systemId\": \"1d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTY2MjUyMDIzMTUxMzAxMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-27\",\n            \"systemId\": \"254e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDY5NDU2OTc4NTU4OTAxMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-28\",\n            \"systemId\": \"2d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQyNTQ3MTUyMjg3MzQ1NjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-09-29\",\n            \"systemId\": \"354e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTczNzkzNDEwMTYxMzQ5NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-09-30\",\n            \"systemId\": \"3d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTU1OTU0NTU4MTE4MjkzMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-01\",\n            \"systemId\": \"454e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDgzMjIyNDYyMzI0NjAzMzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-02\",\n            \"systemId\": \"4d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk0NDYzMTc5NDk2NTM4ODczMTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-03\",\n            \"systemId\": \"554e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzA3MjgzMDEzMTAxNTE3MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-04\",\n            \"systemId\": \"5d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNzE1NDA1NDA0ODc5ODAyNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-10-05\",\n            \"systemId\": \"654e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg2NzA0NDA5MDA5MzMxODI4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-06\",\n            \"systemId\": \"6d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODg2NDEwODYyOTczOTg0NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-07\",\n            \"systemId\": \"754e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDE1OTU2MjMxNzU0NTM1MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-08\",\n            \"systemId\": \"7d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDgwNzM2ODE5MDAwOTQ1OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-09\",\n            \"systemId\": \"854e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDU3MzczNzc3MDQ0NTA1ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-10\",\n            \"systemId\": \"8d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzI0MzgwMTkxMDgzNzE3NDQyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-11\",\n            \"systemId\": \"954e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MDM2ODY2NzE4NDUxNDE2MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-12\",\n            \"systemId\": \"9d4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI5MzA0ODgyODQ4MTY3MzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-13\",\n            \"systemId\": \"a54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMzOTYxODE0MDQ3MTk3NTE4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-14\",\n            \"systemId\": \"ad4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjU2MjAwMTI4MzM5NTIzNzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-15\",\n            \"systemId\": \"b54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzMzNDQwNDEyNzI3MTIwOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-16\",\n            \"systemId\": \"bd4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODgxNTk2MTIwNTMzMTMyNDg5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-17\",\n            \"systemId\": \"c54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODAxMDM0NzQ2OTg4OTYxNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-18\",\n            \"systemId\": \"cd4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDk2MDcyMjQ4NDgxMjUwMDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-19\",\n            \"systemId\": \"d54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjgxOTAzNzM5MjI4NDAwMzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-20\",\n            \"systemId\": \"dd4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjcyNzgwNzYwMzIzMTY0MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-21\",\n            \"systemId\": \"e54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzk1MjQ2NTY3MTgzMDk3ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-22\",\n            \"systemId\": \"ed4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExOTA3NjUzNzM4OTAyNDUzMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-23\",\n            \"systemId\": \"f54e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk3NTIwMjMwNzQ5ODkyODg5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-24\",\n            \"systemId\": \"fd4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ0MzA0ODMyMTQ5NTY4MDY2MTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-25\",\n            \"systemId\": \"054f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjg4NDE4MjEzNTAyODc1NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-26\",\n            \"systemId\": \"0d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjAyMTYxODQxMDM0MzcxNTczMTswMDsn\\\"\",\n            \"planningDate\": \"2024-10-27\",\n            \"systemId\": \"154f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU3ODY2NzUwMzczMDk0NDc5ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-10-28\",\n            \"systemId\": \"1d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0ODA3NDc2OTYwODA2NzQxMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-29\",\n            \"systemId\": \"254f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTI5NDYwMTY1NTIwNjg3MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-30\",\n            \"systemId\": \"2d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTU2NTU2MzEyNzM1NTM4MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-10-31\",\n            \"systemId\": \"354f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODYzMjg3MzM0MDQyMzczNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-01\",\n            \"systemId\": \"3d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjUyMDI4NzA2OTc3MTE0MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-02\",\n            \"systemId\": \"454f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MTU1NDk0MTgyMDc1NDE1MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-03\",\n            \"systemId\": \"4d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk4MDA4NTAxMTIxNjYzNTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-04\",\n            \"systemId\": \"554f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAxNjc1NzE5MTQyNjA3NzE5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-05\",\n            \"systemId\": \"5d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTkxMTY5MjMzNTEyNTgyNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-06\",\n            \"systemId\": \"654f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDYxMDc5NjY4ODU5MTE1NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-07\",\n            \"systemId\": \"6d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDgyMDk2MjA4Mjc4MDkwOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-08\",\n            \"systemId\": \"754f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA1MTIxMzc0NTEzMDk4MzQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-09\",\n            \"systemId\": \"7d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA5MTg1OTM5MjQ0MjM0NjQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-10\",\n            \"systemId\": \"854f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Njc3MDIzMzgyNjE3NDU4NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-11\",\n            \"systemId\": \"8d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjY2NzY2MDQ3NDA1ODMxOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-12\",\n            \"systemId\": \"954f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDU0OTM2MjEyODc3NzYxOTUzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-13\",\n            \"systemId\": \"9d4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzAxNzkwMjQ5NjE0NjgxODAyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-14\",\n            \"systemId\": \"a54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mzg2MzYxMTA1MDkyNjIxMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-15\",\n            \"systemId\": \"ad4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTc4NTA3ODg5ODEyMTQ3OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-16\",\n            \"systemId\": \"b54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODU3OTUxOTE2ODM4NjQ0MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-17\",\n            \"systemId\": \"bd4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjUyNDcxMzIyMTM0NTI5NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-18\",\n            \"systemId\": \"c54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjY1NjAzOTUwNDgzMTU4MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-19\",\n            \"systemId\": \"cd4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODk4OTc4NzQ3MjQxMDc0NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-20\",\n            \"systemId\": \"d54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzk1MTU4MzQ3NDUxMTcwMjgyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-21\",\n            \"systemId\": \"dd4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTMyOTg2ODc1NzMxMTY2OTk1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-22\",\n            \"systemId\": \"e54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDcxMTQ1MDQ5MTE3OTkyMzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-23\",\n            \"systemId\": \"ed4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTIzODU2MzUwNjc3NTIwODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-24\",\n            \"systemId\": \"f54f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzUzMTI5NTkyMjI0NDg0NjM5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-25\",\n            \"systemId\": \"fd4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM1NTAwMzAwMTAyODE3MzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-26\",\n            \"systemId\": \"05503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjgyMDAzNjk3ODE2MzM3NTIxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-27\",\n            \"systemId\": \"0d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDMwODMwOTIwOTk0NzY4MjgyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-11-28\",\n            \"systemId\": \"15503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTg3NzUzMjM2OTc0MTc5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-29\",\n            \"systemId\": \"1d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDE2ODYxMDQ3ODk2MzcxMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-11-30\",\n            \"systemId\": \"25503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTY2MTUwMjAyMzUyMDMwOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-01\",\n            \"systemId\": \"2d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg1ODY1NjYzMTcxODgxNzkxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-02\",\n            \"systemId\": \"35503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDM3NzQxMDE0MDk4MDU0MTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-03\",\n            \"systemId\": \"3d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODIyMTA1OTA0NjkzODk3MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-04\",\n            \"systemId\": \"45503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTkwMzcwNjk5NDU4MDI2ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-05\",\n            \"systemId\": \"4d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.983Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMzcyMzUyMjEyMTY4OTM3MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-06\",\n            \"systemId\": \"55503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDgxNjI4NDk4MTAxMDI1MTgxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-07\",\n            \"systemId\": \"5d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk1OTk4MTg1ODE4MzkxMjM4MTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-08\",\n            \"systemId\": \"65503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTQzODU4NDkwMzY5ODMxMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-09\",\n            \"systemId\": \"6d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTE5NTY5NjkwNjMxNDQzNTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-10\",\n            \"systemId\": \"75503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzcwNzA2MzgxNzg5NTA1NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-11\",\n            \"systemId\": \"7d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY1MDAzMjU5MTc1NTk5MTE0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-12\",\n            \"systemId\": \"85503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjM2Njc5MTM4MjAxODMxODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-13\",\n            \"systemId\": \"8d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU4MjIzNzU5MjM4MTYxMzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-14\",\n            \"systemId\": \"95503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTE3Njg5ODQyNzkxMzA2NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-15\",\n            \"systemId\": \"9d503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzY1NzMxMTgxMzA2MDgwMDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-16\",\n            \"systemId\": \"a5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjI5MzY4MjQxNzgzNTUxMDgwMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-17\",\n            \"systemId\": \"ad503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzNzM2NDU1NDUxMzMxNzI2NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-12-18\",\n            \"systemId\": \"b5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0MjE2NDczMTQxNjY2MDEwNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2024-12-19\",\n            \"systemId\": \"bd503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDkyODM1MDM3Njg4NDM1MTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-20\",\n            \"systemId\": \"c5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODUyNTM3MzI0MjM3MTk2NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-21\",\n            \"systemId\": \"cd503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NzE1ODkwNzM2NjM1NzIyNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-22\",\n            \"systemId\": \"d5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODAwMzA4Mzg2OTUzMjY1NzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-23\",\n            \"systemId\": \"dd503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEzNjYyNjIzMjAwNjI3NTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-24\",\n            \"systemId\": \"e5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTIzMjcyNzc4NDUyMTE2NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-25\",\n            \"systemId\": \"ed503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjU0NDQyNTIwMzQ5Mzc2NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-26\",\n            \"systemId\": \"f5503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mzc0MTgxMTE4NzU5NjMyMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-27\",\n            \"systemId\": \"fd503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgzNzY1MDY1MDQxNzQ4NjIxMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-28\",\n            \"systemId\": \"05513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjU3NDAzMDQ2MjE4OTA0ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2024-12-29\",\n            \"systemId\": \"0d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDM2ODM3MzA5NDc3MjM3OTgzMTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-30\",\n            \"systemId\": \"15513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE2ODAzNzg1MDUyMDE0NzQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2024-12-31\",\n            \"systemId\": \"1d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTIwNzMwMDE3NjE0MjM4MTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-01\",\n            \"systemId\": \"25513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODg2NzQ0MjAzMTY4ODc3ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-02\",\n            \"systemId\": \"2d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU0NzA1MjEwMjExNDYzMzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-03\",\n            \"systemId\": \"35513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3MTU5ODE5Njk3OTM4MjcwMTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-01-04\",\n            \"systemId\": \"3d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjU1NjAzOTQwMDYzMzIxMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-05\",\n            \"systemId\": \"45513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMwMzYxMTYxNTgwODgwMjI0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-06\",\n            \"systemId\": \"4d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzE4MjM3MzIyMTY3ODI3NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-07\",\n            \"systemId\": \"55513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjU4NjU4MzkyMDE2NTkxMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-08\",\n            \"systemId\": \"5d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDM2OTQzNjc0ODE2NTU4MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-09\",\n            \"systemId\": \"65513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA3OTM5Mzg4NzM4NzE0NDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-10\",\n            \"systemId\": \"6d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA0MzAxNjUwMTU1ODU0MjIxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-11\",\n            \"systemId\": \"75513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk3NjQzNTExMTA1MjU1NDQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-12\",\n            \"systemId\": \"7d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjc4MjQ5MjM1MjczNzYxMDg4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-13\",\n            \"systemId\": \"85513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTEyNzU4OTA3ODg2MzMxOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-14\",\n            \"systemId\": \"8d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTU3OTUxODEwNzA2ODAwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-15\",\n            \"systemId\": \"95513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk1OTczNDAwOTg1NTIwNDI3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-16\",\n            \"systemId\": \"9d513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDMxOTE1MjQzMDI5MTgyMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-17\",\n            \"systemId\": \"a5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzI0NjY1ODM5MTAxMDEyMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-18\",\n            \"systemId\": \"ad513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE3MjQwMzYzODE5MjMzMDc5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-19\",\n            \"systemId\": \"b5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc4MDc2NjA2MjMxODUzMTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-20\",\n            \"systemId\": \"bd513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODA5ODczODczMjQwNzIzMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-21\",\n            \"systemId\": \"c5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDY3NzQ2NzE3NzExMzE1ODkwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-22\",\n            \"systemId\": \"cd513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTY1NzM5NDA4ODk3NDY2NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-23\",\n            \"systemId\": \"d5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDk5MTU4MDE4MzkxNDc4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-24\",\n            \"systemId\": \"dd513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk5ODExMTk3NTIzODc5MDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-25\",\n            \"systemId\": \"e5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTczMTIxNDUwNzEzODYwMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-26\",\n            \"systemId\": \"ed513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5ODU0MTM4MTgzNDgyMTUwNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-01-27\",\n            \"systemId\": \"f5513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc5MzI3NTYyNTI5MjQ5NDQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-28\",\n            \"systemId\": \"fd513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTUyODExMjIyNTgwODQzMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-29\",\n            \"systemId\": \"05523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTc3NjIwNDY0Mzc1MjM1NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-01-30\",\n            \"systemId\": \"0d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEzNTUzNzE3NTg5Mzk1ODQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-01-31\",\n            \"systemId\": \"15523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY1OTgxNTMzMTE0MDIyODMwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-01\",\n            \"systemId\": \"1d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTExNDM1OTE0MTAxNDAzNzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-02\",\n            \"systemId\": \"25523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MTMzNzc4NzYzNDYyNjA5OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-03\",\n            \"systemId\": \"2d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDg1MDQ2NzQ2Mjk0Mjk0MzEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-04\",\n            \"systemId\": \"35523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDcyODk1ODM3MDY5NTAzNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-05\",\n            \"systemId\": \"3d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDc5NzczNDk5NzA0MzMwMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-06\",\n            \"systemId\": \"45523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTY1OTA0MjkyNjgxMzc1MDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-07\",\n            \"systemId\": \"4d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Njc1NDk3OTM5MTYzNjQzODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-08\",\n            \"systemId\": \"55523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjcwNjgzNDA0NTU0NDYyMzkxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-09\",\n            \"systemId\": \"5d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTQyMjIwNTA2MDA5ODgxMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-10\",\n            \"systemId\": \"65523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg2NTE4NTY0OTgxMjYzNDY2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-11\",\n            \"systemId\": \"6d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTM3NjI2MTM5NDM2NDg3NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-12\",\n            \"systemId\": \"75523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk2NzcxODA5NDY2ODEzMjI4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-13\",\n            \"systemId\": \"7d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1MTg2OTI4NTY1OTY2MTM5NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-02-14\",\n            \"systemId\": \"85523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEwNDA0MTg5MTUwMTkwOTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-15\",\n            \"systemId\": \"8d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjU5OTU0MzIwMTY1NTkwNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-16\",\n            \"systemId\": \"95523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTI4NTIyNjQ2MTIzODc0MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-17\",\n            \"systemId\": \"9d523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTg0NzU4Mzk2NjE4MDU2NTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-18\",\n            \"systemId\": \"a5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU1OTQxMjY1NjE5NDQ2OTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-19\",\n            \"systemId\": \"ad523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjMwOTAyMDI2MzIyNjU0Njg0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-20\",\n            \"systemId\": \"b5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjY0MDA4ODEyNTM3NTE4MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-21\",\n            \"systemId\": \"bd523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Njk4ODk0NjU1ODIwODU0MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-22\",\n            \"systemId\": \"c5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTc3NjE3NDk2NDc5MTgwMDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-23\",\n            \"systemId\": \"cd523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTIyNTAyMDA0ODY1MDYwMDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-24\",\n            \"systemId\": \"d5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MzAwNDUxNTY0MTY2MjE5OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-25\",\n            \"systemId\": \"dd523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjU2NTA2Njk4Njc4ODIxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-02-26\",\n            \"systemId\": \"e5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4NjU5ODY1MzkxMDQ2NjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-27\",\n            \"systemId\": \"ed523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg0MDI4MTE2Nzg0NjcxMDEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-02-28\",\n            \"systemId\": \"f5523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzU5NjcyMDIxOTI3MjE4MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-01\",\n            \"systemId\": \"fd523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODI4NjU4MTYxNDc1NzAxMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-02\",\n            \"systemId\": \"05533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUwNTM5NzgyODY4MTM3NzI5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-03\",\n            \"systemId\": \"0d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTExNDYzNzY4NTUwNDI0NjE4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-04\",\n            \"systemId\": \"15533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODM2NjIwODkwMjE4MTkyMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-05\",\n            \"systemId\": \"1d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTk3OTU3Mzk5NTUwMzMyNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-06\",\n            \"systemId\": \"25533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3Mzk1NDQ0MTIyNjA4MzIwNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-07\",\n            \"systemId\": \"2d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEwMTk3ODMwNzM4ODYxMTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-08\",\n            \"systemId\": \"35533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODMyNDMyMTE1Njc0OTgxNzY4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-09\",\n            \"systemId\": \"3d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjU3NTk0MTczOTcxMDk5MzEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-10\",\n            \"systemId\": \"45533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDUxODk0NjY2MTA5Mzk3MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-11\",\n            \"systemId\": \"4d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIxOTk2NTg5MjMyODE2MjQzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-12\",\n            \"systemId\": \"55533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI1NjYzODA3MjUzNzYwNDEyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-13\",\n            \"systemId\": \"5d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODE5NDg2MTI3MjAwMjc2ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-14\",\n            \"systemId\": \"65533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzAyODA2MDE5MzgzNzQ5OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-15\",\n            \"systemId\": \"6d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTg0OTIyMDAxOTYwMTgwODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-16\",\n            \"systemId\": \"75533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUwNjQwNDU4OTQ5MjIwNTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-17\",\n            \"systemId\": \"7d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUxNDY2NTU3MzgxNjE2MTIyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-18\",\n            \"systemId\": \"85533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU2MTQ5MjI2ODcyNTY0NTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-19\",\n            \"systemId\": \"8d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjkzNjM1NjQxNTA5NDQ4MTA5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-20\",\n            \"systemId\": \"95533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mjc3MjQ0NjIzMTU0ODkyODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-21\",\n            \"systemId\": \"9d533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDgxMzcyOTA3MzcyMzI5NjYzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-22\",\n            \"systemId\": \"a5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE3Njg1MDc4ODMxOTIwMjQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-23\",\n            \"systemId\": \"ad533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDEyMDI3NzUzMTAwNDA5MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-24\",\n            \"systemId\": \"b5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5MTI5NzE4MDIwOTgyOTIyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-25\",\n            \"systemId\": \"bd533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTYwMjI0ODQyNjY4Mzc3ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-26\",\n            \"systemId\": \"c5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzExNDg2MDg5MTI5Mjg4MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-27\",\n            \"systemId\": \"cd533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTU4ODg4NjQxMzAwNzA4ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-28\",\n            \"systemId\": \"d5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjE4OTEyODc5NDE2NTIzNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-29\",\n            \"systemId\": \"dd533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ4MzU3NzM4MTYyODc0NTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-03-30\",\n            \"systemId\": \"e5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODQ2MjI4NTk5NzY0ODczOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-03-31\",\n            \"systemId\": \"ed533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjAxMzkzNjY5OTcxODQ2MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-01\",\n            \"systemId\": \"f5533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDA0NjE4NjI1ODk3MjAyNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-02\",\n            \"systemId\": \"fd533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjM3MzUwNjU0NTI2ODk0MDc3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-03\",\n            \"systemId\": \"05543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjQ4NTAzMDg4MjM5ODg5MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-04\",\n            \"systemId\": \"0d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODYxNDE5NzU4MDgyMTMxMzQzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-05\",\n            \"systemId\": \"15543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDA3MjYyMzg4NDM1NTU1MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-06\",\n            \"systemId\": \"1d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjk4NjA0NjI5NDI2MjU5NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-07\",\n            \"systemId\": \"25543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDI1MTQ1MzQzMTkwMzU5NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-08\",\n            \"systemId\": \"2d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjEyOTE1NjQ1NTcwOTg4NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-09\",\n            \"systemId\": \"35543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDQ1NDEzMDA5NjMyMjM2OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-10\",\n            \"systemId\": \"3d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjA1NjQyOTYwMjkzMDMyMjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-11\",\n            \"systemId\": \"45543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDU2NTAxNzUwNDQ1MDU2MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-12\",\n            \"systemId\": \"4d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE4OTU2MjMzNTY2MDU2MDg5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-13\",\n            \"systemId\": \"55543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDc4MTQ5Mzg0ODgzNTE4NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-14\",\n            \"systemId\": \"5d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTExMDYxMjgwNDg1NTEyMzc5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-15\",\n            \"systemId\": \"65543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY0MzUxMDEzMjc2NDI3MDA1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-04-16\",\n            \"systemId\": \"6d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ5MDgxMjk4NDMwMDc2Njg1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-17\",\n            \"systemId\": \"75543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNDY0MjM2MTUwNzk1NDI2OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-18\",\n            \"systemId\": \"7d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.693Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzA1NjM4NTYwMzczMzcyMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-19\",\n            \"systemId\": \"85543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NDIwNjAwNjU5NTU5OTY1MDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-20\",\n            \"systemId\": \"8d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzYxNTk3NTg2NjcwNjY0OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-21\",\n            \"systemId\": \"95543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTY5OTYwMDEwNzk2ODY1NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-22\",\n            \"systemId\": \"9d543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4NDg2NTQ2NjM4ODQ3NzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-23\",\n            \"systemId\": \"a5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Mjg3NDIyNDI5MDMwMzQyNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-24\",\n            \"systemId\": \"ad543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.787Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjcyMzIxNTMzNDgyNzYzODYzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-25\",\n            \"systemId\": \"b5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.82Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDY2OTUzNDExMDc2NjMxMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-26\",\n            \"systemId\": \"bd543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.85Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzgwMDU3MjgxOTM4NTA0ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-27\",\n            \"systemId\": \"c5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NjIzMDA4MTExNjkxMDEyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-28\",\n            \"systemId\": \"cd543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjAwMTI0MjI0NTIxNzU3MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-04-29\",\n            \"systemId\": \"d5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAwNzA5NDA5NzczOTQ0NTE2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-04-30\",\n            \"systemId\": \"dd543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAxMzc3OTM3ODMwNjI0NDQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-01\",\n            \"systemId\": \"e5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTc3MjgyMTIxMjM1OTI3MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-02\",\n            \"systemId\": \"ed543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc0MjE5NzU1ODA2NzA1MjY0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-03\",\n            \"systemId\": \"f5543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIzOTUwMTk5ODgyNDE3MjA5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-04\",\n            \"systemId\": \"fd543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI4MDgwMDM3ODg2MjkwNTMwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-05\",\n            \"systemId\": \"05553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUyOTgzMDgxNjQxMTI4ODQzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-06\",\n            \"systemId\": \"0d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NjkwMjk1MDg0NTA1ODAxNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-07\",\n            \"systemId\": \"15553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTYwNDA5MDA2NzczNjQ1ODM4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-08\",\n            \"systemId\": \"1d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY5MDk4NzM0MjY3OTU2MDIzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-09\",\n            \"systemId\": \"25553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODU5OTE3MjEwMzU4NzU0MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-10\",\n            \"systemId\": \"2d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDk3NTAyMzgzNDQzMTU1NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-11\",\n            \"systemId\": \"35553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzA1ODY0ODA3NTY5MzU2NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-12\",\n            \"systemId\": \"3d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ2Njk5NTczOTc1ODA0NTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-13\",\n            \"systemId\": \"45553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY4MDU1MDYwMzQ4MzYyNzU3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-14\",\n            \"systemId\": \"4d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjY1NjU1NTIwMzcxNDQ4NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-15\",\n            \"systemId\": \"55553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MDM0MDg0NzcwODY4NzIxNTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-16\",\n            \"systemId\": \"5d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg1NDk3NTU1MTk0OTc0Mzg0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-17\",\n            \"systemId\": \"65553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzQ4NzQ4OTA5ODI0NDc1NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-18\",\n            \"systemId\": \"6d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTk5MTc3ODUzMDQ1Mjg5OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-19\",\n            \"systemId\": \"75553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM5Njg4NTE0NTI4OTUyNzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-20\",\n            \"systemId\": \"7d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mjc0MjAwNTUzMTMzMTQ3NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-21\",\n            \"systemId\": \"85553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzY0MjYyOTgwMzYzMDQyMDE0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-22\",\n            \"systemId\": \"8d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI1NzY0NzY5MjgxNDQzMzM1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-23\",\n            \"systemId\": \"95553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA1NDA5MTg0NTIzMjAwNDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-24\",\n            \"systemId\": \"9d553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk3NzY5NTAxMjYyMTM2OTIyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-25\",\n            \"systemId\": \"a5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU4NjA1NzQzNjc0NzU2OTk1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-26\",\n            \"systemId\": \"ad553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTU2MjczMDI0MTcwOTQ4MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-27\",\n            \"systemId\": \"b5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU1OTM2MTA0NzgxMTcxNDEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-28\",\n            \"systemId\": \"bd553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY0NjI1ODMyMjc1NDgxNTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-05-29\",\n            \"systemId\": \"c5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODE1MTg4MTkwNDM0MDA5OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-05-30\",\n            \"systemId\": \"cd553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0MTI1NjUxMDg4NDE4Mjk2MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-05-31\",\n            \"systemId\": \"d5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzcxOTM2NjIzNTIyNDMyMTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-01\",\n            \"systemId\": \"dd553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIzNjAxOTU1MDk5MTgxODc1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-02\",\n            \"systemId\": \"e5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MDI0MTk2NTg3NjcyNjg3NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-06-03\",\n            \"systemId\": \"ed553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjk1ODMzNjgwMTQxNzM1NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-04\",\n            \"systemId\": \"f5553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTQ1MjAxODEwMDYwNDM5MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-05\",\n            \"systemId\": \"fd553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.193Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjE5MDU2ODY0NzU2NTI4MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-06\",\n            \"systemId\": \"05563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDE3NjkzMzI2NjA2Njg4MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-07\",\n            \"systemId\": \"0d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY3MDg3MzkxMTEzOTI1MzIyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-08\",\n            \"systemId\": \"15563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExMTIxMjk1MzI4NjgwNzg0MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-06-09\",\n            \"systemId\": \"1d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.257Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzA4ODA2ODEwNzk2OTcxMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-10\",\n            \"systemId\": \"25563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA3OTg5OTM5NjA3Mjc4ODY5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-11\",\n            \"systemId\": \"2d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDgzMzE3MDM5NjIyNjQxMTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-12\",\n            \"systemId\": \"35563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTc3MDM0MDcyMjUzODYwMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-13\",\n            \"systemId\": \"3d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTE5OTEyNTk1NTk3OTU0NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-14\",\n            \"systemId\": \"45563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI4OTY3Nzg4NzIyMjAyMDQyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-15\",\n            \"systemId\": \"4d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA0Mjg2MzQxNTQzNTg3OTcxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-16\",\n            \"systemId\": \"55563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.443Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTAwMzIzMDI0ODU0MjA1NDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-17\",\n            \"systemId\": \"5d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU5MzM0MTcyMTEyNjEwMzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-18\",\n            \"systemId\": \"65563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ2NDIzOTA4NTk4NzI5MzExMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-19\",\n            \"systemId\": \"6d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.523Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODEwMjM5MTc5MTg4OTMzNTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-20\",\n            \"systemId\": \"75563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.553Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDUzMjY0NjIzNzg2MjE1NjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-21\",\n            \"systemId\": \"7d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA5MjQxMTc3MzEwOTQyMDc0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-22\",\n            \"systemId\": \"85563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ3MDM3MzQxOTg5MDA3NjgzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-23\",\n            \"systemId\": \"8d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMzMDg4MTU3NDAxMzI0Mjg1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-24\",\n            \"systemId\": \"95563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI3NDQwMjg4NDI0Mzk1MjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-25\",\n            \"systemId\": \"9d563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ0MzY5NDcyOTAxMzc5MTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-26\",\n            \"systemId\": \"a5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NjUwNzE5NzExOTg2NDU3MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-27\",\n            \"systemId\": \"ad563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDczMDEyNTgzMjMxMzI1OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-06-28\",\n            \"systemId\": \"b5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.787Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxOTI4OTAxMzk1MDEwMDE4NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-06-29\",\n            \"systemId\": \"bd563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.803Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDYxNjkwNDMwMzg4MDg2NDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-06-30\",\n            \"systemId\": \"c5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.82Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTc3NDExMzY2MjkyNjE1NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-01\",\n            \"systemId\": \"cd563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0NDc0MDEzNjUyNzA5MzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-02\",\n            \"systemId\": \"d5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NzE4NjU2NzQ4OTM2NzEwMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-03\",\n            \"systemId\": \"dd563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzUxNjYwMDQ5OTI5Mzk0ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-04\",\n            \"systemId\": \"e5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxNjM4NzM0MDM3MzYzNjE0NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-07-05\",\n            \"systemId\": \"ed563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTc1MDgwMzUxNzcxODIyOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-06\",\n            \"systemId\": \"f5563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY4OTc4MjgwMjUyODg3NTg4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-07\",\n            \"systemId\": \"fd563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ4NjQ5NTY1NzczNDU3NzM4OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-07-08\",\n            \"systemId\": \"05573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzAyNDM2NzU4MzM0ODQzNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-09\",\n            \"systemId\": \"0d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQyNzMzNzc5MjEzNDg1MTE5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-10\",\n            \"systemId\": \"15573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mzk0MjY1MTQ1NzQ1NDQ2NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-11\",\n            \"systemId\": \"1d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDg5NjI2ODg5NTIzNDQ1MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-12\",\n            \"systemId\": \"25573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE4NzczNjQxOTg2Mzk5NzcxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-13\",\n            \"systemId\": \"2d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODc0MDM2ODcwMjk1ODIwNTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-14\",\n            \"systemId\": \"35573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.227Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjIyODM1NzE3MzE0MTk2Mzk3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-15\",\n            \"systemId\": \"3d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.257Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjk4MzgxNTk2NDk0Mjc2MDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-16\",\n            \"systemId\": \"45573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU5NzIyOTk3MTQyMzk0NzgzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-17\",\n            \"systemId\": \"4d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk3MTgyMTY4Nzg1MDc3MzM3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-18\",\n            \"systemId\": \"55573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTgxMTIwNjE3OTYwOTMzMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-19\",\n            \"systemId\": \"5d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDIxMjE1ODI0MTk0NDU2NTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-20\",\n            \"systemId\": \"65573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjY2MjAwMDkyMzgxMDczOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-21\",\n            \"systemId\": \"6d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTYxNTEyMDE5NDM5NjU2NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-22\",\n            \"systemId\": \"75573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM0MDg2OTgxMjk1NTc3NzUwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-23\",\n            \"systemId\": \"7d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjE3MDI1NjI2MTg5ODMyOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-24\",\n            \"systemId\": \"85573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDg4MzYxMDc3ODY5NTQ2NjY1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-25\",\n            \"systemId\": \"8d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDA3NzcyMzY3NTQ5MjkxNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-26\",\n            \"systemId\": \"95573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.523Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzQ5NTE0MDI5ODU5Mzg3NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-27\",\n            \"systemId\": \"9d573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.523Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzEzMjE5MzA0NTEyMjkwMTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-28\",\n            \"systemId\": \"a5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.54Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzU3Njk2MzcyMDI4ODg3OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-29\",\n            \"systemId\": \"ad573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEzODcxNTIyMTE0NTIxMjIzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-07-30\",\n            \"systemId\": \"b5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzczNzIwNTUxMzQ5MTY1NzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-07-31\",\n            \"systemId\": \"bd573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDMwMjgyMzUzOTk5OTA2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-01\",\n            \"systemId\": \"c5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY4MjE0NTg4NjQ4NTQ5Nzk0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-02\",\n            \"systemId\": \"cd573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzY3MzAyODgzNTczNDQ2MzQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-03\",\n            \"systemId\": \"d5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTcxOTg1NTUzMDY0Mzk0NzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-04\",\n            \"systemId\": \"dd573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU2MDA3ODQyNDcwODU5Njk0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-05\",\n            \"systemId\": \"e5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODAzMzMwODI5ODk1ODM1NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-06\",\n            \"systemId\": \"ed573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMzMjA3NjIxMTI4MDM3ODg4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-07\",\n            \"systemId\": \"f5573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzYyNDc5MjcxNzY1OTk1NzIxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-08\",\n            \"systemId\": \"fd573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMxODU1MDU4MzA0MzU1MzYyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-09\",\n            \"systemId\": \"05583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzYyNDM3OTE4NzgwMDE5OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-10\",\n            \"systemId\": \"0d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI3NDIwMjIzNzI0ODYwMzczMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-11\",\n            \"systemId\": \"15583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzM1Mjk2NzY1NTQ2OTgzOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-12\",\n            \"systemId\": \"1d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.82Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDMzMDY5NTg4Mjc1NDY0NTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-13\",\n            \"systemId\": \"25583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.85Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzY5NTk4NTc5MTg3ODk1NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-14\",\n            \"systemId\": \"2d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODQ1NTk3MTQyNjUzNzEyNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-15\",\n            \"systemId\": \"35583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzQ2NzI3OTA3MzY5MzUzOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-16\",\n            \"systemId\": \"3d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTczMDM3MTYxMTU5NzAyNjM2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-17\",\n            \"systemId\": \"45583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzIyODAxNDg4NjYyMDQwNTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-18\",\n            \"systemId\": \"4d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjc4MDgxMTk2Mjk1NjE4MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-19\",\n            \"systemId\": \"55583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMDcwMDEwNDU2MTc4NzExMjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-20\",\n            \"systemId\": \"5d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQwNTkwNjU4NTA2MzU4NDQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-21\",\n            \"systemId\": \"65583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTA4NTQyODc0NzU3NjA5OTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-22\",\n            \"systemId\": \"6d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ1Mzc2MDg3NDYyMDUyOTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-23\",\n            \"systemId\": \"75583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjIxMjk2MTA5MjgwNDM2MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-24\",\n            \"systemId\": \"7d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE1NDc3MzE3NDk1MDM4Mzg5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-25\",\n            \"systemId\": \"85583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTAzMjc2NTM4NDE0NDgxMjc4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-26\",\n            \"systemId\": \"8d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODY3MzA2MDM1NzIyMTExNTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-27\",\n            \"systemId\": \"95583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODQzNzQ3NDg1MzczMTY3NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-28\",\n            \"systemId\": \"9d583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY0ODY2NjE4NjczMTY0MzkzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-29\",\n            \"systemId\": \"a5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI4MzAwNDkwMTYyODU0MjI3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-08-30\",\n            \"systemId\": \"ad583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDA1MjgwNjgyMDI3NzgzNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-08-31\",\n            \"systemId\": \"b5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDY1MTUxMjk2MTg4MzEzODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-01\",\n            \"systemId\": \"bd583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzE4Mzk0MDQ3MDQ1NTUzMjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-02\",\n            \"systemId\": \"c5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ1NjQ0OTU0ODM0NjAyMTM1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-03\",\n            \"systemId\": \"cd583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTcwNTk0NjE1ODY3MDMyMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-04\",\n            \"systemId\": \"d5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTU1MTc5MTg2MTk2NzExMDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-05\",\n            \"systemId\": \"dd583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTE5NjM5ODY4MzI4NjkxMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-06\",\n            \"systemId\": \"e5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI0MDQ4NzUyNTMxMTQ4ODYwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-07\",\n            \"systemId\": \"ed583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzcyODczNzcyNTAwODExMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-08\",\n            \"systemId\": \"f5583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTczMDU1MTMyNTM1NzU5MzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-09\",\n            \"systemId\": \"fd583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.35Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMyMDI2OTg5MzYwNDcxMzgzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-10\",\n            \"systemId\": \"05593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkyNzA1MjcyMDk3NTc4MzY5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-11\",\n            \"systemId\": \"0d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkyODA5MDE4NDkyNDc5MTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-12\",\n            \"systemId\": \"15593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzU1MDMxMTU5OTg3NzE3NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-13\",\n            \"systemId\": \"1d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTgzMDgyMTE5NDE0NzU1ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-14\",\n            \"systemId\": \"25593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjczNDM0MzM2NTg3NTY2NjI5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-15\",\n            \"systemId\": \"2d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODAyOTEwMDg2ODA1OTg1MTAyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-16\",\n            \"systemId\": \"35593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY4MzMyODI2MjMzNTQ0NDA4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-17\",\n            \"systemId\": \"3d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.493Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDIyOTUwODE3MzYxMjkxNjgxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-18\",\n            \"systemId\": \"45593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.523Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ0NTExNzkxNzY0MDI4NzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-19\",\n            \"systemId\": \"4d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYzNjYzNTc5NzQzODQ4MDE5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-20\",\n            \"systemId\": \"55593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA3Nzg2NTQ4NjY5ODA3NTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-21\",\n            \"systemId\": \"5d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTM5NTc1Njg2ODgyMDc2ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-22\",\n            \"systemId\": \"65593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTMyNjI5NDQ0NzgwNzQzMjc5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-23\",\n            \"systemId\": \"6d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTEwMzU0MDM2MTM5MTY5MjI0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-24\",\n            \"systemId\": \"75593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg4OTU4NDA2MzQ3ODU4MDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-25\",\n            \"systemId\": \"7d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMwNTIxOTM1MzQxMjI1OTYyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-26\",\n            \"systemId\": \"85593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDI2ODc3MjQ0Mjk2MTM0OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-27\",\n            \"systemId\": \"8d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE5NTgxNjUxNTI5MzI3NzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-28\",\n            \"systemId\": \"95593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.773Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NTczODAyNDM1Njg4MjM2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-09-29\",\n            \"systemId\": \"9d593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDE2NDU2NjAxNjc2OTM3MjYzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-09-30\",\n            \"systemId\": \"a5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDI2MDY2MzI2MzM2OTQ2OTM2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-01\",\n            \"systemId\": \"ad593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDQ0NzgwOTQyOTEwNDU0MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-02\",\n            \"systemId\": \"b5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODYyMDg4NDM2NzM0NTE0NTA2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-03\",\n            \"systemId\": \"bd593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTIzMDkyODAzMjY1NDcwMDY3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-04\",\n            \"systemId\": \"c5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAwMDYwNDYyMjYwNTU4NjM3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-05\",\n            \"systemId\": \"cd593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTU3MTczMTQ0MDU0MjY2NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-06\",\n            \"systemId\": \"d5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAxNTE0NzYxNjYzODUyMzE5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-07\",\n            \"systemId\": \"dd593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MzU4NDMzNTQ2NzEwOTEwNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-08\",\n            \"systemId\": \"e5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzUxOTA2NjQxMzcyNjY4NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-09\",\n            \"systemId\": \"ed593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTc4MzY2NTQzMDc0NDE4NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-10\",\n            \"systemId\": \"f5593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDIyMTA5MzU1MTUxMDI0NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-11\",\n            \"systemId\": \"fd593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTg5ODEwMzQwMjAzMTM3ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-12\",\n            \"systemId\": \"055a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE5MDI5NTYwNzg0MDUxMDE0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-13\",\n            \"systemId\": \"0d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc1NjA0MDAzNTg1OTU4ODc5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-14\",\n            \"systemId\": \"155a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjg1MTYxNzU0Njg4NTU4NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-15\",\n            \"systemId\": \"1d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk0Mzg4NzIxODM3NTI2MjczMTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-16\",\n            \"systemId\": \"255a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODMyNjE2MjAzNTczODc0MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-17\",\n            \"systemId\": \"2d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0ODEyMzUyNjEwMzczNTczMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-10-18\",\n            \"systemId\": \"355a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQ3NDcwODM1NTY5OTExNTE3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-19\",\n            \"systemId\": \"3d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjY1MjQ1MDI1OTYwMDMxMjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-20\",\n            \"systemId\": \"455a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjExMDc5NTQwNDQ0MzI3OTM1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-21\",\n            \"systemId\": \"4d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ4ODY3NDgxMTQ3NjQyOTY1NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-10-22\",\n            \"systemId\": \"555a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTAwMjg3NjMxMzA1OTM0NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-23\",\n            \"systemId\": \"5d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjMwNzEzMzI4ODkyMjg4NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-24\",\n            \"systemId\": \"655a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjE0MDMxOTA4ODU0MDA0MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-25\",\n            \"systemId\": \"6d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTkwOTM0NDMyODY3OTY0NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-10-26\",\n            \"systemId\": \"755a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ0ODkwODkwNTQ1MjIyMDg2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-27\",\n            \"systemId\": \"7d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTUyMDY3ODAwNDcyMzk0NDc5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-28\",\n            \"systemId\": \"855a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDMwNjQ0MjU1NzA0NzIzMTEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-29\",\n            \"systemId\": \"8d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4OTU5Mjk5ODE5MDE4NDQwMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-10-30\",\n            \"systemId\": \"955a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ4MjE4NzkyMTAzNjU3NzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-10-31\",\n            \"systemId\": \"9d5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjg5MzY3OTc3NjgxNzk1NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-01\",\n            \"systemId\": \"a55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.307Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODM1NzIyMjI1MTIwMzIyODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-02\",\n            \"systemId\": \"ad5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI1NDc3NjM5MjE4OTIyNzI2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-03\",\n            \"systemId\": \"b55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTkyODM4MjkzNjQ0MzIyNTEyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-04\",\n            \"systemId\": \"bd5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUyODI3MjA4NzA1MjczODQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-05\",\n            \"systemId\": \"c55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MjE1Mzk1MTU1NzE0MDkzMDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-11-06\",\n            \"systemId\": \"cd5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjAxMDEyOTU4NTQxNzc0MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-07\",\n            \"systemId\": \"d55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk1MzY2MjEzOTk5ODY5NjIwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-08\",\n            \"systemId\": \"dd5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.493Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDY0NzA2NzM2MjYwNTI0NDEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-09\",\n            \"systemId\": \"e55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.523Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzI0NjIxMzQyNzQ0MTMxNTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-10\",\n            \"systemId\": \"ed5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMDAwMTQxNzA4MzE3MjM4MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-11\",\n            \"systemId\": \"f55a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDk2MTU3MzQyMTMwNTM3MzA1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-12\",\n            \"systemId\": \"fd5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjY4NjkxOTI0MzI5OTU0NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-13\",\n            \"systemId\": \"055b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTExMjk5NjkxMTcxODIyMTU1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-14\",\n            \"systemId\": \"0d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDIwNjEzMjg4NDIzMjY5MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-15\",\n            \"systemId\": \"155b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjkyNDgxMzIzNzYwNDYwMjg2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-16\",\n            \"systemId\": \"1d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjYwMjAxMDEwMjkxNjE3NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-17\",\n            \"systemId\": \"255b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDU3NDExNTE0OTY3Njk4NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-18\",\n            \"systemId\": \"2d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzE2MTg1MDg3MTMxMjI0MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-19\",\n            \"systemId\": \"355b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI5MjI4ODUxMTU2NTkxNTIyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-20\",\n            \"systemId\": \"3d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc2NjA0NTc0Mzg5MjcwMzE1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-21\",\n            \"systemId\": \"455b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM2MzgxNzc4NDA0MzQ5NzgxMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-22\",\n            \"systemId\": \"4d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzg1OTU4MzQzNzU5NDQ4NDQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-23\",\n            \"systemId\": \"555b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Mzc4OTkyMzYzMzQzMDcxNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-24\",\n            \"systemId\": \"5d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM3Mjc4ODg1MTQwMzg2MzIwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-25\",\n            \"systemId\": \"655b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.773Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODUxOTA0OTM2ODE3OTkzMTEzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-26\",\n            \"systemId\": \"6d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDIzNTQ5MDc5OTk3NzE0NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-27\",\n            \"systemId\": \"755b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.82Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzUyNzc0OTAyOTE3OTA0ODI4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-28\",\n            \"systemId\": \"7d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.82Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzIxMzkwNjgyNzAxMTQwNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-11-29\",\n            \"systemId\": \"855b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ3NDA3Mzc0NDU2MDc4MzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2025-11-30\",\n            \"systemId\": \"8d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzMwODQ5MDI2MTU0ODczMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-01\",\n            \"systemId\": \"955b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc5MTA5NjMxMDcwMTc0NzY4MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-02\",\n            \"systemId\": \"9d5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDIxMTM3NjUzMzU5MDY5NDMzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-03\",\n            \"systemId\": \"a55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDc5MzY0MTY2ODM3MDU3NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-04\",\n            \"systemId\": \"ad5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTEzNDI0MDU0MDQ0ODU2NDQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-05\",\n            \"systemId\": \"b55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDIwNDQ2Mzc4MDkxNzg0ODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-06\",\n            \"systemId\": \"bd5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY5NzI2NDIzMzI4NjQ1Njk0MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-07\",\n            \"systemId\": \"c55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAwNDIzMDcxMjE3MTYxMzE5MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-08\",\n            \"systemId\": \"cd5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTU2NzUzNjgxMDE4ODQ2MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-09\",\n            \"systemId\": \"d55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMzQ4OTk2MzUzOTA0MTE0OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-10\",\n            \"systemId\": \"dd5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY2Njc3NzAwNjk0MTkxNjgzMTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-11\",\n            \"systemId\": \"e55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc2NDQwNTE1NDM0NDk0MjIwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-12\",\n            \"systemId\": \"ed5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg5NDkxNDk5MTQ5NDI0NDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-13\",\n            \"systemId\": \"f55b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU3NDU2NjIxNzMyMDUzNTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-14\",\n            \"systemId\": \"fd5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYyMzg0MTA4NjY5NTUzOTExMTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-15\",\n            \"systemId\": \"055c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Mzg4ODgzNzY1MzMxODMzNjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-16\",\n            \"systemId\": \"0d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTAyMTUwODU4NTkwOTkzNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-17\",\n            \"systemId\": \"155c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyOTQ1OTQ2NTE4NTE1MDE3MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-18\",\n            \"systemId\": \"1d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTI0NTI4NjE3MzY5ODM1NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-19\",\n            \"systemId\": \"255c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQzODg5MzU5MjgxNTY5MDc3MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-20\",\n            \"systemId\": \"2d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODU3NjEwMjQzNDg1MzUyMzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-21\",\n            \"systemId\": \"355c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYzMDUwNTQ3NTc5MTg0Mzk0NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2025-12-22\",\n            \"systemId\": \"3d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzY1NjIzOTc0OTg5Njc1MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-23\",\n            \"systemId\": \"455c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzQ4MzU2OTYyMTg5NjI4MjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-24\",\n            \"systemId\": \"4d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTkwNjY5NzY4MzU1NTI0MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-25\",\n            \"systemId\": \"555c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NzAyMTAzMzEyMjEwOTkyNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-26\",\n            \"systemId\": \"5d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MzUxODc4NDg0OTU4NzcxNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-27\",\n            \"systemId\": \"655c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2ODE5MTkwNDIwNzI0OTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2025-12-28\",\n            \"systemId\": \"6d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODQ4OTYzMDE1MDcyNzQ2ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-29\",\n            \"systemId\": \"755c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzg1MzM0OTMyMDY5MjE0NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-30\",\n            \"systemId\": \"7d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTc2NDIxODg5ODQxMTkwOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2025-12-31\",\n            \"systemId\": \"855c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjA2MTg3MDkzNTI5MjE2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-01\",\n            \"systemId\": \"8d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzU5ODY3NjU5NTcyNjIzODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-02\",\n            \"systemId\": \"955c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAwNDg5MTExNTkxMzY4Mjc4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-03\",\n            \"systemId\": \"9d5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.687Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzczNzc4NDUxMDIyMjU1MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-04\",\n            \"systemId\": \"a55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODg3NTg5MDY1ODQ2MzAyOTg0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-05\",\n            \"systemId\": \"ad5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgzMjUyMzc4OTM3ODgwOTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-06\",\n            \"systemId\": \"b55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc2NTk1NjM0NzIwMjI1OTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-07\",\n            \"systemId\": \"bd5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDEzMDY4MTU3MzY4Mjk0NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-08\",\n            \"systemId\": \"c55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTM3NzQ0NTM0MTkzOTA1NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-09\",\n            \"systemId\": \"cd5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MDE0ODA5NDE3ODAxOTQ0NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-10\",\n            \"systemId\": \"d55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk5MzA0ODA4NDk0NzQzNDA3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-11\",\n            \"systemId\": \"dd5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODc2NDQyNzM5MTQwNjAyMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-12\",\n            \"systemId\": \"e55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQxNjc2NzU0MzY2MTMwMzIxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-13\",\n            \"systemId\": \"ed5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Njc1NDU5NDc4MTE5OTI0MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-14\",\n            \"systemId\": \"f55c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTI5MTM4NDc0NjEzNzY0ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-15\",\n            \"systemId\": \"fd5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.937Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDQ5MTA2MzkxOTA0NDAyNTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-16\",\n            \"systemId\": \"055d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTg0ODExNzYxNjkwNDcwNDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-17\",\n            \"systemId\": \"0d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Njk4ODQxMTAxMzA1ODg5NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-18\",\n            \"systemId\": \"155d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzYzMjE4NjY1NDg1OTY0MzI4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-19\",\n            \"systemId\": \"1d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU5NTQ1NTIxMTgzMDgyMDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-20\",\n            \"systemId\": \"255d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MDUyODczODQ2NzkwNzMzOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-01-21\",\n            \"systemId\": \"2d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzAwNjQ0OTg5MTA1NDQ4MTQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-22\",\n            \"systemId\": \"355d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTA3OTY2OTYyNTEzMTQwNzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-23\",\n            \"systemId\": \"3d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTU1NDQxNjIyNDU1MDQ5MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-24\",\n            \"systemId\": \"455d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDk1MTIwMzAwODEwNzg2MjM5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-25\",\n            \"systemId\": \"4d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Njk1NzIyNTk4OTg2NTk4NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-26\",\n            \"systemId\": \"555d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzY4OTUyNzI0Mzc2NTg2OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-27\",\n            \"systemId\": \"5d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjU1MTM5MzY1NDc2ODA5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-28\",\n            \"systemId\": \"655d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTQ5MzQ5OTI4MTE0OTA2NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-01-29\",\n            \"systemId\": \"6d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYzOTYxNzI0MjY0NzA1MzI1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-30\",\n            \"systemId\": \"755d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYzNjMxMTAxNDg5OTYxNzE4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-01-31\",\n            \"systemId\": \"7d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODg2MTE4NTYyMDA4MzgxMDA3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-01\",\n            \"systemId\": \"855d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTQ3MTgzNDQyODAyOTkxMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-02\",\n            \"systemId\": \"8d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODczNDkzNDIwMDcxMzc0OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-03\",\n            \"systemId\": \"955d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDI1MjM4ODMwODUzMTc4ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-04\",\n            \"systemId\": \"9d5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzc0ODU3NzAzMzE1ODA0NjEyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-05\",\n            \"systemId\": \"a55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEzODUwODAwMjQ3MTcwMzgxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-06\",\n            \"systemId\": \"ad5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTQ0MjMwNjg3NjM0NzkxNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-07\",\n            \"systemId\": \"b55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.64Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTAzNzczNzgyNTQzOTI2NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-08\",\n            \"systemId\": \"bd5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExOTA4MjYwOTM5NTQyODAyMDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-09\",\n            \"systemId\": \"c55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MjMyNzg4NTY3ODAwMzI5MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-10\",\n            \"systemId\": \"cd5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDM4ODk5NDMzODA2ODU4NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-11\",\n            \"systemId\": \"d55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzYyMDUzMjEzODQzNjI0NTgwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-12\",\n            \"systemId\": \"dd5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Njc3NTIyNDY2NzExMDQ5NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-13\",\n            \"systemId\": \"e55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTM0NDg5NDMxNTk0Njk2ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-14\",\n            \"systemId\": \"ed5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTY1Nzc3ODUyNTc0ODIwMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-15\",\n            \"systemId\": \"f55d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM2NjY1MTE0NzQ5Mzc4NjQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-16\",\n            \"systemId\": \"fd5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA1MjU3NDA2OTc1NjMzNzk0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-17\",\n            \"systemId\": \"055e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQwNTE5NTc5Nzk3MTEyNzk1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-18\",\n            \"systemId\": \"0d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDc2MDM2MjQ5NTQ5MzM5MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-19\",\n            \"systemId\": \"155e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjQ1NTYzNTIzMDg5MzYwNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-20\",\n            \"systemId\": \"1d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIzMzQ0MDA1NDk0OTY1OTExMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-21\",\n            \"systemId\": \"255e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQyMTM5Mjc3MjE4MzM5MzYwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-22\",\n            \"systemId\": \"2d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODIyNjYzMzUwMzYxNTUxMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-23\",\n            \"systemId\": \"355e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDQwMjcxMzg0OTU4MzU2NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-24\",\n            \"systemId\": \"3d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDE2MDI1NTk1NjMyODIyMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-25\",\n            \"systemId\": \"455e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTQ3NDMyOTc1NjI5MTAwNTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-02-26\",\n            \"systemId\": \"4d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk4MTcwODc1MzkxNDkxMDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-27\",\n            \"systemId\": \"555e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTgzMzkwNTE5NDEzODAyMjYzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-02-28\",\n            \"systemId\": \"5d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjE5MTc4OTg4OTYzMzAzMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-01\",\n            \"systemId\": \"655e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODAxNzg4MjM4OTkwMTY5NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-02\",\n            \"systemId\": \"6d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMwMzg2NzYwODMxNDE2MzcwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-03\",\n            \"systemId\": \"755e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1NTQyOTExNzk4ODA0ODI3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-04\",\n            \"systemId\": \"7d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzIxMDA1Mjg3MzcxMzI1MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-05\",\n            \"systemId\": \"855e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI3NTM3MzI4NzAzNTcxNDcwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-06\",\n            \"systemId\": \"8d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjU4ODc2NzY5NjEwMTkwNjQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-07\",\n            \"systemId\": \"955e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDEyNjgzOTcwNTg2OTgwMTQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-08\",\n            \"systemId\": \"9d5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjQzNzYxNTE5Mjg0OTk1OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-09\",\n            \"systemId\": \"a55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg1NDE1NDM5ODM1NDc3NjgyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-10\",\n            \"systemId\": \"ad5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDMyODQzMjM3NTQ5MDQ4MjM2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-11\",\n            \"systemId\": \"b55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzA1OTcyOTIzMDkxMDUzNjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-12\",\n            \"systemId\": \"bd5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQzNTE1MDk2NTg0MDg3ODU0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-13\",\n            \"systemId\": \"c55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODI1Njg0NzAxMzI5NjE4NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-14\",\n            \"systemId\": \"cd5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTk0MzM2NzA3MzQxMTE4NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-15\",\n            \"systemId\": \"d55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzEyNjMzMjE0MTk5ODY4ODQxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-16\",\n            \"systemId\": \"dd5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkwOTU2NzU1OTE3ODg0NDY3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-17\",\n            \"systemId\": \"e55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMDI4Mzg0NzYxMjE4MDYxNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-18\",\n            \"systemId\": \"ed5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDIxOTk0NzgwNDg1MDM1ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-19\",\n            \"systemId\": \"f55e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzUwMjA1OTk2NDc2OTMxNzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-20\",\n            \"systemId\": \"fd5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzY4OTA5NDM4OTAzMDMzMDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-21\",\n            \"systemId\": \"055f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzMxMTA1OTM4ODI2MDY0NDk2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-22\",\n            \"systemId\": \"0d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg0NzE3OTI2NDUzODA5NDAyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-23\",\n            \"systemId\": \"155f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTU1ODQxOTUxODc3MjY4ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-24\",\n            \"systemId\": \"1d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMyNzg2OTQwMDAyMDcxOTMyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-25\",\n            \"systemId\": \"255f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDMwNjQ2NTI5NTYzNjg5NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-26\",\n            \"systemId\": \"2d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDQ4NDI5MjQ5NjM2MTAyNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-27\",\n            \"systemId\": \"355f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUxODg4NzA2Nzg1NTQ0NTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-28\",\n            \"systemId\": \"3d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Mjk1MjY0MjI5OTY3NjE3NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-29\",\n            \"systemId\": \"455f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk2Mjc1ODI4NjcwMjY4ODU4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-03-30\",\n            \"systemId\": \"4d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NzQ2NDI1NzA2NjkxMzgxOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-03-31\",\n            \"systemId\": \"555f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEyNzkzNDU4NjMzNTgzNTgwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-01\",\n            \"systemId\": \"5d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTQ1NTQ1NzEzOTcwMDI1MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-02\",\n            \"systemId\": \"655f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAwMzUyMDE4NjU1NDI4MTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-03\",\n            \"systemId\": \"6d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTA1NTEwMTQzMDc3NzA4NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-04\",\n            \"systemId\": \"755f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODQ0MDg1ODAyNzEzMDc1MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-05\",\n            \"systemId\": \"7d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYyNjc1MDk1NDU5ODQ5NjkwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-06\",\n            \"systemId\": \"855f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA4MDAxODIzNzc5ODQzMzc5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-07\",\n            \"systemId\": \"8d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTQxOTA0NDU2ODMwMjk1OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-08\",\n            \"systemId\": \"955f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcxODY0MjgxMTgxNDIxNDQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-09\",\n            \"systemId\": \"9d5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA1ODAxMDk0Mjg0NDc0MDMxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-10\",\n            \"systemId\": \"a55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEzMjcyMDE1NTEwNjgzNjA4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-11\",\n            \"systemId\": \"ad5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjE0MzA1NDUwMzAwNTYxOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-12\",\n            \"systemId\": \"b55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjIwMDU2MzM4OTQzNTI5NTE0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-13\",\n            \"systemId\": \"bd5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzIxMTE5NDcxNjc5NTUzMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-14\",\n            \"systemId\": \"c55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIzNzMwOTMzNjI2NTIwNjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-15\",\n            \"systemId\": \"cd5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg5MzQzNzI0NjA5MTY1MzE4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-16\",\n            \"systemId\": \"d55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY2NTA4NjM1NTU2Nzk5MTgzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-17\",\n            \"systemId\": \"dd5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDMzMjEwNTE4ODI2NTM5NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-18\",\n            \"systemId\": \"e55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NzU3MTUwMDI4NzA0NTgxOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-19\",\n            \"systemId\": \"ed5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc4NzQxMjE3ODU5NDE2MTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-20\",\n            \"systemId\": \"f55f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY5OTY0OTE1NTY1NTU4MTc5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-21\",\n            \"systemId\": \"fd5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0NTgwMzU1ODYyODc4OTU5NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-04-22\",\n            \"systemId\": \"05603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQxOTczNjY2NDU0MTY1NTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-23\",\n            \"systemId\": \"0d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjgyOTQ4NzA4MjEzNDc1MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-24\",\n            \"systemId\": \"15603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjEzNTMzMTAxODkyMjM3MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-25\",\n            \"systemId\": \"1d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwMzQ4MDAzOTQ0NTA3NDI0MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-04-26\",\n            \"systemId\": \"25603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzk1MzkyOTkzMzQ1NDQzOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-27\",\n            \"systemId\": \"2d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTU3NDI1NjE0MDk1NjgzNTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-28\",\n            \"systemId\": \"35603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjM5OTIxNjI2ODc1Njk0MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-04-29\",\n            \"systemId\": \"3d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAxMzk4NzM5MDI2ODQzODc4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-04-30\",\n            \"systemId\": \"45603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTc1NzMwNzc4NDcwMjQ1NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-01\",\n            \"systemId\": \"4d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2MjUxMDE3MTgwMzE3ODA0MDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-05-02\",\n            \"systemId\": \"55603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjk1NTAzNTE3Mjc4Njk2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-03\",\n            \"systemId\": \"5d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTczOTYwNzkxOTY2NjIyNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-04\",\n            \"systemId\": \"65603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjQ5NzgwNzkyNTg1NTI0MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-05\",\n            \"systemId\": \"6d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyOTk4MTcxODk0MzI1NTM4NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-06\",\n            \"systemId\": \"75603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ1NjgyOTQ0MzkxMjcwMjE0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-07\",\n            \"systemId\": \"7d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc2Njg4ODM0NzY5OTcwMDc5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-08\",\n            \"systemId\": \"85603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5NTY3ODcxNTI2MzkyMTM1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-05-09\",\n            \"systemId\": \"8d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE0NjY3NDE0ODc1ODI2NDY2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-10\",\n            \"systemId\": \"95603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTk2MDEyNDM3MDk5NzE1NDAzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-11\",\n            \"systemId\": \"9d603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk4Nzg5MDAxMzMzMTM4NTQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-12\",\n            \"systemId\": \"a5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEzNzg0MjM3NDg4MjAxMjU3MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-05-13\",\n            \"systemId\": \"ad603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTgxODk4OTc2Mzc0MzcwMTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-14\",\n            \"systemId\": \"b5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ4NjQ4MzgyMDQ3ODc3MjYzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-15\",\n            \"systemId\": \"bd603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM1MDk1NTM1NTI1OTI2NjgxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-16\",\n            \"systemId\": \"c5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI2MzE5MjMzMjMyMDY4Njc0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-17\",\n            \"systemId\": \"cd603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MzAzMDczMzEzNDk4NDQ1ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-18\",\n            \"systemId\": \"d5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjEyMzcwOTMxMzg2ODQ4MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-19\",\n            \"systemId\": \"dd603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzM1MjMyMDIzMTE0Mjk0NDYxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-20\",\n            \"systemId\": \"e5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA5MDg5NTg5MDc3ODMxMTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-21\",\n            \"systemId\": \"ed603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY5NjMwMTkxNDM2NDY3MzEyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-22\",\n            \"systemId\": \"f5603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDkzOTc5MTgzNjIzMTU0NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-23\",\n            \"systemId\": \"fd603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjg3OTkyMTEwMjAwNTI3NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-24\",\n            \"systemId\": \"05613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTQyMzI5NTM5NDY2ODg0MDc1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-25\",\n            \"systemId\": \"0d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgzNDg4NzEyOTIwOTgzOTQwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-26\",\n            \"systemId\": \"15613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODM0Mzc2ODIyODgzMzgxNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-27\",\n            \"systemId\": \"1d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTcwNDkyNTg2MDk5ODQ3NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-28\",\n            \"systemId\": \"25613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTMzNjcyOTM5MjAyMzI3MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-05-29\",\n            \"systemId\": \"2d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE2ODk1MDg3NTA5Njc5MTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-30\",\n            \"systemId\": \"35613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkwODA3NjI0ODk0MjUzNjAyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-05-31\",\n            \"systemId\": \"3d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTM1ODQxODkxMjc2NzY3NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-01\",\n            \"systemId\": \"45613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE4Nzg1Njk0OTY2MjAyMDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-02\",\n            \"systemId\": \"4d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTg1OTA0ODM1MzE1NzU3NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-03\",\n            \"systemId\": \"55613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODM1Mjc4NjYyNDM0NDQwMDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-04\",\n            \"systemId\": \"5d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM4MjM2OTg0MjkxMzIzMTY4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-05\",\n            \"systemId\": \"65613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzcwMDY0OTA1MjEzODQ1MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-06\",\n            \"systemId\": \"6d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjA3Nzk4ODcyNDcxNjMxMDEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-07\",\n            \"systemId\": \"75613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk0MDMzOTY3OTYzOTQ2NDQzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-08\",\n            \"systemId\": \"7d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc4Mzk5MDU0Mjg3MDM4NjYxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-09\",\n            \"systemId\": \"85613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU1OTc2MzM5OTY1MjY4ODc4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-10\",\n            \"systemId\": \"8d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzQwNzY3MTgyMzI3MzI5MjU1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-11\",\n            \"systemId\": \"95613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzg1MjEyMzcwODczODYzODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-12\",\n            \"systemId\": \"9d613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDE4NzU2MDQ1NTY5MjM5NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-13\",\n            \"systemId\": \"a5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU1OTA0Njk2OTY4NzIyMDE4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-14\",\n            \"systemId\": \"ad613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzQ2ODk4Mjc4MzE2MzMxMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-15\",\n            \"systemId\": \"b5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAyODM3Mjc2MDI4NjQwNzg5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-16\",\n            \"systemId\": \"bd613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTQxMjQ3NzYwOTM0NDM5MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-17\",\n            \"systemId\": \"c5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzQzNjg5NDEwNjQ0MjM2ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-18\",\n            \"systemId\": \"cd613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODQ1OTQyMDY3NjYzNTQ5OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-19\",\n            \"systemId\": \"d5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjI3MDU2OTA0OTg2MzY2MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-20\",\n            \"systemId\": \"dd613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjE1NDM1NDIzOTc4NDM5MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-21\",\n            \"systemId\": \"e5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODMzMDQzNDU4NTc1MjQ0OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-22\",\n            \"systemId\": \"ed613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjkyMDcxOTI3MTE0NDM3NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-23\",\n            \"systemId\": \"f5613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0MjQ4Njk1NTQzODg2NjAxNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-06-24\",\n            \"systemId\": \"fd613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzU5MDYyMzU2NTIxMzA2OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-25\",\n            \"systemId\": \"05623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE0NjcwNDIyNzgzMTIyMTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-26\",\n            \"systemId\": \"0d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTczOTgzOTE2MDQ3NDcwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-27\",\n            \"systemId\": \"15623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTA3NDE2NDczODcwOTIwNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-28\",\n            \"systemId\": \"1d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDQzNjUyMTUyOTIzMjMzNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-06-29\",\n            \"systemId\": \"25623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYxNTA1NTc3MTY5MzAwMTAxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-06-30\",\n            \"systemId\": \"2d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY2NjAzMDA2NzM5OTk4Nzk4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-01\",\n            \"systemId\": \"35623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTcxNjkwODkzNTY2NzM4MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-02\",\n            \"systemId\": \"3d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ1MjkyNTM0OTUzMjczMDQxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-03\",\n            \"systemId\": \"45623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM5MjAyNjIwNDc2MzE0MDEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-04\",\n            \"systemId\": \"4d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTQ1MDY5ODEzMTMyNTI1OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-05\",\n            \"systemId\": \"55623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTMxOTU3MzcyMjg5ODcyMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-06\",\n            \"systemId\": \"5d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzgxNjE0NzA4Nzk2ODg4NTk3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-07\",\n            \"systemId\": \"65623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg2MjkyNTY1Nzc0OTc3MDg2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-08\",\n            \"systemId\": \"6d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODg3MjcwMTYzNjUyODcxMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-09\",\n            \"systemId\": \"75623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjU4MjMwNDg2Mjc1NjQ1MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-10\",\n            \"systemId\": \"7d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MjM3NDA0NzI5NDg1ODcxOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-11\",\n            \"systemId\": \"85623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MTIxNDg1Mjg3ODU1MTgzNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-12\",\n            \"systemId\": \"8d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM4ODgyMjg2MDg4MTAyMjIwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-13\",\n            \"systemId\": \"95623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MTMxNzc1MDAyODU1Mjg2OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-14\",\n            \"systemId\": \"9d623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTI3MzY4Njc3Mzc0Mzg0NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-15\",\n            \"systemId\": \"a5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjEzMjczNTI5NDg4MjA2ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-16\",\n            \"systemId\": \"ad623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NTEwMTU2NDQxMTkzODkxNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-17\",\n            \"systemId\": \"b5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MTE3NjA5OTYxMDkwNjU0OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-18\",\n            \"systemId\": \"bd623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTcwMTY3MzIxNzA1MjA1NTcxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-19\",\n            \"systemId\": \"c5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTE1NzA2OTYxOTI2NjE2MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-20\",\n            \"systemId\": \"cd623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk3NjM2ODc1Mjk2NDg3MTU4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-21\",\n            \"systemId\": \"d5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTY0MDYzODE1MjY1NDg1MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-22\",\n            \"systemId\": \"dd623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ2OTM5OTc3MzkxOTA2NDI0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-23\",\n            \"systemId\": \"e5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjMzMTc1MDcyODg0MjIxODU3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-24\",\n            \"systemId\": \"ed623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODYzMjIyMDQ2MTc0MjEwMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-25\",\n            \"systemId\": \"f5623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE1NDg1MTA0Mjg0NDMyODgzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-26\",\n            \"systemId\": \"fd623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjA3MzE0MzQwNTY1MTkwODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-27\",\n            \"systemId\": \"05633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY1MjI5NTYyNTI2MTI3ODMwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-07-28\",\n            \"systemId\": \"0d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5NzEyODMwMjE5NTg0MzA3MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-07-29\",\n            \"systemId\": \"15633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzQyMjQzMzQ0NTgxMjA0ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-30\",\n            \"systemId\": \"1d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDIwNTI5OTM5NjAyOTI5NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-07-31\",\n            \"systemId\": \"25633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NDIzMTEyNzM3NjkyNTY5MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-01\",\n            \"systemId\": \"2d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzQ4MDAzODMwMDQ2NzYzNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-02\",\n            \"systemId\": \"35633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxMzcxODE0NDg2MTgxMDU4OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-08-03\",\n            \"systemId\": \"3d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk1Mzk5MDM4MzYzNTY0MjMwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-04\",\n            \"systemId\": \"45633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM2OTgwMTI3OTQyODE3NTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-05\",\n            \"systemId\": \"4d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1OTczOTgwNDM4MjQ5NDc5MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-08-06\",\n            \"systemId\": \"55633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjE1MDA2MDc4NDIxNzUzNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-07\",\n            \"systemId\": \"5d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE5NTMyMTgxNjE2NTMwMDc0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-08\",\n            \"systemId\": \"65633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjU1NTgxMDM3NjM2OTM4NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-09\",\n            \"systemId\": \"6d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkyMzcyNDU2ODYwMzA5MzI1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-10\",\n            \"systemId\": \"75633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY5NDY4NDg5MTIyNTg2NzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-11\",\n            \"systemId\": \"7d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjM5MDU4ODkzMDQzMjYzOTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-12\",\n            \"systemId\": \"85633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDQ5MzY1NTk1NjMzNTQ4MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-13\",\n            \"systemId\": \"8d633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg2MzQzNjg5OTU1OTMxMDExMTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-14\",\n            \"systemId\": \"f83e35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjUwNDM1NDAzMjY2ODMxNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-15\",\n            \"systemId\": \"003f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzUwMjYzMTg0MzQ4OTk0MzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-16\",\n            \"systemId\": \"083f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI4NTU0NDMyMDQ4MzE2NzY3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-17\",\n            \"systemId\": \"103f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDE0NjM2ODc1Mjg4MDAwNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-18\",\n            \"systemId\": \"183f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwNTEyMzA1MjI3MTk5MjE3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-19\",\n            \"systemId\": \"203f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI2MjcxOTQ0ODQ4NTAxMDcxNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-08-20\",\n            \"systemId\": \"283f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MzkyMjMyMzIyMDc4NDcxNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-21\",\n            \"systemId\": \"303f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NjkwMDM4NjE0MzUyNTk0NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-22\",\n            \"systemId\": \"383f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc1MjY4NzE3MjE2ODM0ODIyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-23\",\n            \"systemId\": \"403f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjgwNDk5NzI2MzE2MzU2NDQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-24\",\n            \"systemId\": \"483f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.817Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMwMDkyOTIxNjc0MjY4OTY4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-25\",\n            \"systemId\": \"503f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxODg2MDk0NTc4NDYwNTY4MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-08-26\",\n            \"systemId\": \"583f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTE4ODk5NTYxODI2MDAzMTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-27\",\n            \"systemId\": \"603f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEzNTk2ODM5MjI4Mzg3Nzk2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-28\",\n            \"systemId\": \"683f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDc4MjUwODk0MDEwMzU5MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-29\",\n            \"systemId\": \"703f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc2MzUzNjM0MzY2MDE5NTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-08-30\",\n            \"systemId\": \"783f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1OTE4OTg1ODIyMTAwMjgyMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-08-31\",\n            \"systemId\": \"803f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTk5NjkwMTkxNTY5NDcyMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-01\",\n            \"systemId\": \"883f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODQ1ODg0NDk5NTg3NDAyOTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-02\",\n            \"systemId\": \"903f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjM1NDAwNTkwNTIwOTE1NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-03\",\n            \"systemId\": \"983f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTY2MDgwNzg0OTQyNzA3NTU2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-04\",\n            \"systemId\": \"a03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE1NTAzNjM4NTAzODg0MDc3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-05\",\n            \"systemId\": \"a83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg4NTEwNDQ3ODkyNDc5MTEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-06\",\n            \"systemId\": \"b03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA3NzE3NDQwNzEzNDQ0OTQzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-07\",\n            \"systemId\": \"b83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzQ1NDE1NjIxNDgzNzMwMDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-08\",\n            \"systemId\": \"c03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzMxNjA4MDYzNTU0NTcwNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-09\",\n            \"systemId\": \"c83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjEzMTM5MTg5MTE5NjI4NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-10\",\n            \"systemId\": \"d03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI2NDc1ODY1MzY3NDA5Mjg0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-11\",\n            \"systemId\": \"d83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY5NzA4NjMyMzU3NTM1MDUzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-12\",\n            \"systemId\": \"e03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTU2MjE2NjA1MDUzNTEwMzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-13\",\n            \"systemId\": \"e83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.333Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzU3ODYwODA2NDk2NDI5MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-14\",\n            \"systemId\": \"f03f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTM5NjMyMzEzNTEzNjkzMjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-15\",\n            \"systemId\": \"f83f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgxMjMxNjUxMDIwNTg0ODUwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-16\",\n            \"systemId\": \"004035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDQwMzc4MDEwNDkzOTEyOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-17\",\n            \"systemId\": \"084035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE0MzAxMzYyNTg2NTEyODg0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-18\",\n            \"systemId\": \"104035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.42Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU5MDExMDY3MDIxNzI5NDA1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-19\",\n            \"systemId\": \"184035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY1ODU2ODQxMzIyNzA4NjQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-20\",\n            \"systemId\": \"204035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTQ5NTI3NDM2NzA3NTA0NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-21\",\n            \"systemId\": \"284035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzQwNjUwODU0ODA4OTgzNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-22\",\n            \"systemId\": \"304035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTU3MDEwNzY3NDUyNTU0MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-23\",\n            \"systemId\": \"384035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjU0NjAzMzE2NTE4NDQwMzE1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-24\",\n            \"systemId\": \"404035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTg0ODg0MTE0ODY3NTQ4ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-25\",\n            \"systemId\": \"484035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDExODM0MjM2OTY1MDQ5NzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-26\",\n            \"systemId\": \"504035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjE0ODUwMjMyNjkxMzkyNTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-27\",\n            \"systemId\": \"584035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTI3NTQzODUxNTAxNTY0MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-28\",\n            \"systemId\": \"604035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNzU1NjA1MzUxNzg5NjI4NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-09-29\",\n            \"systemId\": \"684035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ5MDM5NDQzNzY1NjI2Mzg2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-09-30\",\n            \"systemId\": \"704035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEyNjkxMzIwMzI3MjkxODY3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-01\",\n            \"systemId\": \"784035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NTQ2MDYwNTkwOTIxODA4MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-02\",\n            \"systemId\": \"804035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mjg0NjM2MjUwNTU3MTc1MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-03\",\n            \"systemId\": \"884035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzU0MTc0MjI4NDUwOTc1NTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-04\",\n            \"systemId\": \"904035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ1MTgwMTg3NTM1NjA1NjMyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-05\",\n            \"systemId\": \"984035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTMyMjkyMjEzMDE2NjgwMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-06\",\n            \"systemId\": \"a04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjIxMjMzNTM2MDEwNDQxNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-07\",\n            \"systemId\": \"a84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDA0NTQ5MjEwOTExMzg2MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-08\",\n            \"systemId\": \"b04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.86Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQzNDg1NTMyODY4OTA2NzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-09\",\n            \"systemId\": \"b84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.89Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEwMDU2MTMwNjA4NTQzMzEwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-10\",\n            \"systemId\": \"c04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDY4MDI4ODc0NDg5ODU4NzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-11\",\n            \"systemId\": \"c84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzYzMzU2MzA3Nzg2OTQ1Njk2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-12\",\n            \"systemId\": \"d04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMzA0NTE5OTU4OTQ0NjcxMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-13\",\n            \"systemId\": \"d84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM0OTc2MjIwNjE3OTg4ODUxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-14\",\n            \"systemId\": \"e04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NzUzMDQzMjI0MzE5NDA3OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-15\",\n            \"systemId\": \"e84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjM5MTkwMDQ2NTgyMjE1NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-16\",\n            \"systemId\": \"f04035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE1MDgyOTc1MjQ5NDgyMzUwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-17\",\n            \"systemId\": \"f84035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTc2NjY4OTMxMDc5MjA5NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-18\",\n            \"systemId\": \"004135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTczNDQyODgyMzIxMzk2NzM2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-19\",\n            \"systemId\": \"084135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzY5MzY0MDUyMDYxMTcxNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-20\",\n            \"systemId\": \"104135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.187Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODg3NjQ1NDQ1NzY1NjA0NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-21\",\n            \"systemId\": \"184135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU3OTU4MjUyMDU4NDcyNjY4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-22\",\n            \"systemId\": \"204135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA3OTA5MzYyNTE2NjcxMzk3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-23\",\n            \"systemId\": \"284135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA1OTUzODgyMjI0MTc0NzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-24\",\n            \"systemId\": \"304135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM2NTk0NDEyMTY2MDc2MTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-25\",\n            \"systemId\": \"384135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzQyNDY4MTI1NDM3MjczOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-26\",\n            \"systemId\": \"404135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQzNzk3MDM2MjgyMDg1NDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-27\",\n            \"systemId\": \"484135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0OTc2MDU3NzY0MDQ2Mjk3MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-28\",\n            \"systemId\": \"504135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM1MzcyMjk3MjAzNjQ3NTQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-10-29\",\n            \"systemId\": \"584135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDE3MjcxMjQxMzE5MjU3NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-30\",\n            \"systemId\": \"604135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDg0NTEwOTk2NTM4NzQzMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-10-31\",\n            \"systemId\": \"684135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzM4NjU2ODUxMDkwNzI1NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-01\",\n            \"systemId\": \"704135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzA0OTg5MzY3MjU4NzYwOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-02\",\n            \"systemId\": \"784135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0MDc5NTU0NTU2NzkwOTA4MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-11-03\",\n            \"systemId\": \"804135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzOTEyNzQwMzU2NDA4MDY0MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-11-04\",\n            \"systemId\": \"884135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5OTgxMTQ3NDYzNTczMTE2OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-05\",\n            \"systemId\": \"904135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTEwODM1NjQ3NTMyMDAxNjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-06\",\n            \"systemId\": \"984135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNjM1NzUxODI5MzM4NDUwNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-07\",\n            \"systemId\": \"a04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU4NTc3NDIyNjEzMjMxNTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-08\",\n            \"systemId\": \"a84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg3MDc4Mjc0Mzg0NDI5NzI5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-09\",\n            \"systemId\": \"b04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDg0OTE3OTkwOTc4OTI5NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-10\",\n            \"systemId\": \"b84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM4MDg0NTA0MjkyMTA5MTA3MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-11\",\n            \"systemId\": \"c04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE3MjA2NTExNjg3MjYxNTMyMTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-12\",\n            \"systemId\": \"c84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzgxNTI0MTU2NjM1MDcwMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-13\",\n            \"systemId\": \"d04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA4NDc1MDg0Njk3NDE1OTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-14\",\n            \"systemId\": \"d84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkwMjA4ODAzODY2NzgxODgwODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-11-15\",\n            \"systemId\": \"e04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM4NTk2NzE0NzM2MjE0NTI5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-16\",\n            \"systemId\": \"e84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIzMzE0MTAwMTYyMDI4MDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-17\",\n            \"systemId\": \"f04135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzYxODY0Mjk5OTMzMzE5MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-18\",\n            \"systemId\": \"f84135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzcwNzI1NDY4NjA2MjU5MzI1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-19\",\n            \"systemId\": \"004235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjQxOTM4OTM4MDk5MTA0MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-20\",\n            \"systemId\": \"084235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzE0MDU4MDA0OTQ4NDA3ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-21\",\n            \"systemId\": \"104235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE4MDk3MDQ4Njk0MDY0Mzc2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-22\",\n            \"systemId\": \"184235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUzMDMzODY4NDg2MjY2NDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-23\",\n            \"systemId\": \"204235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NDYxNjk3ODE2MjA0MjU0NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-24\",\n            \"systemId\": \"284235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEzNjk2ODkzNzM5ODg0OTE2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-25\",\n            \"systemId\": \"304235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTY5MzU5NTg5ODQ3MzEyOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-26\",\n            \"systemId\": \"384235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODgxMzk0MDE2MDcwNDQ4NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-27\",\n            \"systemId\": \"404235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDgzMjA0OTcxMzgwODYwNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-28\",\n            \"systemId\": \"484235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTY1NDc4NTUyOTMwMjA2NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-11-29\",\n            \"systemId\": \"504235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ3MTY0NTI4NTY5ODU4MTEzMTswMDsn\\\"\",\n            \"planningDate\": \"2026-11-30\",\n            \"systemId\": \"584235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTA4MjIxOTQ3MDkzNzA5ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-01\",\n            \"systemId\": \"604235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzYxMTk4ODIyNzk2NDkyMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-02\",\n            \"systemId\": \"684235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTQ2NDI2NTQyOTQ2NzMyMjY5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-03\",\n            \"systemId\": \"704235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNTczMDAxNjc0NDcxOTM0MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-04\",\n            \"systemId\": \"784235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODYxODA2MzEzNzU2NDcyNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-05\",\n            \"systemId\": \"804235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA0Njc1NDI2NDk3OTgwMzI4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-06\",\n            \"systemId\": \"884235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzk2OTQxOTQ0NzY4MTY0ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-07\",\n            \"systemId\": \"904235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgwOTU5MTkyNjQyOTA0ODc1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-08\",\n            \"systemId\": \"984235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTA0MjQ5MzExNzI5NjcyMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-09\",\n            \"systemId\": \"a04235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc4MzM0OTYzMjAxMTgwMDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-10\",\n            \"systemId\": \"a84235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU2OTkyMzE5MDE3NzU5NjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-11\",\n            \"systemId\": \"b04235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTY5MDI1NTUxNjkwNTkxODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-12\",\n            \"systemId\": \"b84235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzk2MjAzODc2MzU5ODgzMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-13\",\n            \"systemId\": \"c04235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTAzMTg2Mjk4NDMxNzkyNDE4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-14\",\n            \"systemId\": \"c84235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTQzMDA1OTQ3MDU0NTIyNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-15\",\n            \"systemId\": \"d04235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTUyNjU1NDg4MDg1NTYzMzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-16\",\n            \"systemId\": \"d84235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE4MzAzNzkyNjQ5MzMzNTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-17\",\n            \"systemId\": \"e14235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTg5MzIzNDk2MTk1NTc4OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-18\",\n            \"systemId\": \"ea4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNTYyODQ5Mzc5MDM3NzUyMDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2026-12-19\",\n            \"systemId\": \"f24235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzI4NDIwOTk4MDU1NDkyNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-20\",\n            \"systemId\": \"fa4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE3MTc4NjYwMDE2Mzg5NTA2MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-21\",\n            \"systemId\": \"024335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDI3OTczODc2Nzg2NTI0OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-22\",\n            \"systemId\": \"0a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjIxNjA1Nzk5OTY3ODI2NzA4MTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-23\",\n            \"systemId\": \"124335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMDk1MTYwNDE0MTMzNzU2NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-24\",\n            \"systemId\": \"1a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDEwNjkzMTQxNzA3NjU4OTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2026-12-25\",\n            \"systemId\": \"224335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzU2NDEyODI2MzM4MTg1MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-26\",\n            \"systemId\": \"2a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzY2MjIzMzQzNzI2OTM5NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-27\",\n            \"systemId\": \"324335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Njc2MjA5MjQ3OTcwOTYxNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-28\",\n            \"systemId\": \"3a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODYzMTA1MjEwNjkyMzA2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-29\",\n            \"systemId\": \"424335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MzM5NTQ4NTI4NDU1NTc4NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-30\",\n            \"systemId\": \"4a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjgwNTMwOTMyMjM3MDg4MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2026-12-31\",\n            \"systemId\": \"524335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTEzMDU0OTg4NzQ4MzM5MzM1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-01\",\n            \"systemId\": \"5a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDI4MDQ5ODQ0Njc4NzEzMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-02\",\n            \"systemId\": \"624335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjIzNzI2NjgxOTc5MzcwMTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-03\",\n            \"systemId\": \"6a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI1Mjc3MjMyNjU3Njg4NzM4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-04\",\n            \"systemId\": \"724335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE5MzAzNzI0NTM2NDA0NjgzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-05\",\n            \"systemId\": \"7a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5NzYzMzUzOTE3NzE5OTk1NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-01-06\",\n            \"systemId\": \"824335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODU5MTEyOTQ1MjQ4NTk1NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-07\",\n            \"systemId\": \"8a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mjg0NDA5NTIxOTYwODg0MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-08\",\n            \"systemId\": \"924335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3NjI0OTY0NTU0ODI1OTM2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-09\",\n            \"systemId\": \"9a4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODg5MTI0NjQ2MTk2MjkwNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-10\",\n            \"systemId\": \"a24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk5OTY2MzU4NTI0MjM1ODEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-11\",\n            \"systemId\": \"aa4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDEyMTU5MTMxMjM1MDAxMDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-12\",\n            \"systemId\": \"b24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDIxMzAwNDYyMzcyMjQ2MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-13\",\n            \"systemId\": \"ba4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDU0ODQ0MTM3MDY3NjIxOTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-14\",\n            \"systemId\": \"c24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEwMjE1NjE0MTM5MTg3ODYzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-15\",\n            \"systemId\": \"ca4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDkyNDU3NjI2NTgwNjc1MDU2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-16\",\n            \"systemId\": \"d24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODkyODEzNDI2MTAyMDIzMzUzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-17\",\n            \"systemId\": \"da4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTY0MzI1ODI4Mjg0MjczMzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-18\",\n            \"systemId\": \"e24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTM4Njg5MjEyMzQyNzg1MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-19\",\n            \"systemId\": \"ea4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc2MzUzOTQ0MjU3MTcyMjc3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-20\",\n            \"systemId\": \"f24335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzk2MDE2NTMyMDY1NDY3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-21\",\n            \"systemId\": \"fa4335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0NjUwOTk4NDczMzIzOTA3OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-01-22\",\n            \"systemId\": \"024435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU4Njk3MjQwMTA2MjQ0MDE2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-23\",\n            \"systemId\": \"0a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMjM0NjQwMjU3ODc1Nzc3MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-24\",\n            \"systemId\": \"124435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDczNjQ1NjU0MjI5OTM2NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-25\",\n            \"systemId\": \"1a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzI2OTc2ODc5MzgwMjMxMTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-26\",\n            \"systemId\": \"224435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjIwNTExNDc1NjExMDU5NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-27\",\n            \"systemId\": \"2a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODUzOTk5Mjg3NzA5OTcyNjA2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-01-28\",\n            \"systemId\": \"324435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTAxMzAxOTI2NjQ3ODk0MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-29\",\n            \"systemId\": \"3a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzU2MzMzMjkzNjQ2MzQ3MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-30\",\n            \"systemId\": \"424435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjMwNzAxODA2MDM1Mzg1ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-01-31\",\n            \"systemId\": \"4a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTMxNzMxNDU1NDM2NzM5NTcxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-01\",\n            \"systemId\": \"524435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkxMTMxNjk1Mzg1OTc2NTA4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-02\",\n            \"systemId\": \"5a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MzQ3NzY0OTQ1MDg3Njg1MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-03\",\n            \"systemId\": \"624435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzkxMzA3MTgyNzcyMzI2MDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-04\",\n            \"systemId\": \"6a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MTE4MzUyMzA5NjQzNDc5MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-02-05\",\n            \"systemId\": \"724435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.787Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTgzMjY0NzYxMjQ2OTM0NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-06\",\n            \"systemId\": \"7a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwNzI5MDY0NTc5ODYwOTg2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-07\",\n            \"systemId\": \"824435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODY5OTIyOTE5MTM5NTUyNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-08\",\n            \"systemId\": \"8a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg2NjU4MzkwMDc0OTY2MjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-09\",\n            \"systemId\": \"924435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ0NzUzNzE5NzQyNDIyMDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-10\",\n            \"systemId\": \"9a4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYyODMzNTA3NjU3NzU5ODA2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-11\",\n            \"systemId\": \"a24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzI4NTUyMDUwMDkxMjg1NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-12\",\n            \"systemId\": \"aa4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODA1MjI3NDM0NjU2OTU3OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-13\",\n            \"systemId\": \"b24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTYxMzMzNDM2OTE0NzY2MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-14\",\n            \"systemId\": \"ba4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODQzMjYwNzM5NDc2MDYyNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-15\",\n            \"systemId\": \"c24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTgzNTA4NzU5OTEzNTQ4MTU2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-16\",\n            \"systemId\": \"ca4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzAwNTU5OTQyNjIxNzEyNTk3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-17\",\n            \"systemId\": \"d24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjUwNDk0Mjc0MzYyMjA4NTExMTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-18\",\n            \"systemId\": \"da4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTA3ODA1OTYzMzQ0MTI5MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-19\",\n            \"systemId\": \"e24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTAwNjI1NzM5Nzg4OTMyNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-20\",\n            \"systemId\": \"ea4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjEzMTQwMjg1NDM1Mjg3MzIyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-21\",\n            \"systemId\": \"f24435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ1NTQxNjUxNDAxMDM5OTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-22\",\n            \"systemId\": \"fa4435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgzNjU1NTk3OTEwODI5NDIwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-23\",\n            \"systemId\": \"024535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY4NDM2MzY2Njc0NTU0MDA2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-24\",\n            \"systemId\": \"0a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzkzNTE1MzQ1OTU2NDQ3MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-25\",\n            \"systemId\": \"124535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI3NDQwNDIzNTE2NDc2MDg4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-02-26\",\n            \"systemId\": \"1a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTIyNTY1MzMyMTE4NTMwNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-27\",\n            \"systemId\": \"224535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzE3NjYwNTk0Njc2MzUyNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-02-28\",\n            \"systemId\": \"2a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMyNDQ3NjA5MDk4NjUwNDY3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-01\",\n            \"systemId\": \"324535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDE3MDc2NzY4NjA1NjkyMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-02\",\n            \"systemId\": \"3a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1MzMyNjkzMzA0NTc2NzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-03\",\n            \"systemId\": \"424535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDIwNDE0MDE0OTU1MDc5ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-04\",\n            \"systemId\": \"4a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTEzMTQxMDYyMTk1Njg0NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-05\",\n            \"systemId\": \"524535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDIwODg0NTM1NDc3ODIxOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-06\",\n            \"systemId\": \"5a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzcxMzg1ODIxODc3MzUzMjEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-07\",\n            \"systemId\": \"624535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMzMTI1ODY0OTE5MjM1MzY0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-08\",\n            \"systemId\": \"6a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0MjkwMTMxNjk0MDQ3ODA3NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-03-09\",\n            \"systemId\": \"724535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA0Njg2NTk4NTM2NDEzNTEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-10\",\n            \"systemId\": \"7a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzk5Njk4MTIwMDIxMTEzOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-11\",\n            \"systemId\": \"824535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk1MDA1MDQ2MjI1MjU4Njk2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-12\",\n            \"systemId\": \"8a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjI4ODQyODUwNjY2MjM3MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-13\",\n            \"systemId\": \"924535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTgyNTU0MzU2MTQxMzMwMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-14\",\n            \"systemId\": \"9a4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTQ2MjQ5NjUzMDgyOTY4NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-15\",\n            \"systemId\": \"a24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.787Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2NTU1NzgzNjMxODQ2OTM0MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-03-16\",\n            \"systemId\": \"aa4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTQxNzI1MTg1NDQ3NTAwODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-17\",\n            \"systemId\": \"b24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzNDIwNjIzNzUxMjc5NzExMTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-18\",\n            \"systemId\": \"ba4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODAxMDczNDQ3NjUwNjA2ODg4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-19\",\n            \"systemId\": \"c24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjYwMTU0MjgwNzQxNTA4ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-20\",\n            \"systemId\": \"ca4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjMwNDA1NDI4MzQzMTc4ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-21\",\n            \"systemId\": \"d24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY0ODExMDg3MjAzNjU2OTY0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-22\",\n            \"systemId\": \"da4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4ODg3MzE4NTI2ODg4NTM4MDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-23\",\n            \"systemId\": \"e24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjQzODMxNjQxMDU4NDkwNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-24\",\n            \"systemId\": \"ea4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjQ1NjU2ODkwNDE5MzMzOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-25\",\n            \"systemId\": \"f24535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjY5NTQ2MTkyNTIyNDE1MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-26\",\n            \"systemId\": \"fa4535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzkzOTc4NTIyMjc2NjU3MzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-27\",\n            \"systemId\": \"024635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTcwMjc3NTQ1OTg4MzA2NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-28\",\n            \"systemId\": \"0a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjE4ODk2NjAzNDUxNzg5ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-29\",\n            \"systemId\": \"124635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQwNDcxMjE4Njc2NzQwMDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-03-30\",\n            \"systemId\": \"1a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NjY3OTIyNjg5MzI3NjMwMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-03-31\",\n            \"systemId\": \"224635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzkwNDc5NTQ2MDgyODY3MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-01\",\n            \"systemId\": \"2a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMjQ4NjE4MTg3Njk3MTY1MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-02\",\n            \"systemId\": \"324635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYyMzU5ODUxMDc0MzU5NDQyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-03\",\n            \"systemId\": \"3a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEzMTQwNzg3NTE0NjI4OTU1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-04\",\n            \"systemId\": \"424635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY2MTYyNDQ4NDE2NTUwNjI4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-05\",\n            \"systemId\": \"4a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDA5ODk5NTQ4MDYwNzIyNzE3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-06\",\n            \"systemId\": \"524635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIyNzI5NDQwNzIxMDExNDE1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-07\",\n            \"systemId\": \"5a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODAyOTQ1NjM2OTc4MjI0NTQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-08\",\n            \"systemId\": \"624635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1Njc0NzI4NDU0Mjk0MTE1NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-09\",\n            \"systemId\": \"6a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.42Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxNzE5MjU3NDc3MTQ3OTU0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-10\",\n            \"systemId\": \"724635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE0NjA0MjkyOTg5MDA4NjAzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-11\",\n            \"systemId\": \"7a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAxMDA3NzYxNDcyODI0MDA0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-12\",\n            \"systemId\": \"824635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDI4MTE5NDE0MjU3MjIwOTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-13\",\n            \"systemId\": \"8a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTEyMTE2MzUwMTg1NDY2MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-14\",\n            \"systemId\": \"924635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODE4NjI5OTE1MDAzNjYxNDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-15\",\n            \"systemId\": \"9a4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTMyNTE5ODc5MDQ5MTIzOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-16\",\n            \"systemId\": \"a24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTU2MzQ5NjEwMjQ0MDMxNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-17\",\n            \"systemId\": \"aa4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjgwNTA4NDY5ODgzNTcxNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-18\",\n            \"systemId\": \"b24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.7Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDUzODUzNTc4NDQxODQ2MzU3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-19\",\n            \"systemId\": \"ba4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4OTY4MDg5Mzc5MjI4MDc4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-20\",\n            \"systemId\": \"c24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.763Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA2OTczODg3OTYxOTk0MzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-21\",\n            \"systemId\": \"ca4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjIwMDc4OTczOTAzNzE1MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-22\",\n            \"systemId\": \"d24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.81Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjE5OTQ0NzYxMTIyMDcyNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-23\",\n            \"systemId\": \"da4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4MTU0MzE1MzQ3NDUyMDMwNjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-04-24\",\n            \"systemId\": \"e24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.873Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQxMTIzNTA5MjA0Mjk4NzgwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-25\",\n            \"systemId\": \"ea4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.903Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzQ4MTg3NDg4MTMwMDE1ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-26\",\n            \"systemId\": \"f24635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjgxNjIwMDQ1OTUzNDY1OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-27\",\n            \"systemId\": \"fa4635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.92Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzQ2MzE3NTg5NTE2NDc1NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-28\",\n            \"systemId\": \"024735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY1MzUxOTQzOTM2NDkzNDA4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-04-29\",\n            \"systemId\": \"0a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.013Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzIzMTkwNjIxMTQyNDAzNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-04-30\",\n            \"systemId\": \"124735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDk1NzA5Mzc0MDI4Nzc4MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-01\",\n            \"systemId\": \"1a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM2OTc5ODEzMjA4MDY0NzMyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-02\",\n            \"systemId\": \"224735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM0NTk3MTA5NjE2MTg0NzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-03\",\n            \"systemId\": \"2a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDcxOTE2NjU0MTcwODg5NjYyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-04\",\n            \"systemId\": \"324735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIzMzg3MzcyNDA0MjYzMDQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-05\",\n            \"systemId\": \"3a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTk2MDg1NjU1NDc2MDgxOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-06\",\n            \"systemId\": \"424735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk2MTMxMzM3ODg0MjU2MDEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-07\",\n            \"systemId\": \"4a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzkyMTQ5NzYyODgzMjA4MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-08\",\n            \"systemId\": \"524735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzY5MzEwNTQxMjIwNjkyOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-09\",\n            \"systemId\": \"5a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDI0ODcxMTU1MTc1NDAzNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-10\",\n            \"systemId\": \"624735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTAwMDYwMzAyOTgwMTM1MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-11\",\n            \"systemId\": \"6a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTY2ODUxNjg2ODQwMzk0NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-12\",\n            \"systemId\": \"724735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDM2MjA2MTIzMTc1MjczNjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-13\",\n            \"systemId\": \"7a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDEwNDQ0NDc5NzU3NDU4MzMwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-14\",\n            \"systemId\": \"824735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM2MDIxNTUzMTY2NTc1MjAzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-15\",\n            \"systemId\": \"8a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcwNjE4MjQ3ODM3MzI4NTcyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-16\",\n            \"systemId\": \"924735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTE0MzMwNjY1NDUxNjQxNjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-17\",\n            \"systemId\": \"9a4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzkzMzE4NzAyNTkxNTYwNDE0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-18\",\n            \"systemId\": \"a24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTU2OTUzMDUwMTEzMjUyODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-19\",\n            \"systemId\": \"aa4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMTE3MTkwMzc0MDk1ODgyNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-20\",\n            \"systemId\": \"b24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzMxMTczMjQyMzA0MTM0MDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-21\",\n            \"systemId\": \"ba4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI4MDI0MzY5ODExMzU3MDExMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-22\",\n            \"systemId\": \"c24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg5Nzg1MTczMjcxMDM3NTY0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-23\",\n            \"systemId\": \"ca4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY0NTIxNTg1NzIwMzgwODg1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-24\",\n            \"systemId\": \"d24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0Njk1ODcxMjcxOTU2MTA2MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-25\",\n            \"systemId\": \"da4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDA0MDA3NDE3MDY2MzcyNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-26\",\n            \"systemId\": \"e24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzODcyOTAwMzQ1MTQ1OTM2MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-05-27\",\n            \"systemId\": \"ea4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Nzc3NzE1MDUxMjQ3MzM0MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-28\",\n            \"systemId\": \"f24735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ5NTUwOTY0ODI3NjMxNjgzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-29\",\n            \"systemId\": \"fa4735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjE3OTg5NTIyNDY0MTUwMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-05-30\",\n            \"systemId\": \"024835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY2NTA4ODI5Mzk4MDE5MzY2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-05-31\",\n            \"systemId\": \"0a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDU1MjI1OTk4NTEyMjYzNTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-01\",\n            \"systemId\": \"124835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3ODI0MTQyODExNTA2NTMxMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-02\",\n            \"systemId\": \"1a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIxODA0NjEzMTg4OTI5NzYxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-03\",\n            \"systemId\": \"224835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA1NDU3MDM2NDgzMzAyMzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-04\",\n            \"systemId\": \"2a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIwNjkzMjU3NjA0NjU0ODk5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-05\",\n            \"systemId\": \"324835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODkwMzE3MjE2MTM2NTc5NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-06\",\n            \"systemId\": \"3a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.017Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTYyNjA3MDI5MTM5Mjc1NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-07\",\n            \"systemId\": \"424835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYxNzc0MjgyODUzNTQwNTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-08\",\n            \"systemId\": \"4a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgwOTI2MDcwODMzMzU5ODMyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-09\",\n            \"systemId\": \"524835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzc3MzI5ODE4MjM3MDM0NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-10\",\n            \"systemId\": \"5a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU3MTA1MDM2MzYzODQ0MTM4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-11\",\n            \"systemId\": \"624835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODkxNDgzMjYzNDQ0MzQ2OTE2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-12\",\n            \"systemId\": \"6a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODI0MDE3MjYxMjg1NjMwNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-13\",\n            \"systemId\": \"724835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg5OTQ1ODgxMzE5MzUzOTI2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-14\",\n            \"systemId\": \"7a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyMjI2MDU2Nzc4ODczMjg3OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-06-15\",\n            \"systemId\": \"824835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzIwMDg0NDM0NTAzMjgxODE2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-16\",\n            \"systemId\": \"8a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MTg1ODQxNzM2NDg1NTc5MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-17\",\n            \"systemId\": \"924835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Mzg5MjQwMjQ5MTQ0NDQwMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-18\",\n            \"systemId\": \"9a4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI1MDE1NzE3MzkzOTA5NzgwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-19\",\n            \"systemId\": \"a24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgwMzQxMzgzMjcwMzExNTMzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-20\",\n            \"systemId\": \"aa4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDk1NjYyOTQwMDI1MzY3NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-21\",\n            \"systemId\": \"b24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzNjI3NjQ5MDUxNTIwOTIxNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-06-22\",\n            \"systemId\": \"ba4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTEzNTUzMTQ5MzczNjkyNTA0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-23\",\n            \"systemId\": \"c24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDIzODI2MDU5MDM2MDMzNDEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-24\",\n            \"systemId\": \"ca4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4MjA4NDU0MjEyMDU1NTQzNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-06-25\",\n            \"systemId\": \"d24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkyNjg2NjM4MjMyMzA1NDEyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-26\",\n            \"systemId\": \"da4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk1MzY5NDI3NDk1NjY2NDAxMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-06-27\",\n            \"systemId\": \"e24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUzNzA0OTAyNzI4MTIwMzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-28\",\n            \"systemId\": \"ea4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE4MzY1NDAzNzgyODU0Njg3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-06-29\",\n            \"systemId\": \"f24835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDQ3NTQ3Mjg1NjU0Nzk0OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-06-30\",\n            \"systemId\": \"fa4835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM3NzkzMDY3MTE0OTU0NjU4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-01\",\n            \"systemId\": \"024935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.613Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTY1ODgzMzg4MzgzMjgxMDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-02\",\n            \"systemId\": \"0a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzkwNjQxMTE1MjAyODI5NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-03\",\n            \"systemId\": \"124935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIzMjU4OTc2NDIzMDQ0ODkzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-04\",\n            \"systemId\": \"1a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA3MjQ5MDIyMzk1NDkwOTM0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-05\",\n            \"systemId\": \"224935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM4NjU2MjQ3NTczOTQxNTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-06\",\n            \"systemId\": \"2a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.74Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE0MzA2OTcxNDUzNDM0ODI1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-07\",\n            \"systemId\": \"324935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.74Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDM4OTAzMDA5Mjg1MzgyNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-08\",\n            \"systemId\": \"3a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDczNzUzNzIyNjkyNDg0NTg3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-09\",\n            \"systemId\": \"424935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.803Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTk5ODg4MTgxODQ4MDAwMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-10\",\n            \"systemId\": \"4a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.803Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDQ3OTI2MjQ1NjIzOTA3OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-11\",\n            \"systemId\": \"524935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.85Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY5NTYyODM2NTc5MjU1NjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-12\",\n            \"systemId\": \"5a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDE3MjAxMDc4MjM4MzQwOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-13\",\n            \"systemId\": \"624935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODIyMzE0OTQ4NDUzNDgyMzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-14\",\n            \"systemId\": \"6a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.88Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NjkwNDI0MjUyMjQyNTQ2OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-15\",\n            \"systemId\": \"724935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.913Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3NzgxNTA1OTgyNzYzNDg1OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-07-16\",\n            \"systemId\": \"7a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MjgyNTYyNzgzNzE2OTU1NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-17\",\n            \"systemId\": \"824935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTQ5Nzg4OTUxOTI5ODMyNzAxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-18\",\n            \"systemId\": \"8a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjg4NTQ2ODg5NTI3MDYzNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-19\",\n            \"systemId\": \"924935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODEzNTg1OTY0MDc3MDM3MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-20\",\n            \"systemId\": \"9a4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzcwODI3Mzc3NjgzNjY1NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-21\",\n            \"systemId\": \"a24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTExMDg2Njk0NDE2ODA0MjkwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-22\",\n            \"systemId\": \"aa4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDQ1ODcyNDE3MzMzMTM2NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-23\",\n            \"systemId\": \"b24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTkxMTM1MDkwOTcxNTk5NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-24\",\n            \"systemId\": \"ba4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTUwNDkzOTkxMzk4MTg0MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-25\",\n            \"systemId\": \"c24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzIxMDUyMDk2NzA0MDg3MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-26\",\n            \"systemId\": \"ca4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDkxOTk3MTI1MDE5NzIyOTYwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-27\",\n            \"systemId\": \"d24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI3MDg2MjAwNTcyNzI2NDI1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-28\",\n            \"systemId\": \"da4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjM4MDAzNjMyNTE4MzQ5MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-29\",\n            \"systemId\": \"e24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTkzOTI0NTY1NzA2NzA1NjQzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-07-30\",\n            \"systemId\": \"ea4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.227Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDU5MDcyNzE5MjY1NzI5NjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-07-31\",\n            \"systemId\": \"f24935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjEwNTMzMDA3NDczODI5OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-01\",\n            \"systemId\": \"fa4935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY3NTc1NzkxMjAxMjg3MDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-02\",\n            \"systemId\": \"024a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTU0MTAzMTQ5ODQ3MTcyMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-03\",\n            \"systemId\": \"0a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAwMzg1MzY1NzM2OTIwODA5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-04\",\n            \"systemId\": \"124a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU5ODI0MDEzMTczOTg5ODEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-05\",\n            \"systemId\": \"1a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTM3MjIxOTQzNTcwOTc4MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-06\",\n            \"systemId\": \"224a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDc4NTI3NzE3MDc5MDM2MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-07\",\n            \"systemId\": \"2a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDUwNTQ1NTYyNDYyNTU1NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-08\",\n            \"systemId\": \"324a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTIyMDAwNDY3NzYwNTEzNjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-09\",\n            \"systemId\": \"3a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.463Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc2NDgyMTk5NzExMDc1NjY0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-10\",\n            \"systemId\": \"424a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.493Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTAxNDg3MDQ3MjI4MjEzMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-11\",\n            \"systemId\": \"4a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTI0NTI1MDEwNTA3MDQxMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-12\",\n            \"systemId\": \"524a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIzMTI0MjM3ODM4ODc5Mjc2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-13\",\n            \"systemId\": \"5a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTE0NDM3NTgwMjIxODI5OTczMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-14\",\n            \"systemId\": \"624a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE2MjMxMzU1NzcxMTU5OTM0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-15\",\n            \"systemId\": \"6a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkyNDk1MjA5OTU3NzI1MzU0MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-08-16\",\n            \"systemId\": \"724a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQyMDczOTc0MTU3Njc4NTQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-17\",\n            \"systemId\": \"7a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ5MDE0MTI4NjAxNDEzMjEwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-18\",\n            \"systemId\": \"824a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDc2MDMxMDQ2NDk5OTIyMjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-19\",\n            \"systemId\": \"8a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjY2MjExMjM0NTgzODk4NzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-20\",\n            \"systemId\": \"924a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ0NzE3NjUxMjcwNzYxOTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-21\",\n            \"systemId\": \"9a4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk1NzA2MzI3MTMxOTE5MjE0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-22\",\n            \"systemId\": \"a24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI2Mzc4MDYzOTIwMDk0MzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-23\",\n            \"systemId\": \"aa4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyMTkzNDExMzk4ODgwNTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-24\",\n            \"systemId\": \"b24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.683Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzEzMzQyODIxNTQ3NjAyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-25\",\n            \"systemId\": \"ba4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDI5NTE2OTUyNDQ2MTM3ODI3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-26\",\n            \"systemId\": \"c24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzA1Mzg0NzkyMDAzMzU0NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-27\",\n            \"systemId\": \"ca4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjY3MjQ4MTIyNjg2ODMxNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-28\",\n            \"systemId\": \"d24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njc5OTE3Nzg1MzkyOTE2MDYyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-29\",\n            \"systemId\": \"da4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDE5OTAwOTIyNDk2NjkwMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-08-30\",\n            \"systemId\": \"e24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE5MTExOTY2ODMwMDk0MDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-08-31\",\n            \"systemId\": \"ea4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM0OTUxNTM2MTY3NTI0NTcwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-01\",\n            \"systemId\": \"f24a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjU1MDc2ODkxOTg3MzU2NzcxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-02\",\n            \"systemId\": \"fa4a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzAxNjY4MjQzMDk0OTgzNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-03\",\n            \"systemId\": \"024b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzY5NzA0NzMxMTQ3NTQzODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-04\",\n            \"systemId\": \"0a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMzI5MTQzMzEyMzg1NDY4MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-05\",\n            \"systemId\": \"124b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTg3NTc0OTE3ODMzNjMxODE2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-06\",\n            \"systemId\": \"1a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODIxOTc0NTI0Mzc3NjUwNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-07\",\n            \"systemId\": \"224b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTI4NjkxODkyMjU5NDAyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-08\",\n            \"systemId\": \"2a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM5NTcxMzI1Mjg4MzIwMDgzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-09\",\n            \"systemId\": \"324b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.06Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI0NDE2Njk5NTM3ODQ0MTQwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-10\",\n            \"systemId\": \"3a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.093Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk1NTcwNjA2NjU2OTY2ODA2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-11\",\n            \"systemId\": \"424b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjUzMTEwOTU5MTk4OTMzNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-12\",\n            \"systemId\": \"4a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.157Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NTA2NTU1NDI3ODY1OTI1NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-13\",\n            \"systemId\": \"524b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.203Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQ2OTk4NDY2NjM0MjI4NDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-14\",\n            \"systemId\": \"5a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTMzMTUwNDMwMzI4NjIwNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-15\",\n            \"systemId\": \"624b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTMxMDYxNjM4NTExNjYzMTcxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-16\",\n            \"systemId\": \"6a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgzNTI4MTM5MjI0MTY0NjA1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-17\",\n            \"systemId\": \"724b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2OTE0MzI3Mjc4MDc0ODg0MDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-18\",\n            \"systemId\": \"7a4b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTkyMDI1MjkxODcxMDE4MjIzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-19\",\n            \"systemId\": \"824b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU0MzA4MTc5ODY1NjM5NTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-20\",\n            \"systemId\": \"692e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTI1ODYyODMxNjQ2ODA4NzM5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-21\",\n            \"systemId\": \"712e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.437Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwMDMwNDI3NjE4MjY4NTE4MDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-09-22\",\n            \"systemId\": \"792e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTkwNzA0ODE0NjYyMjYyMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-23\",\n            \"systemId\": \"812e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTIwNjAzMTU1MDI0MzYzMzQzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-24\",\n            \"systemId\": \"892e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.5Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzMxNTA5MzM2NDk2NTMxNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-25\",\n            \"systemId\": \"912e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzE3MDA4NzEzMDIwNjY1NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-26\",\n            \"systemId\": \"992e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjI5NDgxNDk2MzUxODI1MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-09-27\",\n            \"systemId\": \"a12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUxMjc1NjcyOTE3MTAyMTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-28\",\n            \"systemId\": \"a92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEyMDg0NTUzNjQ1MTU3NTQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-29\",\n            \"systemId\": \"b12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDY3MjMwNTgyNDY1OTY3NTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-09-30\",\n            \"systemId\": \"b92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NzEwNzgzMzU1ODY2NjQxOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-01\",\n            \"systemId\": \"c12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM2NjE0NTk2MTc4MzA3NTI4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-02\",\n            \"systemId\": \"c92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODU5MjI2NTM4MjYxOTQwMDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-03\",\n            \"systemId\": \"d12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzkwNDU5MzMyNTczODUyNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-04\",\n            \"systemId\": \"d92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjk2MzUxMDgxNjg5NzU2ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-05\",\n            \"systemId\": \"e12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY5MzE5MzU5Mzg5MDE5MjkzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-06\",\n            \"systemId\": \"e92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzMwNTE1MDA5ODEyODYzNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-07\",\n            \"systemId\": \"f12e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk2MTc3NDI5MjQ1NTQyMTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-08\",\n            \"systemId\": \"f92e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM2MjU2MzY1NTgzNDAzMDMyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-09\",\n            \"systemId\": \"012f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDAyODY5MjU5NDkxMTMwNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-10\",\n            \"systemId\": \"092f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg4MjAwNTc5NTUyMzQ3NjU5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-11\",\n            \"systemId\": \"112f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA2MDM2Mzk2NTg2MTg5OTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-12\",\n            \"systemId\": \"192f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ1MzYyNDU3ODQzMTU4ODI5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-13\",\n            \"systemId\": \"212f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODEzMDEwNDYzNzU4NDQ0ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-14\",\n            \"systemId\": \"292f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzMwODM0ODczOTg4NTE5MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-15\",\n            \"systemId\": \"312f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDkxODU0Mzg5OTg2MzYwNDg4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-16\",\n            \"systemId\": \"392f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA3NTA2NDEyNzEwMjA2MjU4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-17\",\n            \"systemId\": \"412f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxNTQ3MDcxOTU4NzU3NDg3NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-10-18\",\n            \"systemId\": \"492f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyOTQwNTkxOTc0NjMxMDMwMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-19\",\n            \"systemId\": \"512f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTAwNzA0MTU3MzA5Mzk5ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-20\",\n            \"systemId\": \"592f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDY1OTUwMTkwMjA1MDAyNTE4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-21\",\n            \"systemId\": \"612f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODAzNjcwNDYyMjc3MzYyMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-22\",\n            \"systemId\": \"692f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc5MjE4NTg1NjY5MTk1MDQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-23\",\n            \"systemId\": \"712f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTU2MDA0NDAyMjM4OTkyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-24\",\n            \"systemId\": \"792f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyMDY5NTYyNzU4MTkwODg1OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-10-25\",\n            \"systemId\": \"812f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMxOTkxNjcxMDkwOTI1MzgwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-26\",\n            \"systemId\": \"892f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTc2Nzc3NjY1NTQ5Mzg2MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-27\",\n            \"systemId\": \"912f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTcyMzg2MTQ3MTQxODU4ODcwMTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-28\",\n            \"systemId\": \"992f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTAyOTM4MjI1MjQ4ODYwNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-29\",\n            \"systemId\": \"a12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTc2MTA1MjM0NDcwODU1NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-10-30\",\n            \"systemId\": \"a92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ1OTY5NzM1Nzc2NzI3MDU4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-10-31\",\n            \"systemId\": \"b12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY5MTUwMzkzNTMyNTQ1NzU1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-01\",\n            \"systemId\": \"b92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM3MTI4MDkxODUwOTUwMDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-02\",\n            \"systemId\": \"c12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Mzg5NjE5NjIzNDY2ODI2NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-03\",\n            \"systemId\": \"c92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTE2ODc1ODQ2NDI1MjQxOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-04\",\n            \"systemId\": \"d12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODIwNzM1NTcyMDcwODM5MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-05\",\n            \"systemId\": \"d92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjI5OTAyMzQ4MzA1Mzg5MTI5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-06\",\n            \"systemId\": \"e12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg0NjEwNzI4ODkyMzA5MzYyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-07\",\n            \"systemId\": \"e92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQxNDQ3NTEwMDMyOTkwMzc5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-08\",\n            \"systemId\": \"f12f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.42Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDA4NDY5NjA2NjUwODU5NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-09\",\n            \"systemId\": \"f92f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODIzODg4MzU2MTgzNDA2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-10\",\n            \"systemId\": \"01302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkyNDY5Mjk2NzA1MTE5NDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-11\",\n            \"systemId\": \"09302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgyNzA5NDE1Njg5NDE3NTA0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-12\",\n            \"systemId\": \"11302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjA3MzY1NTA5NzE5Njk3NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-13\",\n            \"systemId\": \"19302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ5ODAyNzE1NzA3MDEyODgyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-14\",\n            \"systemId\": \"21302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzE5MDcxOTY4NTc4NjA1NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-15\",\n            \"systemId\": \"29302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc4MTUzNzE3MzYzMjAxNDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-16\",\n            \"systemId\": \"31302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.59Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA4NDQyNTM1NDA5MDQ5Njk0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-17\",\n            \"systemId\": \"39302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.62Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY3NjQ4NzQxNTg1NTk1MTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-18\",\n            \"systemId\": \"41302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDIwNzExNzM2MzM4NjMzMzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-19\",\n            \"systemId\": \"49302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.683Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjY4NjE3NTc2ODUyNTYxMjI1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-20\",\n            \"systemId\": \"51302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODY1MjU3MDQwNzEwMjk5ODU4MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-21\",\n            \"systemId\": \"59302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY4ODQ3MzM0ODY5MTgzOTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-22\",\n            \"systemId\": \"61302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDUyMjkxODk0MjM4ODgxNjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-23\",\n            \"systemId\": \"69302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDA1NzA2MTQxMDIzMzExMDg2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-24\",\n            \"systemId\": \"71302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjYwNDA3MzM4MTQxMTU1MjU1MTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-25\",\n            \"systemId\": \"79302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM4NjM5ODA4MjgwNDg1MzkyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-11-26\",\n            \"systemId\": \"81302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMzQ4NzE0MjM0MDc5NTUwNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-27\",\n            \"systemId\": \"89302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjA4MjAzNTIxMjYxMDA4ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-28\",\n            \"systemId\": \"91302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODU4MDUyODI1NzA2NjE5ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-29\",\n            \"systemId\": \"99302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjY3OTA1NDAwNjE2NTYwMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-11-30\",\n            \"systemId\": \"a1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.997Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODA0NzYyODU3MDk0OTU5ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-01\",\n            \"systemId\": \"a9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1ODQ0NzUxNDE3OTIzODI2MzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-12-02\",\n            \"systemId\": \"b1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjgwMjEwODM1NjYwNzgwNzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-03\",\n            \"systemId\": \"b9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc5MjAxOTU3MDM4MDYwNzk0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-04\",\n            \"systemId\": \"c1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.12Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDYzNjcxMzczMTk3Njg5MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-05\",\n            \"systemId\": \"c9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzAxNzQwOTc4MzIwODcwNjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-06\",\n            \"systemId\": \"d1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjU4OTc5Mjk4ODkwMTE1MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-07\",\n            \"systemId\": \"d9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjY2OTcxMzY3NzY3OTQyNDE0MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-08\",\n            \"systemId\": \"e1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg4MTczNzgzMzExMzIxOTExMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-09\",\n            \"systemId\": \"e9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTA5MzAwMzM0MjUzMTc2MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-10\",\n            \"systemId\": \"f1302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.23Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTY4NDA5MDEwNDc2MTUyMTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-11\",\n            \"systemId\": \"f9302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjcxNTYxNzg3MDY0MjgxNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-12\",\n            \"systemId\": \"01312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NDE4MTMzMjE0OTk5MjQxMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-12-13\",\n            \"systemId\": \"09312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjEwNDU5ODgzMTE0OTY5NjUzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-14\",\n            \"systemId\": \"11312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.34Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU5NzIzODUxMzc5MDg1MjYyMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-15\",\n            \"systemId\": \"19312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA5NzM3ODc0OTczMjE5MDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-16\",\n            \"systemId\": \"21312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODMzNDAxODA5ODAyOTk2NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-17\",\n            \"systemId\": \"29312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMxNDM1NTkzMTc5MjIwNzQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-18\",\n            \"systemId\": \"31312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA3NTExMjQ1NTQxOTA1MTA3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-19\",\n            \"systemId\": \"39312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwMTc4ODY3MDE3ODI1OTEwMDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2027-12-20\",\n            \"systemId\": \"41312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.463Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MjU2ODUyOTA4NDU0MjAyOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-21\",\n            \"systemId\": \"49312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.683Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjE1NDU4MTEyOTEwMjM1NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-22\",\n            \"systemId\": \"51312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjQwMjcwMzQ1NzAxMTk1NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-23\",\n            \"systemId\": \"59312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYxMTIxMzEzNDYwNjkyMDQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-24\",\n            \"systemId\": \"61312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.76Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTE5MjEyNjMwNjQ3OTYwNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-25\",\n            \"systemId\": \"69312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDcxODczNDkwOTE0Mzg1MjY3MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-26\",\n            \"systemId\": \"71312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDM1MjM5NTA3NTY0MDQ1ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-27\",\n            \"systemId\": \"79312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzAyNTY4MjQ1MTkwMzIyMjI5MTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-28\",\n            \"systemId\": \"81312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTE1OTM1NjE0NDAxMDk4MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-29\",\n            \"systemId\": \"89312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTQzOTAyMjQxMDI2NTU2NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2027-12-30\",\n            \"systemId\": \"91312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQ3NzAwNTYyMTY2MDc1MzYxMTswMDsn\\\"\",\n            \"planningDate\": \"2027-12-31\",\n            \"systemId\": \"99312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA4MzMwMTI5MjIyNDU3MTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-01\",\n            \"systemId\": \"a1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODQyMTY1ODU0NzczMDA3MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-02\",\n            \"systemId\": \"a9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTI0MjMwMDMyNzU2ODE4ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-03\",\n            \"systemId\": \"b1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Mjg4NDYyNTAyMDQ2NDM0NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-04\",\n            \"systemId\": \"b9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTQ2OTY3MTMwMjU0MTI2ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-05\",\n            \"systemId\": \"c1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQxMDY2NjM3MjAwMzc0NzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-06\",\n            \"systemId\": \"c9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgyOTAzMzY5NzQxMjA2NjQxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-07\",\n            \"systemId\": \"d1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTg4MjEzMjMyMzgwODE2NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-08\",\n            \"systemId\": \"d9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc1MTEwNTM2MjU0MTU1NzE1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-09\",\n            \"systemId\": \"e1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.23Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzQxMjQwMDg5NDk0ODk1MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-10\",\n            \"systemId\": \"e9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU0NTE4ODY5NDAyNzg1MDQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-11\",\n            \"systemId\": \"f1312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjU1OTUyODE5MjI2MjM4NTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-12\",\n            \"systemId\": \"f9312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTc5ODkwOTY4NTA2OTYwNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-13\",\n            \"systemId\": \"01322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM3OTM3MDcxMDU0OTk2OTI5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-14\",\n            \"systemId\": \"09322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDcwMDE0NDQ0OTY1OTIyNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-15\",\n            \"systemId\": \"11322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODAxNjYxMDIyNjk3ODMwNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-16\",\n            \"systemId\": \"19322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODYyNjI5MDQxOTczOTYxODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-17\",\n            \"systemId\": \"21322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzUwNDMzODIzNzkwODI4MTM0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-18\",\n            \"systemId\": \"29322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ3ODUzNzU0MTk2MDg4MTExMTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-19\",\n            \"systemId\": \"31322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0NTUyNjQwNTkwNTcyNDE1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-01-20\",\n            \"systemId\": \"39322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA0MjQxODQ0NDk2MDA2MTc3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-21\",\n            \"systemId\": \"41322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI5NjM0MDgyNDk5MTkyMjgzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-22\",\n            \"systemId\": \"49322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.48Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDczMzk5ODc2Nzc0MDYzMzE2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-23\",\n            \"systemId\": \"51322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUzNzcxMTgwOTI4NTQ2NzE3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-24\",\n            \"systemId\": \"59322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc5Mjc3Njg0NDA4MTA3NjIyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-25\",\n            \"systemId\": \"61322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjM3NDA3NTU4MTk2MzcxODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-26\",\n            \"systemId\": \"69322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.62Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzkyNTYzNDkzNDk1MTMyNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-27\",\n            \"systemId\": \"71322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzYxNzM3ODM2MDI2MzY0NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-28\",\n            \"systemId\": \"79322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg2NjE1MDAyMTQ2Njk3MTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-01-29\",\n            \"systemId\": \"81322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwOTU1ODc3OTkwNzkyMzgyOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-30\",\n            \"systemId\": \"89322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODQyMTczNTAxMjgyNDgxNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-01-31\",\n            \"systemId\": \"91322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwNTk2MjE2NzEzNjc3MjI3ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-02-01\",\n            \"systemId\": \"99322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczMDczNDk1NjkxMDkyMTQzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-02\",\n            \"systemId\": \"a1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjQwNzYxMDI5NTQxMTE5NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-03\",\n            \"systemId\": \"a9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTA2Nzc2OTY0NTc1MDgzNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-04\",\n            \"systemId\": \"b1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTkyMTk4MDY1NzA5OTE0MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-05\",\n            \"systemId\": \"b9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTE2MzYxNjM4NDE2MTgxNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-06\",\n            \"systemId\": \"c1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzk5MTA5NjA2Mzk0NjU1NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-07\",\n            \"systemId\": \"c9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQwMDIzMjQxMTMxMDA1NjA2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-08\",\n            \"systemId\": \"d1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzcyNzQwMzEzNjAxMTUxMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-09\",\n            \"systemId\": \"d9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjc0NjM4NzY2NDE2OTkzNTI5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-10\",\n            \"systemId\": \"e1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTgxMzI5MjEyOTQzMjE0NTMwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-11\",\n            \"systemId\": \"e9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODA2Nzc3MDM1NTY2NDA5NjU5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-12\",\n            \"systemId\": \"f1322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY3NTA4NDIyNjQxNzA4ODIwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-13\",\n            \"systemId\": \"f9322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.043Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTgyMjA0MDQ1NDAyOTk3NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-14\",\n            \"systemId\": \"01332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODg2NTY4NzQ1NDg3NzU5NDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-15\",\n            \"systemId\": \"09332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM3ODAyNzAwMDE5Nzk2NTI4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-16\",\n            \"systemId\": \"11332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDk2OTAzOTI0NDcxMDk2NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-17\",\n            \"systemId\": \"19332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDIyNjk5ODI5MTQzMzUxMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-18\",\n            \"systemId\": \"21332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Nzc1NjIzMzUxODk4ODk4NjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-19\",\n            \"systemId\": \"29332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ3MDg5MjkzMDUxNDM4NDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-20\",\n            \"systemId\": \"31332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzY1MDYxNzg0MDA2NTI4OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-21\",\n            \"systemId\": \"39332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc2MjIzMjY5MTI0MjE2MzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-22\",\n            \"systemId\": \"41332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNDk5MzE2NzYzNTIzMDc0NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-23\",\n            \"systemId\": \"49332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzNzM1NzA4NjA1MjY3NDQ4OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-02-24\",\n            \"systemId\": \"51332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDg1ODI4MDI1MDQ4NzU4NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-25\",\n            \"systemId\": \"59332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE2NTQwMTcwNDA2NTI0MTIzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-26\",\n            \"systemId\": \"61332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTQ0Njg0OTAxNzcwNDg5ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-27\",\n            \"systemId\": \"69332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTIzMDAxMDM5NzMyNDQ3NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-02-28\",\n            \"systemId\": \"71332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.463Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU3ODcyNTg0NzA3Mzc5MTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-02-29\",\n            \"systemId\": \"79332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjcyNDEzMTg4NDk1NTUxOTIwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-01\",\n            \"systemId\": \"81332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTMwNzE4NzA0OTk4ODI0MDU3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-02\",\n            \"systemId\": \"89332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM1MDIzMDE2MjEyNTU2MDM0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-03\",\n            \"systemId\": \"91332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk4NTI2NzEwMTExNzA5NDg0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-04\",\n            \"systemId\": \"99332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzQ5NzIzNjcwMjUwNzQ3NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-05\",\n            \"systemId\": \"a1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk4Njk4MTYwMzEyODI2NzUwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-06\",\n            \"systemId\": \"a9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzNjc5MDg1MDQ0MjQ2Mjc5MTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-03-07\",\n            \"systemId\": \"b1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzEwMzIyOTUyNzk2Mjc1NDA4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-08\",\n            \"systemId\": \"b9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.717Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU5MjYzMTU0NTEzNTQxMjI1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-09\",\n            \"systemId\": \"c1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjQ1MTY3NDE0Nzg4NDgyNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-10\",\n            \"systemId\": \"c9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY2NDM4MjYxMTIxMTg1MTAwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-11\",\n            \"systemId\": \"d1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY0MzIyODQzMTA1MDE3ODc3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-12\",\n            \"systemId\": \"d9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MjA3NzI1OTk1NzQzNzM5NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-13\",\n            \"systemId\": \"e1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzc1Mzc2NTIzMDU3MjIxMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-14\",\n            \"systemId\": \"e9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI0MDE1Mzg5OTc4NjM2MTI4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-15\",\n            \"systemId\": \"f1332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzIxMzI2MzY5NDM4OTA5MjEwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-16\",\n            \"systemId\": \"f9332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTQ2NjEyMzIwNjcyMTg0OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-17\",\n            \"systemId\": \"01342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.857Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk0NDM0NDI5MTQzODA3MTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-18\",\n            \"systemId\": \"09342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODIxMDkxODAzOTE1ODU4NzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-19\",\n            \"systemId\": \"11342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU1NTI4NjgxNDA2NjI3MzI2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-20\",\n            \"systemId\": \"19342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzkxMDg0NzgxNTQyMTM4OTE5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-21\",\n            \"systemId\": \"21342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzIyNTE0MDA1NDYxNTcyMzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-22\",\n            \"systemId\": \"29342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjgxNTM4NjYyOTU2OTIyNTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-23\",\n            \"systemId\": \"31342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDI5MTUwMTY3ODg1MjU1OTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-24\",\n            \"systemId\": \"39342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDIwOTAxMTU4NTAyMDk2NDI4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-25\",\n            \"systemId\": \"41342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4Njc3Nzk3MzkxODczNTQ3NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-26\",\n            \"systemId\": \"49342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTkyNzE0MDU5NTkxNzc2NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-27\",\n            \"systemId\": \"51342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTEyNzA5MDQzMDIzNzIzMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-28\",\n            \"systemId\": \"59342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjE2NDgzMzk4MzQ3MTY1ODU3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-29\",\n            \"systemId\": \"61342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA5NTY4NjI5MTI4ODQ1NzcwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-03-30\",\n            \"systemId\": \"69342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDE3NjgwOTk1NzEyNTM1MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-03-31\",\n            \"systemId\": \"71342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.043Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjkzNzkwNzc1MTEzMzQ4OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-01\",\n            \"systemId\": \"79342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjE4NzYzNjEwNzY2NzU4NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-02\",\n            \"systemId\": \"81342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU3ODQ0NjAxNTAwNDQ0ODc5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-03\",\n            \"systemId\": \"89342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDYyNjUxNTkxODkyOTYwMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-04\",\n            \"systemId\": \"91342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.12Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTk1NzcxMDMyNjEwODU0MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-05\",\n            \"systemId\": \"99342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkwNjUxMDEzNDY5NTY0MDkwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-06\",\n            \"systemId\": \"a1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTgyNTQyMjQxMDA5MTUyMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-07\",\n            \"systemId\": \"a9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MTQ3OTg3MDgwMDY5NDM2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-08\",\n            \"systemId\": \"b1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc1NDEyMzI1OTAyNzY3MzUwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-09\",\n            \"systemId\": \"b9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzQyNzE0NzY4MDk2Mzc0MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-10\",\n            \"systemId\": \"c1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTE4MzA5OTk2MjM5NTIyMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-11\",\n            \"systemId\": \"c9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODczMzI4NTY1NzAwMzI1MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-12\",\n            \"systemId\": \"d1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNzMxMTYzMzg5MTQwODA5ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-13\",\n            \"systemId\": \"d9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTU4MzQzNTcwMTg1NDcwODgzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-14\",\n            \"systemId\": \"e1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA1MzI3ODI0NzczMDAwMzMzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-15\",\n            \"systemId\": \"e9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTc5NDU0MzExNzkzMDI3NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-16\",\n            \"systemId\": \"f1342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ2Njc0NjEzOTU3MjcyMDk1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-17\",\n            \"systemId\": \"f9342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.417Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTQzMTk5ODMyMjAxODEwNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-18\",\n            \"systemId\": \"01352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI3NzUyNDY4MTMxOTEyNjU3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-19\",\n            \"systemId\": \"09352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.467Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTg2NDkwMzI1Njc3NzY5MjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-20\",\n            \"systemId\": \"11352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTcxOTU0MTE1NzI5MjI4MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-21\",\n            \"systemId\": \"19352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDEyMzExNDQwNDIwODE0ODI5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-22\",\n            \"systemId\": \"21352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.543Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzE4NTQ2NjY3NTA5MjYzMDMwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-23\",\n            \"systemId\": \"29352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzOTYwNzIxMzI4MjUyNDczNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-04-24\",\n            \"systemId\": \"31352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.607Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMzE5MTAyNTM0MjYzMjk4NjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-25\",\n            \"systemId\": \"39352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ4NzM3ODE3NDQ4MTc0NTQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-26\",\n            \"systemId\": \"41352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ2NDgwNDU4Nzk2Njk5Nzg3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-04-27\",\n            \"systemId\": \"49352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.7Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTQ0ODY2NDEwMTQ3NDE4NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-28\",\n            \"systemId\": \"51352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDM1MjU3NTMwODc5MDgyNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-29\",\n            \"systemId\": \"59352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDQ2MzM5NTI4MDE2OTQ4MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-04-30\",\n            \"systemId\": \"61352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTIwNTc3OTc2OTg1NTQ1MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-01\",\n            \"systemId\": \"69352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.793Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjgyMDM5MTExMjUwODg5NTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-02\",\n            \"systemId\": \"71352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjczODg3NjE0NTY4OTYyOTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-03\",\n            \"systemId\": \"79352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjI3NTUxNzA3ODczNzg5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-04\",\n            \"systemId\": \"81352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMDIzMjc3MzQ2NzE3ODk2MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-05\",\n            \"systemId\": \"89352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.903Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzU5MTM0NzI4OTk3NjQyMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-06\",\n            \"systemId\": \"91352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3Mzc5ODA5OTkyNjAyOTcwNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-07\",\n            \"systemId\": \"99352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.95Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE3NjQ4MjAzNzI0OTkyNTY3OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-05-08\",\n            \"systemId\": \"a1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEyNTE2MzQxNzIzNTI5NDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-09\",\n            \"systemId\": \"a9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDkxNDAzMjMwMjU3NjY4ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-10\",\n            \"systemId\": \"b1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjY0MDE5NTk0NjI5NjMyNTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-11\",\n            \"systemId\": \"b9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjczMDIwNjM1NTQ5Mzg5MTU2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-12\",\n            \"systemId\": \"c1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgxNDQxMDk1MTMzNjY1OTMzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-13\",\n            \"systemId\": \"c9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTUzODA4OTMwMjcwMTc2NTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-14\",\n            \"systemId\": \"d1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Mzg0MTA0MzE5NjIwMzA3MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-15\",\n            \"systemId\": \"d9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTkxNTYyNzM0MjA4NTg4ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-16\",\n            \"systemId\": \"e1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.107Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODUxMzAxODIyNDYzOTIwMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-17\",\n            \"systemId\": \"e9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTMwMzg3MDQ1MDYzMzg5NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-18\",\n            \"systemId\": \"f1352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.167Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjgxMDQwMTcwNzY2OTQ3MDYwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-19\",\n            \"systemId\": \"f9352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODAzMzM3MTQ0Mjk4NDY3MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-20\",\n            \"systemId\": \"01362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.23Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDg3MTE3MzI2MDI4NzI0MzQzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-21\",\n            \"systemId\": \"09362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzU2MTc2OTU1NzA5MjgwMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-22\",\n            \"systemId\": \"11362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjQ5MzA0NDYwNTE0ODkxMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-23\",\n            \"systemId\": \"19362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDE1ODg2MjA0NDkzMzMyOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-24\",\n            \"systemId\": \"21362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDgxOTQ5NDIxMjM1OTE3NzU1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-25\",\n            \"systemId\": \"29362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA1NDc5MjkxMjM1NDIwNTAwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-26\",\n            \"systemId\": \"31362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTcyNDU5MDY0ODUxMTA3NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-27\",\n            \"systemId\": \"39362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjcyNTk5MzAwNzkyNDQ1NTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-28\",\n            \"systemId\": \"41362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTU5OTk4MDA1NTQ4MjE1MzkyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-05-29\",\n            \"systemId\": \"49362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.403Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjU5OTQ4NjEzODUwNDM2NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-30\",\n            \"systemId\": \"51362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NzE0MDE5NjE5NTIzMTk0NzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-05-31\",\n            \"systemId\": \"59362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgzMDQxMDg1ODg1ODEwMDc1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-01\",\n            \"systemId\": \"61362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU1NjYzOTY0NDk4MTg2MzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-02\",\n            \"systemId\": \"69362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODQzMTI1ODk2Njc0NjI4OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-03\",\n            \"systemId\": \"71362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjA4MDI1MDgzNDcyMzA3OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-04\",\n            \"systemId\": \"79362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjcxNzM3OTI4MjQ3NzEwOTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-05\",\n            \"systemId\": \"81362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MjUyMzg1NzEyMzQ2Mzg5NTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-06\",\n            \"systemId\": \"89362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.613Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NzkxNjcwNDM0MjI4ODE1ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-07\",\n            \"systemId\": \"91362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTcwOTUwMzY1MzI3Mzc0MTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-08\",\n            \"systemId\": \"99362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTc1NjE2NzU2MDA2NzkwNTgxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-09\",\n            \"systemId\": \"a1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTI4NjUzNzA5MjE2ODkzNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-10\",\n            \"systemId\": \"a9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODEyMTg4NjY0ODExODc3OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-11\",\n            \"systemId\": \"b1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjkzOTg5MDUzMzc1MzQzMTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-12\",\n            \"systemId\": \"b9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTg4NTIyNTc5NjYwNDM5OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-13\",\n            \"systemId\": \"c1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjM1NTgzNDAxOTc0ODQwODY2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-14\",\n            \"systemId\": \"c9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTA5NDU2OTQ0NjE0Mzk2MjM2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-15\",\n            \"systemId\": \"d1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTI0Njk1MDM5OTI3MTU0MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-16\",\n            \"systemId\": \"d9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTYzNzAzNzY0NjU3ODU3MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-17\",\n            \"systemId\": \"e1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk5OTU5NzE4NDU3MjQzMzgzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-18\",\n            \"systemId\": \"e9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkxMjgyMDM1NzA3OTI5MDI0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-19\",\n            \"systemId\": \"f1362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0Mzc1MDE1NDIyNTA4NTEwNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-20\",\n            \"systemId\": \"f9362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NTA5MDQ0NDEyNDQ1Njc5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-21\",\n            \"systemId\": \"01372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDUwMzUwMTg1OTUzNzM3MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-22\",\n            \"systemId\": \"09372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNDM2MjU5OTU2MDUxNjIxODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-23\",\n            \"systemId\": \"11372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTAzMzI0MTQ5NjEyNTQ4OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-24\",\n            \"systemId\": \"19372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxOTY2OTkxMTU4NDU5MDYxNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-06-25\",\n            \"systemId\": \"21372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMxOTI2NzYzNTYwNzUyNjA4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-26\",\n            \"systemId\": \"29372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU5NzQ1ODc0MjI3ODM4NjY2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-27\",\n            \"systemId\": \"31372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg0MjkxOTA2ODAyOTc2NzU1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-28\",\n            \"systemId\": \"39372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjExOTMzMTQ2MjEzNTc0NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-06-29\",\n            \"systemId\": \"41372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTc5MzMwNjQwNjcxNzg2Njc3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-06-30\",\n            \"systemId\": \"49372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ2NzQxMzEzMTQ1NTU3Mzc0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-01\",\n            \"systemId\": \"51372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzI2OTQ5ODA4OTUyMjYwNzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-02\",\n            \"systemId\": \"59372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODgzMjQ0MjY4MTYzODk4ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-03\",\n            \"systemId\": \"61372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDI0NTUwMDQxNjcxOTU2OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-04\",\n            \"systemId\": \"69372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMzNzIwOTYxMDY3MjY2NjQzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-05\",\n            \"systemId\": \"71372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDY5MjM4ODEzMDUwOTU5MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-06\",\n            \"systemId\": \"79372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTg4ODE0NzI4NDA4Njg1NDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-07\",\n            \"systemId\": \"81372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODI5MzgxOTA2MTYwNDE5MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-08\",\n            \"systemId\": \"89372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODU0NjkwNzAzMzMzODc1MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-09\",\n            \"systemId\": \"91372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzQzNTg1NDI3NzIxODg4MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-10\",\n            \"systemId\": \"99372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjI0NzEyMDExODkzMDY2OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-11\",\n            \"systemId\": \"a1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDgwNjUzNTI5Mzg2MzAxNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-12\",\n            \"systemId\": \"a9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzI4NjQ5MDQwMTI3ODk0NjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-13\",\n            \"systemId\": \"b1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkyMTMyNDgyMTg2MjY5MjM3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-14\",\n            \"systemId\": \"b9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDYyOTk5NTY4NTMxNTM5NDM5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-15\",\n            \"systemId\": \"c1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTI4Mzg5NzAzOTg0NjIxMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-16\",\n            \"systemId\": \"c9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg5Mzc4NDExNzU1MDQ4NTc3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-17\",\n            \"systemId\": \"d1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDI0NDczNTQ5MzgxOTYxMzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-18\",\n            \"systemId\": \"d9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTMxODYwNTc0NjIyODQ1OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-19\",\n            \"systemId\": \"e1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDg0ODM2MDY5MjM1ODU5OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-20\",\n            \"systemId\": \"e9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzEwMzMwNjQ1NTU5ODUyNDIyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-21\",\n            \"systemId\": \"f1372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTA0NzgyMzU5NDU1MTE0NTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-22\",\n            \"systemId\": \"f9372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.613Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjQ2MTMzNzk5NzU0ODQxODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-23\",\n            \"systemId\": \"01382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTk3NTk0MDg3OTYyOTQyMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-24\",\n            \"systemId\": \"09382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTU5NDU3NDE4NjQ2NDE4OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-25\",\n            \"systemId\": \"11382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjcwMDI2MjU2NTk1OTAxMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-26\",\n            \"systemId\": \"19382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODc5NzQ0OTQ2ODc5ODY1MDY5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-27\",\n            \"systemId\": \"21382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzczNzQ2MDQ1MzA4MzUyNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-28\",\n            \"systemId\": \"29382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Mjk3MTEzNjY0NjQ5MjQxNzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-29\",\n            \"systemId\": \"31382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjIyNzkwNzkxOTQwMDM3Njg4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-07-30\",\n            \"systemId\": \"39382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTEzMDA3NDUyNjMyMjU0ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-07-31\",\n            \"systemId\": \"41382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc0MzQ0NTAwNzQ3OTA0MzQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-01\",\n            \"systemId\": \"49382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTE0MjEwNjkzNDA1NjA1MTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-02\",\n            \"systemId\": \"51382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODIyNTEyODk4OTUxOTM3MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-03\",\n            \"systemId\": \"59382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQxMDg5MTM4MDQyNTU3Mzk4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-04\",\n            \"systemId\": \"61382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNjg1NjAxOTA4NjQ4OTk3NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-05\",\n            \"systemId\": \"69382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDg4Mzk2NDIwNTE0NDMxOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-06\",\n            \"systemId\": \"71382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzY2ODgzNDQ5NDE0NDQ0OTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-07\",\n            \"systemId\": \"79382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDg0OTgxOTcwNzMyNTcyOTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-08\",\n            \"systemId\": \"81382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI1NjIwMDcxNjUzNjgyMjkyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-09\",\n            \"systemId\": \"89382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYyNTc0ODkwNDM2MTAwMDkzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-10\",\n            \"systemId\": \"91382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTgzMzg5ODEwNzQ1OTQ1MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-11\",\n            \"systemId\": \"99382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTA2Njc3NzQ5Mjc1NDk0MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-12\",\n            \"systemId\": \"a1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDQ3OTgzNTIyNzgzNTUyMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-13\",\n            \"systemId\": \"a9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzMwMDkzMjkyMTM3NDE5ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-14\",\n            \"systemId\": \"b1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDc5MzkzNzE1NDIxNTQ2OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-15\",\n            \"systemId\": \"b9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjIzMDA1NDkwNDA1MDM3ODEyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-16\",\n            \"systemId\": \"c1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTQzOTg3NDI3NDU5MTU0MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-17\",\n            \"systemId\": \"c9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ5ODYzNTYwMjYxNTYwNjQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-18\",\n            \"systemId\": \"d1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTAwNzU4NzQ5ODQ2OTI0OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-19\",\n            \"systemId\": \"d9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM3NDU3MjE0MTU5MDAwMjE3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-20\",\n            \"systemId\": \"e1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI5MDM0ODM1Njk0NTMwNjU4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-21\",\n            \"systemId\": \"e9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODQ1MTgxNDE4NDY4MjcyNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-22\",\n            \"systemId\": \"f1382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU4MjczNzc1OTc2OTkyNDM2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-23\",\n            \"systemId\": \"f9382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA5NzM2NDM2ODgxMTQzMDA1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-24\",\n            \"systemId\": \"01392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMDk1NzcxMzE5OTg0Nzc4MzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-25\",\n            \"systemId\": \"09392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjQ2NzU4OTQ5NjAwMDQyNDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-26\",\n            \"systemId\": \"11392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAxODYwNjYwMDMyNTYyNjE3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-27\",\n            \"systemId\": \"19392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDczODkxMDg1Njg5OTQ2OTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-28\",\n            \"systemId\": \"21392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE0Njk5NDkyNTA0NTc0Mzc5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-08-29\",\n            \"systemId\": \"29392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNjU2MDI0OTkxMjgzMTI4NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2028-08-30\",\n            \"systemId\": \"31392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzIwMTc0NDE3MDAwNzAwOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-08-31\",\n            \"systemId\": \"39392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU0MjkyNzczMTU5NDI1NjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-01\",\n            \"systemId\": \"41392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.317Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgyMzA1NjA1MDU4MzAwNDk2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-02\",\n            \"systemId\": \"49392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ2MzMxNjgyNTY3ODY5MzA1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-03\",\n            \"systemId\": \"51392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODcxNjI2MDU3MDE3MDkzNzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-04\",\n            \"systemId\": \"59392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDE0MTk4NjMyNjEyOTAwNDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-05\",\n            \"systemId\": \"61392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDAyMzA4MDIzNTc5MzI2ODY4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-06\",\n            \"systemId\": \"69392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDA5MzM5MzQ4MDM3NzQ2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-07\",\n            \"systemId\": \"71392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDM2NjMxMjYzMjEwMjcwOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-08\",\n            \"systemId\": \"79392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE1NTAyMzg3Mzg4NTg4MzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-09\",\n            \"systemId\": \"81392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI4MTg3Nzk2MzQyNTU0NTIxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-10\",\n            \"systemId\": \"89392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTU2NzI3MTQ0MTQ3NTM5ODYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-11\",\n            \"systemId\": \"91392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDgwODkyNTE1MzczNzU3MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-12\",\n            \"systemId\": \"99392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzE4NjQ4ODYwMjEyNTUyODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-13\",\n            \"systemId\": \"a1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTU2ODI1MDY2NDMyOTAzODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-14\",\n            \"systemId\": \"a9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA3MTc0MTczNDE1MTEzMjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-15\",\n            \"systemId\": \"b1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ0ODMyNDE5OTY0MTExNzEyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-16\",\n            \"systemId\": \"b9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzU1Njc5NTkxMTA5NDc5NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-17\",\n            \"systemId\": \"c1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk5NDE1NDAyOTI3OTA2MjI2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-18\",\n            \"systemId\": \"c9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzE2NTgwNzUxMzYwODg5MTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-19\",\n            \"systemId\": \"d1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NTUxNDUwNTQ0ODM5Mjk3NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-20\",\n            \"systemId\": \"d9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAwNzQ4Mjc5MTAwMzUxNDIyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-21\",\n            \"systemId\": \"e1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDA1ODg5NzQyMTc2ODYyNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-22\",\n            \"systemId\": \"e9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODExMzU5MTI1NDM2ODA2NjcyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-23\",\n            \"systemId\": \"f1392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzA5MTYxNTM5OTYyMjU0NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-24\",\n            \"systemId\": \"f9392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNzY2MzMwODk0NjM3OTgzMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-25\",\n            \"systemId\": \"013a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA2ODY3MTc4MDE4MDgzNjc2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-26\",\n            \"systemId\": \"093a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDM0OTExNTkzMjAzMjExNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-27\",\n            \"systemId\": \"113a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Nzk2NjA0NzI5MjI4NzUzMTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-28\",\n            \"systemId\": \"193a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEwOTI4MDA1NzQ4NzM2MjYzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-09-29\",\n            \"systemId\": \"213a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.613Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzkzNTYyNTc4MjA1NDkzNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-09-30\",\n            \"systemId\": \"293a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEzODQ0NTg0MDY1MDUzODgyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-01\",\n            \"systemId\": \"313a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.677Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDczNTk2NjM1OTM3Nzc4MjU5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-02\",\n            \"systemId\": \"393a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjM4OTA5MzA1OTkzNzUyNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-03\",\n            \"systemId\": \"413a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0OTc5NDcyNjIzNTE3NTIzMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-04\",\n            \"systemId\": \"493a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ5NDM4OTI5MTIzNTc1MTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-05\",\n            \"systemId\": \"513a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODE5MDMwNTIwMjY5NTQ3NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-06\",\n            \"systemId\": \"593a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg4NDMyMzEwMzc2NzE5MzkzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-07\",\n            \"systemId\": \"613a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDAzNzg3NjIyMDYzNjM1MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-08\",\n            \"systemId\": \"693a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.833Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYzMjk0MjIzNTQ2NTg5MDQzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-09\",\n            \"systemId\": \"713a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.88Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzY0NTk5MjE4ODI4MDc0NDQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-10\",\n            \"systemId\": \"793a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTA2MTA2ODI5ODI0NTM0MTE3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-11\",\n            \"systemId\": \"813a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQzOTk4MzM3MjA1NjYxOTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-12\",\n            \"systemId\": \"893a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzM4MDIzOTQ2MDU5MDc0MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-13\",\n            \"systemId\": \"913a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTcyMzExMTg3NDYwNzg2ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-14\",\n            \"systemId\": \"993a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTg3MDkwOTQ1Mzk2ODQyOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-15\",\n            \"systemId\": \"a13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MzI0ODUwNjg1ODM0ODczNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-16\",\n            \"systemId\": \"a93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk5NTk4Nzg0OTMxNzU5NTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-17\",\n            \"systemId\": \"b13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Njk4NTQ5MzUyNzM0MjY3MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-18\",\n            \"systemId\": \"b93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTkyMjAyNjUxNDc3MjM1ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-19\",\n            \"systemId\": \"c13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODk3ODUxMzg2ODMwODMyNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-20\",\n            \"systemId\": \"c93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjk1ODU3MDA1ODgzODMyODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-21\",\n            \"systemId\": \"d13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTIxMjczNTM4Njg5MjI2NDkwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-22\",\n            \"systemId\": \"d93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.193Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODk1OTk5NzA3NDIxMjIyMjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-23\",\n            \"systemId\": \"e13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTY1NjgyMzUxMzgzNTU3ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-24\",\n            \"systemId\": \"e93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzM1ODgzMzQzMTcyNDE3MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-25\",\n            \"systemId\": \"f13a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODY1NDQwNzEzODcyOTY3MTY3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-26\",\n            \"systemId\": \"f93a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzMwMzE3MDAzODcyMjI2OTY4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-27\",\n            \"systemId\": \"013b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.35Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0MzI3NDE2MDQxODYwMzM3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-28\",\n            \"systemId\": \"093b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY5MzYyMzI5MTUzNzg2NjUwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-29\",\n            \"systemId\": \"113b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY4MjkxMjU4NzUwMzg1NjM1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-10-30\",\n            \"systemId\": \"193b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzAyNTQ0OTI0MTczNTExODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-10-31\",\n            \"systemId\": \"213b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.443Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAwNzU2MzMyMzkwNjI1Njg2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-01\",\n            \"systemId\": \"293b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE2MTYyNTkwNjMwMDk0NjM5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-02\",\n            \"systemId\": \"313b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.49Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg4MzY5OTAwMzg0MDQ0NDI0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-03\",\n            \"systemId\": \"393b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTM5NjQzNjE0MzcxMDYyNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-04\",\n            \"systemId\": \"413b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODk5OTAzMTY5MzE1Mzk1NzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-05\",\n            \"systemId\": \"493b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.553Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcxMDgzODU4MzYyMDkyMzg4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-06\",\n            \"systemId\": \"513b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgzMTA5NjY0OTEzMDg1OTk3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-07\",\n            \"systemId\": \"593b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MzI0OTcwNzE1MjE0MzA2MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-08\",\n            \"systemId\": \"613b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjA3ODA4NjIyNDYwNTAzMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-09\",\n            \"systemId\": \"693b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTI0Mzk2OTY4MDMyNzMzODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-10\",\n            \"systemId\": \"713b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA1MDE2MDU2MDk0MzU3NjE3MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-11\",\n            \"systemId\": \"793b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk5ODU4ODU3MzYzMDMwODkxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-12\",\n            \"systemId\": \"813b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.74Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTk2OTk1NTI0ODAzNjU3MTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-13\",\n            \"systemId\": \"893b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.74Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODc4MTM0NjA3MjY0NjczMDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-14\",\n            \"systemId\": \"913b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzY1NzQwOTQ0NDU0ODM0NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-15\",\n            \"systemId\": \"993b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.787Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzEwNDg3MjkzOTU4OTI3OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-16\",\n            \"systemId\": \"a13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Mzg0OTMzMDkxMjkyMDI5NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-17\",\n            \"systemId\": \"a93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTQzNjM1NTc1MTMyMjYxOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-18\",\n            \"systemId\": \"b13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA0MzE3MTA2NTgyNTU4ODU5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-19\",\n            \"systemId\": \"b93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzcwOTU3MjQwMjI3NTIwODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-20\",\n            \"systemId\": \"c13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NDcyNDM4NTIwOTM3MzUxOTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-21\",\n            \"systemId\": \"c93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.99Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTc1MzM3Njk4Mzg5MTk5NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-22\",\n            \"systemId\": \"d13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDI2Mjk1NjAyOTAzMDU4NTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-23\",\n            \"systemId\": \"d93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.053Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTkzNjkxNTMxMjA5NzI5MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-24\",\n            \"systemId\": \"e13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.053Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU3NzUwODg3NTM4MjQ2NjkwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-25\",\n            \"systemId\": \"e93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDc3NDU4NjI1Nzk1Mjg3MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-26\",\n            \"systemId\": \"f13b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDY3NjU2ODI1OTkwNzE0NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-27\",\n            \"systemId\": \"f93b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjM5MzE3NzYzMjE3NTYxMTQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2028-11-28\",\n            \"systemId\": \"013c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzIyOTMxMDc4OTk4MjY0MzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-29\",\n            \"systemId\": \"093c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjA5MjgwMTQ2NTYxMjYwNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-11-30\",\n            \"systemId\": \"113c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTEwNzkzMTM0MTIzMTU4ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-01\",\n            \"systemId\": \"193c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODQ2NDE3MDQ2MDIxODMwOTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-02\",\n            \"systemId\": \"213c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDQ2ODc0NDk1MTU2ODYyMDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-03\",\n            \"systemId\": \"293c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.307Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjkyOTEzMzAyNjEzNjk0NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-04\",\n            \"systemId\": \"313c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.307Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjU2MTQ0MzY2NzA1ODQ4MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-05\",\n            \"systemId\": \"393c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU3NjYwMjI1OTc5OTcxMTU4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-06\",\n            \"systemId\": \"413c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTk1OTA1ODQ2NDcyNTAxNjMyMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-07\",\n            \"systemId\": \"493c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzExNzAxNDQ4OTY5MjIxMTkzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-08\",\n            \"systemId\": \"513c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.397Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTgyODg1MzcyMDI2MzY4NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-09\",\n            \"systemId\": \"818a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjMxNTgwMzAxOTgwNjM4NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-10\",\n            \"systemId\": \"898a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.46Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTI0NzM3MTg5NDgyMDEyMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-11\",\n            \"systemId\": \"918a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA1NTY1MDk5ODg2Nzg4MTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-12\",\n            \"systemId\": \"998a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.54Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzUxOTEyMTY1NTY3NTc1MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-13\",\n            \"systemId\": \"a18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Njk4NTAxNzMxOTY4NTUyMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-14\",\n            \"systemId\": \"a98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjQ3NDI1ODExNjI1NTExOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-15\",\n            \"systemId\": \"b18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQxNDE4Nzc5NDA4MDYyOTE2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-16\",\n            \"systemId\": \"b98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTE0NjExMjM0MzgzOTAxNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-17\",\n            \"systemId\": \"c18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM3MjQzMjQyMDA0MzcxNDc4MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-18\",\n            \"systemId\": \"c98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzA2Njc3MDkyOTc0NzUzOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-19\",\n            \"systemId\": \"d18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjAxNTU3NTkxOTUyNTU4NjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-20\",\n            \"systemId\": \"d98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ5ODk3NzM1NTYxMDMyMDM0MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-21\",\n            \"systemId\": \"e18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjE5OTg1MzQ4NDE5MjYwNzYzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-22\",\n            \"systemId\": \"e98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDM4NzA4NTY3NDkwNzAyMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-23\",\n            \"systemId\": \"f18a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI5NDEwMjc5MDA2ODMwNzY1MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-24\",\n            \"systemId\": \"f98a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzQ3MDk1NzgxNTk1ODAxMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-25\",\n            \"systemId\": \"018b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU2OTEwNTQ3ODc1MDEyNDAwMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-26\",\n            \"systemId\": \"098b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDU1Mzg4MzIyNjA1NzY1ODMzMTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-27\",\n            \"systemId\": \"118b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.913Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTkwMDgzNTg3MjEzOTk0MDY2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-28\",\n            \"systemId\": \"198b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTA5NTA3NjQzMTYxNDQ0MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-29\",\n            \"systemId\": \"218b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODg3MzA2NjEzOTQzNDkxMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2028-12-30\",\n            \"systemId\": \"298b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU2NDIzOTQwNzMzNjkzODA2MTswMDsn\\\"\",\n            \"planningDate\": \"2028-12-31\",\n            \"systemId\": \"318b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDA5NDk1MDE5OTAxODk1NjIzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-01\",\n            \"systemId\": \"398b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkzOTg1MDk2NzA1ODI3MzYwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-02\",\n            \"systemId\": \"418b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM0MzMyOTcxNTk1NDQwMTA1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-03\",\n            \"systemId\": \"498b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzE2MjA2ODczMTgzNTM4NDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-04\",\n            \"systemId\": \"518b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ5NzU4MDEzMzY4NzgzMDY3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-05\",\n            \"systemId\": \"598b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA2MTU2MDI5NzgxNTg2MTgxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-06\",\n            \"systemId\": \"618b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDIxODY0Mzk3MjE0MzYzMDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-07\",\n            \"systemId\": \"698b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkyNTQ4NTkxNjYwMzMwMTAzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-08\",\n            \"systemId\": \"718b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0MjE2NTEwNDY2Mjg0MTkyMDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-01-09\",\n            \"systemId\": \"798b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM5Njk2NTY0MDU2MTk1MDMzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-10\",\n            \"systemId\": \"818b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDE5NTA3NTMxNjcwMzQ2MjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-11\",\n            \"systemId\": \"898b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.26Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkzNzQ1MzE5MjU2MjUxNTgwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-12\",\n            \"systemId\": \"918b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTI4ODM0Mzk0ODA5MjU1MDQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-13\",\n            \"systemId\": \"998b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzQ4NzUyNjc2NTk1NjY1MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-14\",\n            \"systemId\": \"a18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjkwMDU4NDUwMTAzNzIzMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-15\",\n            \"systemId\": \"a98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODM4MjYxNzgwODM2NzY1NzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-16\",\n            \"systemId\": \"b18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4OTQ0MzM0ODA3NzcwMDQzMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-17\",\n            \"systemId\": \"b98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.387Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzU3NDUwODQxNzIyNTUyNjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-18\",\n            \"systemId\": \"c18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTQ1NDA0MzI3MjA0NjQyMDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-19\",\n            \"systemId\": \"c98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzAzMDU5MzA2NzM1Njg2MjYxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-20\",\n            \"systemId\": \"d18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzA2NTg2MTAyMTUzODM5ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-21\",\n            \"systemId\": \"d98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NDgxNjQxMDEyNzM2MTUxMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-22\",\n            \"systemId\": \"e18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.46Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMDIyOTQ2Nzg2MjQ0MjA5MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-23\",\n            \"systemId\": \"e98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.46Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMzOTkwMzMyMTA5NjQxNzA2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-24\",\n            \"systemId\": \"f18b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDc5NTExMTUwMTExOTc2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-25\",\n            \"systemId\": \"f98b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.48Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTcyODYyMTEzMjA1OTE5MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-26\",\n            \"systemId\": \"018c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMyNTM1NTQ4MzUyMDQ1Mjg1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-27\",\n            \"systemId\": \"098c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTQ3NTk5OTEyMDU4ODI3OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-28\",\n            \"systemId\": \"118c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAyNzYwMTMyMTc1MDUyNTk5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-01-29\",\n            \"systemId\": \"198c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDI2MDA0NzU2OTUzMDg2NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-30\",\n            \"systemId\": \"218c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NjAzNjcxNjQxMDc5OTU4MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-01-31\",\n            \"systemId\": \"298c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Njk1NDQwNjA2MjA5OTc2MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-01\",\n            \"systemId\": \"318c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3MzkxODMzOTI3NTI4MjgxMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-02-02\",\n            \"systemId\": \"398c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODE4NzI2MzMxNTA2MTQ3ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-03\",\n            \"systemId\": \"418c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzY0NTg5NjE0MDY0MzU5OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-04\",\n            \"systemId\": \"498c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTI1NzMxNzU4Mzc5NjY2MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-05\",\n            \"systemId\": \"518c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NzI1ODY4NTMwMjkyNDg4OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-06\",\n            \"systemId\": \"598c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTA2NTk4MzY3MjUyMDYzNDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-07\",\n            \"systemId\": \"618c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA3MTE5ODUwNjI3MDI3MzYzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-08\",\n            \"systemId\": \"698c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTQ2MDQ3Njg2OTkyMjY4MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-09\",\n            \"systemId\": \"718c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTIxNjQyOTE1MTM1NDE2MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-10\",\n            \"systemId\": \"798c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY5Njk0MzMzODMxMzIwNzUxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-11\",\n            \"systemId\": \"818c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.833Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDUzNzgyMDQ3MDMyNzM1OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-12\",\n            \"systemId\": \"898c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ3NzMwODA4MjQ1MDU4NDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-13\",\n            \"systemId\": \"918c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA1ODU2OTg3MTk2MjIxMTc4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-14\",\n            \"systemId\": \"998c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.88Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI3ODc5MTk5Nzg1NTM0NjU5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-15\",\n            \"systemId\": \"a18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODkzMzY4MTc0MDQ3Mzk2MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-16\",\n            \"systemId\": \"a98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAzMzU5MjI1MDU4NzgwMzkwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-17\",\n            \"systemId\": \"b18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODE5OTkyNjcyMDA2MzM2MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-18\",\n            \"systemId\": \"b98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODY3NzE1ODEzNjgzOTA3MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-19\",\n            \"systemId\": \"c18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMDQzMzExMDQxODI3MDU1MDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-20\",\n            \"systemId\": \"c98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzM5MTIwODIxNzk1NTQyMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-21\",\n            \"systemId\": \"d18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA2MzM5MjkwNDYzNDU0NDM1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-22\",\n            \"systemId\": \"d98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NjE2OTczNzcyNjk5OTg0NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-23\",\n            \"systemId\": \"e18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTQ3MTY1NDQwMDE4NDM2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-24\",\n            \"systemId\": \"e98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDY4NjA0NDA1NjY3MzI3MTE5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-25\",\n            \"systemId\": \"f18c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg2MTI2NzE2NDk2Mzg3NzY4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-02-26\",\n            \"systemId\": \"f98c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzIyMjI1NjY2NjU2OTU4MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-27\",\n            \"systemId\": \"018d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTM2ODk1NjU4MDQyMDczNzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-02-28\",\n            \"systemId\": \"098d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDA1NzMzOTE4MDA5OTEwMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-01\",\n            \"systemId\": \"118d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTIyMjk5NTE3NTAxMjI5NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-02\",\n            \"systemId\": \"198d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.227Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODY1MDU1MjQzMTc4MTI4NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-03\",\n            \"systemId\": \"218d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.257Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE5OTE4MzYwODc2Nzk0MTQzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-04\",\n            \"systemId\": \"298d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.27Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMTU1MjY4OTA3MDkwMjc0MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-05\",\n            \"systemId\": \"318d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.27Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTk1MjM4MzQyNzQ5MDAxMjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-06\",\n            \"systemId\": \"398d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTI2NzE0NzI1ODIyOTczODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-07\",\n            \"systemId\": \"418d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MjkyMTU1NDM5MjY2MDc5NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-08\",\n            \"systemId\": \"498d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ4MTA5MzA2OTA1NzYyMTczMTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-09\",\n            \"systemId\": \"518d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDk3ODU2OTI3ODA0ODczMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-10\",\n            \"systemId\": \"598d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI5NTI1NzAzNjMwMTE2MDQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-11\",\n            \"systemId\": \"618d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzgyNzIxNDIyNTc2MjcxMjU2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-12\",\n            \"systemId\": \"698d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.333Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI2MTI5NjM1NTcxOTIxMTEzODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-03-13\",\n            \"systemId\": \"718d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODMyNzA4MTEyNTMzMTA3MTE1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-14\",\n            \"systemId\": \"798d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk1NTkyODUxMzkxOTcwMDA0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-15\",\n            \"systemId\": \"818d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODk4ODkyMDM5NzIxMzAyMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-16\",\n            \"systemId\": \"898d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.397Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Mzk3MjgxMDc2NjYwMDIwMjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-17\",\n            \"systemId\": \"918d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIyNjM2MjE2NzcwMzkzNzQzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-18\",\n            \"systemId\": \"998d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.443Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM3MjcyNzg4MDI0MjM1Mjg5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-19\",\n            \"systemId\": \"a18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.443Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzU4NDg1MTAxNTU5OTAwMzIyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-20\",\n            \"systemId\": \"a98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTk1OTUyOTU2OTE1ODQzNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-21\",\n            \"systemId\": \"b18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4ODY3Mzc3Nzc3MzY0MDg1MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-03-22\",\n            \"systemId\": \"b98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc3NzI4ODc3NjY1NjA5NTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-23\",\n            \"systemId\": \"c18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MjYxODUwMjcyOTU3OTAzNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-24\",\n            \"systemId\": \"c98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzMxNjAxNzg0OTcyODI5OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-25\",\n            \"systemId\": \"d18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDgzNTYxMTczMDMxMDE5MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-26\",\n            \"systemId\": \"d98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.583Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE3NjI2Mzc1NzQ3NjIyNDk4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-27\",\n            \"systemId\": \"e18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMDM5MTg1NTkwMTM0ODA0OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-28\",\n            \"systemId\": \"e98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzUyMTA2MDgxNDExMzAzMjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-29\",\n            \"systemId\": \"f18d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MjcxMTUzNDI0NzMzNDgzODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-03-30\",\n            \"systemId\": \"f98d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.693Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMwNTQyMDg1OTE0MDQ4NzI3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-03-31\",\n            \"systemId\": \"018e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2MzExOTY0ODI5NjI2OTYxNjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-04-01\",\n            \"systemId\": \"098e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzQyMjA1ODQ0OTY0NjQzNzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-02\",\n            \"systemId\": \"118e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjExNTI1MzAwMjY3NjI0NDgyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-03\",\n            \"systemId\": \"198e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.773Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTcwNjc4Mzg3MDkxNzk2Mjk5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-04\",\n            \"systemId\": \"218e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.773Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY2NTcwNDA5NjAxNTYzNjY4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-05\",\n            \"systemId\": \"298e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.803Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMwMzA1MTE2NzYzNjcyMjA2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-06\",\n            \"systemId\": \"318e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDY2Njc5ODQwOTA5NDYyNjE1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-07\",\n            \"systemId\": \"398e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODUyMjAxNjMxNTE4Nzc5MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-08\",\n            \"systemId\": \"418e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA4NTU5MDg0MjE5OTcwOTM3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-09\",\n            \"systemId\": \"498e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk5MzI2MDczNzcyOTc0MTQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-10\",\n            \"systemId\": \"518e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjE4OTgwNTU0NjYxNzk0ODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-11\",\n            \"systemId\": \"598e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.98Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTI5NTg5OTExMzcyNjkyNDIxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-12\",\n            \"systemId\": \"618e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.01Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk4NjIxNTkzNDE2NTI1NDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-13\",\n            \"systemId\": \"698e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NzQ2NjAyOTE3NzA5NDc5NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-14\",\n            \"systemId\": \"718e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM0MDU0ODY2NTAyMDk4NTQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-15\",\n            \"systemId\": \"798e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.123Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTQxMjE0NzkwNzQ2MDIxODUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-16\",\n            \"systemId\": \"818e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.14Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQyODk4Nzc2OTU5ODk4MjEwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-17\",\n            \"systemId\": \"898e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.153Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjI3MDY3MzUyMzM0NjgzNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-18\",\n            \"systemId\": \"918e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg5MTIyMzE2NzM0MjUyNTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-19\",\n            \"systemId\": \"998e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzk4NTc4NTU4ODEwODg4MzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-20\",\n            \"systemId\": \"a18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzI5NDMwODY2NjI3Njg3NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-21\",\n            \"systemId\": \"a98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2MDQyODAwNDczNDk2ODIwODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-04-22\",\n            \"systemId\": \"b18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzgzMzU3MzE1MDI5NzI3NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-23\",\n            \"systemId\": \"b98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzMxNjI1NjM2MTAzMDY4MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-24\",\n            \"systemId\": \"c18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.28Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA4MDg2NzMxNDYwNTI3ODM2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-25\",\n            \"systemId\": \"c98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM1OTMwODczMzgyNjM0MDM3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-26\",\n            \"systemId\": \"d18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.343Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyMTg5OTQzMTk4NzY1MDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-27\",\n            \"systemId\": \"d98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTYxMzY0MDAyOTEwMDczMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-28\",\n            \"systemId\": \"e18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.39Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTQ4MTY2NzQ1MzYwMzU4NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-04-29\",\n            \"systemId\": \"e98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.42Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgxNTkwODMxMDkwNzUxMDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-04-30\",\n            \"systemId\": \"f18e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.45Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODE5OTc1MjIxNDI0ODU5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-01\",\n            \"systemId\": \"f98e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAyNzE4MjE0Njc4ODAyNzMyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-02\",\n            \"systemId\": \"018f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjQ0OTU0NjczMjE4MjE3NjY5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-03\",\n            \"systemId\": \"098f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4Mzk2Mzg2NDIwMDMzOTA0NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-04\",\n            \"systemId\": \"118f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTU5Mjk2MDYxMzUxNTA4NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-05\",\n            \"systemId\": \"198f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ0Njk2NjIyNzg2NjIzMzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-06\",\n            \"systemId\": \"218f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTgxNDQ1NDUzMTU4Mzc0MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-07\",\n            \"systemId\": \"298f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM2MTc3MjQwMzAyODUzOTIzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-08\",\n            \"systemId\": \"318f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDk0NzY5MDcyMDQ5OTUxNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-09\",\n            \"systemId\": \"398f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDc1MzA5MTQ5Nzg5ODM0ODY5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-10\",\n            \"systemId\": \"418f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODc0MTg2MTEzNTQ2MTgzMTY2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-11\",\n            \"systemId\": \"498f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzMTM1MDcwNjk5MTAzNjMxMTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-05-12\",\n            \"systemId\": \"518f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE2MjMzMDQ3OTcwMDU3MDQxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-13\",\n            \"systemId\": \"598f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjM0MTE3NTc2MTExNjc0NDkwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-14\",\n            \"systemId\": \"618f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODMzNTA0NDE2NzE1OTc0NzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-15\",\n            \"systemId\": \"698f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYxNTQzNDgyNDk1NDk0MjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-16\",\n            \"systemId\": \"718f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU0ODU5NTg0NDYxMDgyNTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-17\",\n            \"systemId\": \"798f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDcyNzEyNDMyMTgzMjc0NTkwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-18\",\n            \"systemId\": \"818f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzUzOTc4MDIxNDEyOTAwNTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-19\",\n            \"systemId\": \"898f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODczMDEzOTk0MjgwNDE0NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-20\",\n            \"systemId\": \"918f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDczNDUxNDAwMzk3MzQyODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-21\",\n            \"systemId\": \"998f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.75Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDU1NjcwNTUyMzQxNTgyNDM1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-22\",\n            \"systemId\": \"a18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI0ODUzMzU2MTgzMzEzMjkyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-23\",\n            \"systemId\": \"a98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY5NjkzMDQ1MDQxNzAyNDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-24\",\n            \"systemId\": \"b18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.797Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTExNzQ1NjI4NTMyNzY4MzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-25\",\n            \"systemId\": \"b98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.833Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDE0NzkwMTgxMDA2NjUwODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-26\",\n            \"systemId\": \"c18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.85Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU3NTQ4MTQxNDc0NjYxOTY5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-27\",\n            \"systemId\": \"c98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDgzNjEzMDA1Mjg1NzczNTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-28\",\n            \"systemId\": \"d18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.913Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDUzNjY4MjU1NzAxMDMwMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-29\",\n            \"systemId\": \"d98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.943Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDg3NjAwNzgzMTI3MjcxOTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-05-30\",\n            \"systemId\": \"e18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NjM0MzIwNDIxMDY1MTc3MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-05-31\",\n            \"systemId\": \"e98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDE5NTA1MjY0MDg2NDQyMzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-01\",\n            \"systemId\": \"f18f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.99Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTMxNjg5NTY5NTk1MTkyMDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-02\",\n            \"systemId\": \"f98f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzExNzMyNDgxNzExMTM2NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-03\",\n            \"systemId\": \"019026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.053Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk0NDE1MzEyMjk2NDQ4MDU4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-04\",\n            \"systemId\": \"099026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODQ2ODg0ODIxMDM5MDg3MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-05\",\n            \"systemId\": \"119026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDMyODIzMTIwMDcwOTgyMDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-06\",\n            \"systemId\": \"199026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjQ1ODkyMTEwNjAzNzI1NjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-07\",\n            \"systemId\": \"219026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTU4ODM4MDg1MTIzMzg2Mjg3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-08\",\n            \"systemId\": \"299026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ4NDUzNjI0MDE0ODU5MTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-09\",\n            \"systemId\": \"319026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.227Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDk1OTY4OTI3NTUyMDQyNjA5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-10\",\n            \"systemId\": \"399026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.257Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU1NjQ5OTAzMTgwNzE1MDY2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-11\",\n            \"systemId\": \"419026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ1OTQ4NDkzNjA5MTM2NjI4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-12\",\n            \"systemId\": \"499026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTcwNzYwNjI4NjAwOTY3MjQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-13\",\n            \"systemId\": \"519026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTgxOTY5MzM5OTIwNTA1MjA2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-14\",\n            \"systemId\": \"599026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE2MjA0NTQ4MzM0NzIzNzQzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-15\",\n            \"systemId\": \"619026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTkxMjQ5MDgxMDYxMDgxMTkyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-16\",\n            \"systemId\": \"699026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQxNDcwMzUxNzA5NzM4MTc3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-17\",\n            \"systemId\": \"719026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUzMTc2MjI1OTk0Njg4NDkxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-18\",\n            \"systemId\": \"799026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDQ1MTM3MDU4MzczMjMwNzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-19\",\n            \"systemId\": \"819026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.463Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY5ODY1NTE2NTM1Mjc5MTE3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-20\",\n            \"systemId\": \"899026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.493Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NjkyODI3NTM2Mjg3MzM4NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-21\",\n            \"systemId\": \"919026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA0ODUyMjAyMjA3NzkxODA3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-22\",\n            \"systemId\": \"999026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkxMjY3ODMyNzk5ODU5Njg4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-23\",\n            \"systemId\": \"a19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzIwMzI0MDA2OTE5Njc1MTU0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-24\",\n            \"systemId\": \"a99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzg1NTI3MTE2ODc4NDQ4NjAzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-25\",\n            \"systemId\": \"b19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzczOTg1MTg0NjkxMzcwNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-26\",\n            \"systemId\": \"b99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzc2NjA5MDQ4MjQ3NzYyMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-27\",\n            \"systemId\": \"c19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3OTI4MTI4MDY1NDU1MzMzNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-06-28\",\n            \"systemId\": \"c99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ2NTUyMjIwMzg4MzQ5NzI3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-06-29\",\n            \"systemId\": \"d19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjA0MDc2MzM2MDc5ODA0NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-06-30\",\n            \"systemId\": \"d99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTMyOTk0ODcwNTY1MzUyNDUwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-01\",\n            \"systemId\": \"e19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.73Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUxMjI5Njg0NzQ3MTg5OTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-02\",\n            \"systemId\": \"e99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.76Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTg5NDQxNzg3Nzc5MzkwOTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-03\",\n            \"systemId\": \"f19026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzM4OTg1NTE0MzM5NjAxNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-04\",\n            \"systemId\": \"f99026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTU1OTE0NTMzNjc3NzI1OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-05\",\n            \"systemId\": \"019126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM1Njk3NjEyNTU2NzQ0MzA0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-06\",\n            \"systemId\": \"099126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.87Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzQzODUxNjgzNzU0MjMyODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-07\",\n            \"systemId\": \"119126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.9Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM4NDg0MjUwMjU0MDk4MzIyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-08\",\n            \"systemId\": \"199126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTQ5NTc3MTIzMDg5OTAzOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-09\",\n            \"systemId\": \"219126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAzOTE2MzkyMTg3OTExMzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-10\",\n            \"systemId\": \"299126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA1MTM2MjM1NzcyMDk0Mjg1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-11\",\n            \"systemId\": \"319126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MzM0MzY1NTU3MzUyODk5MTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-12\",\n            \"systemId\": \"399126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjk2OTgzMTI0NjU5MjI2MDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-13\",\n            \"systemId\": \"419126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDUyMDA1Mzg3NDkxNDQ4MjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-14\",\n            \"systemId\": \"499126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjA4NDk4OTcyODYxMjk2OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-15\",\n            \"systemId\": \"519126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU1OTI2NjY0ODcxMTc5ODk5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-16\",\n            \"systemId\": \"599126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODc5OTM4Mjk4Nzc2OTk2NTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-17\",\n            \"systemId\": \"619126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.087Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTY1NTcwNzgwMTIwMjI3MzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-18\",\n            \"systemId\": \"699126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk3NDU4MTM5MjEyMDA0MTM1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-19\",\n            \"systemId\": \"719126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.12Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM5Mzc1NzIwNzM3OTA0ODgwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-20\",\n            \"systemId\": \"799126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg0MjE3NTY2ODc0ODUxMTQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-21\",\n            \"systemId\": \"819126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.167Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk3NzAyMDk2NTA0NTA2NzM4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-22\",\n            \"systemId\": \"899126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.183Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTUxNjUzNzk3MTkzNDcxMDM1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-23\",\n            \"systemId\": \"919126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzIwNTM0NTg3MTExNjYyNDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-24\",\n            \"systemId\": \"999126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.247Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzQxNjcxMzI3MDg0ODkxOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-25\",\n            \"systemId\": \"a19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzI5MjgyMzY0MzQ0MzYwMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-26\",\n            \"systemId\": \"a99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDUwODU0MzUxOTkxOTk4NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-27\",\n            \"systemId\": \"b19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDAwNzcwODA1NDIxNDM0MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-28\",\n            \"systemId\": \"b99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ3OTE0ODczOTMzODI0NTE0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-29\",\n            \"systemId\": \"c19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzgyMTkxMzE2OTUyOTI5NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-07-30\",\n            \"systemId\": \"c99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzAyODgxMDA0NjY0MTQ2MzA5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-07-31\",\n            \"systemId\": \"d19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.433Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU2ODYzNDMyMDU4MDAyMjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-01\",\n            \"systemId\": \"d99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.463Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODUwOTg0MTYxMTk3NjkwNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-02\",\n            \"systemId\": \"e19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM1MzY1MjM3NjIyNzE0NjI0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-03\",\n            \"systemId\": \"e99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.497Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDU4NzUyMTA4NjIyNzU4NjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-04\",\n            \"systemId\": \"f19126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.527Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDc5MTA3ODUyNzAyMTk1MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-05\",\n            \"systemId\": \"f99126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDI3MTY5NDgyMzIwNjk0MzAwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-06\",\n            \"systemId\": \"019226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1Nzg0MDgzNTExODM3MDU0MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-07\",\n            \"systemId\": \"099226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM1MjcyNDk4NzAwNDUzNzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-08\",\n            \"systemId\": \"119226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.573Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTczNTcxNDg5MDI3NDk0NDU1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-09\",\n            \"systemId\": \"199226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ1MDM5Njc0Nzk1NzMwMzY4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-10\",\n            \"systemId\": \"219226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.637Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE5NTkxMDE5OTg2MTI2MzE0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-11\",\n            \"systemId\": \"299226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTcwOTc5MzQ4MzE3MjA0NjU5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-12\",\n            \"systemId\": \"319226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcwOTI5MTQyNzgyMDQyNDI4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-13\",\n            \"systemId\": \"399226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjA0ODcwMTM2NjkyNjgwNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-14\",\n            \"systemId\": \"419226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTcwNzUzODM1MTcyMjEzNjQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-15\",\n            \"systemId\": \"499226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.747Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDU4MTU4NTMzNDE4Mzc2MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-16\",\n            \"systemId\": \"519226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0MDM0Nzc5MzUzMjI2NjQxNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-08-17\",\n            \"systemId\": \"599226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzYxNzYyNTY2NTI2MDM2MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-18\",\n            \"systemId\": \"619226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE3MDM1NTgxNTE5MTQ2ODAzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-19\",\n            \"systemId\": \"699226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjIxOTgyNjE1NzUwOTM1MDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-20\",\n            \"systemId\": \"719226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTMyNTM2ODgwMjUwNTUwMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-21\",\n            \"systemId\": \"799226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzIzMzY4MDk1MjQxNDMxNjc4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-22\",\n            \"systemId\": \"819226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTY1OTU2NDM1MDY3NTU4NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-23\",\n            \"systemId\": \"899226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk4NjAxNDg5MjM3NTk0NjczMTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-24\",\n            \"systemId\": \"919226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODM0NTM3MTMzNjMyNzg2ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-25\",\n            \"systemId\": \"999226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODA4OTE1MzkxMDE3MDI2NTQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-08-26\",\n            \"systemId\": \"a19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzc0MjE5Mzg5MjYwNjU1MzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-27\",\n            \"systemId\": \"a99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.887Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDAxMzU1MDA4NzI4ODQwMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-28\",\n            \"systemId\": \"b19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.933Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDE0NjYxNDUwNzk3MzgyMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-29\",\n            \"systemId\": \"b99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzIzNTkxNjg4NDc1ODE5NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-30\",\n            \"systemId\": \"c19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.997Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDA3MzIyMTYwNTA5MDA0MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-08-31\",\n            \"systemId\": \"c99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIwMjM3MjQ4MzU0OTA0MjAyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-01\",\n            \"systemId\": \"d19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTExMDg0MTY3NzU5MDExNTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-02\",\n            \"systemId\": \"d99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.09Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTk2OTM0MTgxMjE5NzI4NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-03\",\n            \"systemId\": \"e19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2NzgzODcxMzU3NTA3NDU2NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-09-04\",\n            \"systemId\": \"e99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzA5MzAyNTA0MzY5MTcxMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-05\",\n            \"systemId\": \"f19226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.137Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzMxODc4ODU3MDIzNDUxODgwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-06\",\n            \"systemId\": \"f99226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.17Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkyMzY4MzU0MDM3MjE1MTcyOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-09-07\",\n            \"systemId\": \"019326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.2Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTYxODU3MjI5NTQ3NDI2NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-08\",\n            \"systemId\": \"099326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.23Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzcxMzk0Mjc1NTgwNjIyNTQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-09\",\n            \"systemId\": \"119326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.263Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MTk1OTk5OTc0ODAwMDc0MjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-10\",\n            \"systemId\": \"199326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk4NDY5ODE5NTQ4MTU1OTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-11\",\n            \"systemId\": \"219326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMzNDYxNDY0ODkxMDk5NDcxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-12\",\n            \"systemId\": \"299326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjQzMTkwMDIyNjkxMTYzMjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-13\",\n            \"systemId\": \"319326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.31Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA2Njk2NDI1MDIwOTYxMzkzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-14\",\n            \"systemId\": \"399326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.34Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTE0NzI0NTE4NDMwNDcwMzQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-15\",\n            \"systemId\": \"419326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.357Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MjU4MDkzMjQ3OTcxMTUzMzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-16\",\n            \"systemId\": \"499326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.37Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODAzMTU5MDEzNTcxNDQxNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-17\",\n            \"systemId\": \"519326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.42Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjEzODc1MzQwNzIxMTIyMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-18\",\n            \"systemId\": \"599326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjQ5ODIxNzk5ODAyNTg2ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-19\",\n            \"systemId\": \"619326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzgyMzU3MTYxNzczMjMzODMyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-20\",\n            \"systemId\": \"699326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTExMTYxNjMyODkxNjcxMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-21\",\n            \"systemId\": \"719326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDE4OTUzMjY5OTk2NjM0OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-22\",\n            \"systemId\": \"799326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzgwNDY2NjMzMTAyNTMyMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-23\",\n            \"systemId\": \"819326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjE0MjczMjI5MjI5OTMyOTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-24\",\n            \"systemId\": \"899326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.483Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE0MTE3MjEzMDg2OTA3NTI2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-25\",\n            \"systemId\": \"919326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAyNjMwODQ3MzMxNTkyMTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-26\",\n            \"systemId\": \"999326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA0MjczNjg0NDU1NTcyOTA0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-27\",\n            \"systemId\": \"a19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODI5MDIxNTcyNTc4OTI4MDgyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-28\",\n            \"systemId\": \"a99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTYxNTk3MzI4NDAxODE0OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-09-29\",\n            \"systemId\": \"b19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzM4MTM4MDg5NTU0MDk1ODYwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-09-30\",\n            \"systemId\": \"b99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODEwMTc5MTkwNjQxOTc3MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-01\",\n            \"systemId\": \"c19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg2NzgzODA0NTQzMzU4MjMwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-02\",\n            \"systemId\": \"c99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU4MDAxMDYxMzQzMTI0NTkxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-03\",\n            \"systemId\": \"d19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTYwMTQxMzMwODAzMDA2OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-04\",\n            \"systemId\": \"d99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjg3ODk0MzU4NzEwODMyNTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-05\",\n            \"systemId\": \"e19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwNjk4MDg2NjIzNzM1MTM1NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-10-06\",\n            \"systemId\": \"e99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzU5NTE5OTQ1Mjc4OTk5MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-07\",\n            \"systemId\": \"f19326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.833Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjc0NzU1OTQ1ODQwNDczMjUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-08\",\n            \"systemId\": \"f99326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDYzNzc3NDY0MjU3NjEyMTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-09\",\n            \"systemId\": \"019426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE0NzQ1NjAyNzU0MzA1NzkyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-10\",\n            \"systemId\": \"099426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3NDM1MjkwMTEzNTU3MjMxMzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-10-11\",\n            \"systemId\": \"119426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjQ2MzI5ODMwNjgyMTcyMTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-12\",\n            \"systemId\": \"199426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODAwNzM4NTk2NzI4NTY3NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-13\",\n            \"systemId\": \"219426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODI0MzQzNzMxNDExOTM1ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-14\",\n            \"systemId\": \"299426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTAyOTg0NDM0OTU4NjQwNjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-15\",\n            \"systemId\": \"319426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODMwODgzNDM1MjcyOTg0MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-16\",\n            \"systemId\": \"399426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTUzMDE0MjQwNzUzNzM5MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-17\",\n            \"systemId\": \"419426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.083Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODQ3NjU5ODQ5MDMxMjkxMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-18\",\n            \"systemId\": \"499426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzU5OTU4MzM5NTkyMDQzMjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-19\",\n            \"systemId\": \"519426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIwNjA1NjcyMzEzNDU5MDAzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-20\",\n            \"systemId\": \"599426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzM1NDI0NDc0OTQwMjUxMDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-21\",\n            \"systemId\": \"619426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjg1NzIyNDI5OTM3ODYyMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-22\",\n            \"systemId\": \"699426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE4MjEyMTEwODAzNzA4MTM1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-23\",\n            \"systemId\": \"719426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTY4OTIzODUwNDg3MzY2ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-24\",\n            \"systemId\": \"799426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg0MDI3MTAyMDQyMTc5Mzg1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-25\",\n            \"systemId\": \"819426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.287Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI1MjQ4MTA5MTExNTkwMDk4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-26\",\n            \"systemId\": \"899426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzI1MTE2NDk0ODU1OTk2OTIzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-27\",\n            \"systemId\": \"919426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA1ODE4MjU3OTY1NDY5NDc2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-28\",\n            \"systemId\": \"999426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTgxMTA5Njk5MjE1MjI2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-29\",\n            \"systemId\": \"a19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.333Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDM3NTkxNDMxNTAyMjkxNTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-10-30\",\n            \"systemId\": \"a99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQzODIxNjQ1MTQyNzQ3Njk2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-10-31\",\n            \"systemId\": \"b19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.397Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTczNDM5MzU0MzA2MDQ5MjczMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-01\",\n            \"systemId\": \"b99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTgyMjY0OTU3MDk3MDY2NDM0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-02\",\n            \"systemId\": \"c19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTAzMTMwMjM5ODg0NjUwMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-03\",\n            \"systemId\": \"c99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjI0MDQ1MjUwMjk3MzUyMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-04\",\n            \"systemId\": \"d19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM4NDgxNjU4MTE2NDYyODYyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-05\",\n            \"systemId\": \"d99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjUxNTI1NTM1MzM3NDM2NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-06\",\n            \"systemId\": \"e19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTk5NDQ1MjA1MzA4NDU4NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-07\",\n            \"systemId\": \"e99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ3NDgwOTg4NTE4ODY5ODQ5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-08\",\n            \"systemId\": \"f19426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNTg1NTUzNTQxNjA2MTYxMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-09\",\n            \"systemId\": \"f99426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzE3OTYwMzYzNjQ3MjY1ODgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-10\",\n            \"systemId\": \"019526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTE4Mzk3NzY5NzY0MTk0MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-11\",\n            \"systemId\": \"099526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgyNTY5MDk5NDkwNzg4MjM4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-12\",\n            \"systemId\": \"119526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIxODU3OTI1MTg2NjA5NjM5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-13\",\n            \"systemId\": \"199526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3NTMyMjM2NTM2MDQyODkyODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-11-14\",\n            \"systemId\": \"219526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxOTE5ODA0Nzc2OTU3NTA4NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-15\",\n            \"systemId\": \"299526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.693Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg5NjcxNTk2MjY0OTAzNDI3MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-16\",\n            \"systemId\": \"319526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTYyMjQzNzMwMjc3MDgzNjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-17\",\n            \"systemId\": \"399526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYxNzAyMjE0MDkxNzc1NDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-18\",\n            \"systemId\": \"419526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzU2NjgyNjU0Njk1NzkzOTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-19\",\n            \"systemId\": \"499526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.833Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE2NzY2MDk2ODgwMTEzMzgzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-20\",\n            \"systemId\": \"519526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.863Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDY1MDcxNzc5NjEwNzE0NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-21\",\n            \"systemId\": \"599526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.897Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUxMjI2MDk1MzU3MjAzODE4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-22\",\n            \"systemId\": \"619526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDMyMjE3ODg0Mzc5OTIzODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-23\",\n            \"systemId\": \"699526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.927Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODM1MzI5MTEyMzA2MTU3NDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-24\",\n            \"systemId\": \"719526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg1MjgwNjc2OTg4OTk4MjI5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-25\",\n            \"systemId\": \"799526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY3MjM3MzM0NzEwMjMyNTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-26\",\n            \"systemId\": \"819526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjUyMDE3NzI4MDk3NzY5MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-27\",\n            \"systemId\": \"899526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.037Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDQ5NDcxMTYzNzY1MzQ4MzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-28\",\n            \"systemId\": \"919526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc0MzQ4MDY2MDg1MTczNzU0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-11-29\",\n            \"systemId\": \"999526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.097Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NzQ5NDAwOTQwMDI4MTUwMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-11-30\",\n            \"systemId\": \"a19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzU1Nzc0MjMwMTc0NDAxNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-01\",\n            \"systemId\": \"a99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM0MjQ1OTk5MjE5ODQ0NTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-02\",\n            \"systemId\": \"b19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDY4NzE3NTAyODkzNDQ0MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-03\",\n            \"systemId\": \"b99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2Mzc5ODA2NTIzNDQ5OTMzMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-04\",\n            \"systemId\": \"c19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.177Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE1MDczMjM2OTAxNzI1MTY5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-05\",\n            \"systemId\": \"c99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDk3NjU4MTMzMDg5NjM4NDc0MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-06\",\n            \"systemId\": \"d19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTQyOTMwOTQ4NTY4OTI3ODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-07\",\n            \"systemId\": \"d99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTQ4MTYyMjQyNzM3NTQ3ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-08\",\n            \"systemId\": \"e19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA2MDI0OTM1NTkzMjkyNzQxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-09\",\n            \"systemId\": \"e99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYzOTg1ODQ2MjkyMDQyMTc1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-10\",\n            \"systemId\": \"f19526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc1MTk0NTU3NjExNTgwMTM2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-11\",\n            \"systemId\": \"f99526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA4Mjg2OTg0MTg4NjE3NzQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-12\",\n            \"systemId\": \"019626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg4OTg4NzQ3Mjk4MDkwMjk4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-13\",\n            \"systemId\": \"099626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjg4ODU3MTMzMDQyNDk3MTIzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-14\",\n            \"systemId\": \"119626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExOTI2NTg2NDIzNDkzMTM4ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-12-15\",\n            \"systemId\": \"199626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.27Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU4NjA3NzcyOTQ2NTc2MTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-16\",\n            \"systemId\": \"219626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.27Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxODQzMjg1NzQ1NTk1NTkxODMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-17\",\n            \"systemId\": \"299626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDM3NTM2OTQyODE5NDc0OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-18\",\n            \"systemId\": \"319626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.333Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjA0ODEyODg2MzYzNjQ0NTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-19\",\n            \"systemId\": \"399626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.333Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjAxODc1NzUwNzQ1Mjg4MDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-20\",\n            \"systemId\": \"419626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk3NDMwODI2OTQ3NjkwNzIzMTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-21\",\n            \"systemId\": \"499626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.397Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE4ODgwNDAxNDAzOTkzOTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-22\",\n            \"systemId\": \"519626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.397Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzIzODAwNzg5OTE4OTk1NzE4MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-23\",\n            \"systemId\": \"599626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mzg3OTgxMDg1ODIxNTUxMDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-24\",\n            \"systemId\": \"619626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5MzA2ODc0MDM3MjMxNzk5MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2029-12-25\",\n            \"systemId\": \"699626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.473Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDYwNjU1NjQ1MzU5MDQ0OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-26\",\n            \"systemId\": \"719626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDM0OTEzMTI2NjQyODUyNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-27\",\n            \"systemId\": \"799626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Nzg1MzgwMzY5NjMxNDg4MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-28\",\n            \"systemId\": \"819626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTEwMTM0MzM0Nzk4Mzg0NDI5MTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-29\",\n            \"systemId\": \"899626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.537Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNjUyMjAzMDM2MjU5MjI2OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2029-12-30\",\n            \"systemId\": \"919626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEwNzYxNzUyNDIxMzMxNzkxMTswMDsn\\\"\",\n            \"planningDate\": \"2029-12-31\",\n            \"systemId\": \"999626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.6Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzcwNTE3MTkwNDQ5NDEzODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-01\",\n            \"systemId\": \"a19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NzIwNDMzNjQzODc4ODQ5MTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-02\",\n            \"systemId\": \"a99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.647Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTEwOTkxOTcyOTIyMTkxMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-03\",\n            \"systemId\": \"b19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMzNTU2NDMxODk3NDE2NzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-04\",\n            \"systemId\": \"b99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE0MTcwNDUxNzM3MjIyNDc3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-05\",\n            \"systemId\": \"c19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzI5MjQ5NzE1ODA2Nzk3OTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-06\",\n            \"systemId\": \"c99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzQ0NDY2NjQ2NzM4MDAwOTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-07\",\n            \"systemId\": \"d19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MzM5MTYyOTE4MzU0MzA2NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-08\",\n            \"systemId\": \"d99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzc5NjM5NzcyMTQ4MTE0ODE4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-09\",\n            \"systemId\": \"e19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTEyODYxMzE3MDE1NDI1NzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-10\",\n            \"systemId\": \"e99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyOTU3MTgzMjA3NDc4NTEwMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-11\",\n            \"systemId\": \"f19626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.697Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTE3ODA4NjAwNDgyMzg1NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-12\",\n            \"systemId\": \"f99626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjE0NDQzNDExNjE3NjcxNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-13\",\n            \"systemId\": \"019726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQzOTAxNTc1NzY2OTY0NzY3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-14\",\n            \"systemId\": \"099726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDk2MTY5ODU3MTg2NDkxNjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-15\",\n            \"systemId\": \"119726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMTcyMDY1MzQ4NTQyNjEzNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-16\",\n            \"systemId\": \"199726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc5MzcyOTgwNjk1NDM0MTM5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-17\",\n            \"systemId\": \"219726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjcwNDU1NDA1NjYxMTU0MDM2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-18\",\n            \"systemId\": \"299726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTI3ODI1MTQ2NjQzODM1NjI5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-19\",\n            \"systemId\": \"319726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ4NzYzOTE2MzQ5NDIwOTgyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-20\",\n            \"systemId\": \"399726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.867Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODQ0NzI2NzE2NTM1ODkzMTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-21\",\n            \"systemId\": \"419726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTU1Mzk3NTE1NjU0MzE0NjAxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-22\",\n            \"systemId\": \"499726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDIwMDI4NDk0NzQ0NDM4NzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-23\",\n            \"systemId\": \"519726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTAyODk1NDQwNTE2MTE4MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-24\",\n            \"systemId\": \"599726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.947Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY5ODcwMzgxODQ5OTg4NjkyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-25\",\n            \"systemId\": \"619726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQzNzQzNjU3NDI0MTgzNjI5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-26\",\n            \"systemId\": \"699726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.007Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDEwMjQwNzMyODE4MzY4NzI3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-27\",\n            \"systemId\": \"719726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA3MTQ5MzQ4MDc0MzA0NTYwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-28\",\n            \"systemId\": \"799726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ5NTg4NjA1Mzg3NTM3NzUzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-29\",\n            \"systemId\": \"819726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzY0MDgxNTM2Mzg5NTE3MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-01-30\",\n            \"systemId\": \"899726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc1Mzg1Njc0MzA5NTE4ODI3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-01-31\",\n            \"systemId\": \"919726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA2OTgxOTcyMTQ0NzU0NDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-01\",\n            \"systemId\": \"999726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI0NjMxOTAyNDE1NTk2OTU4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-02\",\n            \"systemId\": \"a19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTczMzM3NDQ1NTgwMTk2ODU1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-03\",\n            \"systemId\": \"a99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.117Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzcyNzc0MTU2NzUzOTUwNDAwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-04\",\n            \"systemId\": \"b19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.147Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE3NjAzNDE3NjQ2MjAyMDg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-05\",\n            \"systemId\": \"b99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTQyOTk2ODQzNTIyNDQ1NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-06\",\n            \"systemId\": \"c19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzExNjU3NDE1OTQ0NjE3MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-07\",\n            \"systemId\": \"c99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.21Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA0NjQ0MTg4MDkzODc0ODg1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-08\",\n            \"systemId\": \"d19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDYxMzQ1MjY4NjgyMjYxMTgyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-09\",\n            \"systemId\": \"d99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzg4MzQ0ODgwODQ0ODgwMjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-10\",\n            \"systemId\": \"e19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDEzNDE3ODQ0MDc4Nzc3NjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-11\",\n            \"systemId\": \"e99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk3NzMxMTYyOTcwNTgzNDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-12\",\n            \"systemId\": \"f19726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTg0OTM3MTY5MTg1Nzc0MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-13\",\n            \"systemId\": \"f99726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjc3MTM3MTczMjQ5MTA2MzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-14\",\n            \"systemId\": \"019826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.35Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTMyMTA3Mzc0MTE1Nzk0NTY1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-15\",\n            \"systemId\": \"099826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.367Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODg4NDg5Mzc4MzQyMDEyNjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-16\",\n            \"systemId\": \"119826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.383Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODcwNzY3NzczNDM1NDQ4MTgzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-17\",\n            \"systemId\": \"199826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.413Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3MjIzNjI1MDg1OTMzNDA5NjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-02-18\",\n            \"systemId\": \"219826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDMxMDc4NzE0NzU3NTAwNDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-19\",\n            \"systemId\": \"299826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.46Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjg4NTE0OTY4MTQ3OTIxMzk1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-20\",\n            \"systemId\": \"319826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.507Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzMzMDkwNjg1NDM2NDkxMDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-21\",\n            \"systemId\": \"399826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.54Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQwNDQ0Mjk0MjgxNDk1NDYxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-22\",\n            \"systemId\": \"419826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE5NDkyNzUwMDQyMjU0NTQyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-23\",\n            \"systemId\": \"499826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.557Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ5NzU2MjExNDU5MzQyOTUxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-24\",\n            \"systemId\": \"519826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzYxMDc4NjU0NTE0ODk3MjgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-25\",\n            \"systemId\": \"599826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.603Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDI1NDI0ODc2MTQzMjcyNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-02-26\",\n            \"systemId\": \"619826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc2NDU4NjI4ODQ0NjcxNzYzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-27\",\n            \"systemId\": \"699826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY5ODU2NzEwMTc3NzU4MjY4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-02-28\",\n            \"systemId\": \"719826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0ODA0ODc2MTgyNjExODE3OTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-01\",\n            \"systemId\": \"799826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0MzU4NDg5ODA3MjE5NDcwMjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-03-02\",\n            \"systemId\": \"819826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzIzMzY0MjkxNDUxNjUwMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-03\",\n            \"systemId\": \"899826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA2MDY2MTMyODMyOTMxMDg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-04\",\n            \"systemId\": \"919826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzA4NDE0MDc4OTAzNTI4NTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-05\",\n            \"systemId\": \"999826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.71Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTkyMTAyNDc0MzEwNjAxMDExMTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-06\",\n            \"systemId\": \"a19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.727Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcyMTEzMTU4MTU3MDU0OTcyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-07\",\n            \"systemId\": \"a99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.757Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgxODQ3NjUzNjAyNTQ4MjYxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-08\",\n            \"systemId\": \"b19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.773Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMDY0NTI5MTE5NzIyOTgxNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-09\",\n            \"systemId\": \"b99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.807Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTIxMTQyNDI2Nzc0Mjc2NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-10\",\n            \"systemId\": \"c19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjQ5NDg5MjI0NDcwNDAyODE3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-11\",\n            \"systemId\": \"c99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NjQ1NjA3Nzk3NzEyNzMyNTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-12\",\n            \"systemId\": \"d19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTMwMDU5MzczMzI0MjgyMTk1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-13\",\n            \"systemId\": \"d99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMTY2NjczNzIzMjk0NTg1NTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-14\",\n            \"systemId\": \"e19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwODY0NTUyNzU4MDM4Njg4NTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-03-15\",\n            \"systemId\": \"e99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzkwODcyOTEyODQwMjI4OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-16\",\n            \"systemId\": \"f19826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.913Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzE2ODU4NzIyMzQ5MDY4MjQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-17\",\n            \"systemId\": \"f99826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzNTMxNjcxODE5OTgwNjg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-18\",\n            \"systemId\": \"019926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.96Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQxNTUyODg0MzIwNDYzNTk0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-19\",\n            \"systemId\": \"099926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjMxNjk2NzQwNjg5ODYwMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-20\",\n            \"systemId\": \"119926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.023Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODIzODEwMDY3NjE2Mjk3OTk2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-21\",\n            \"systemId\": \"199926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjQ5MDYyNzIxMjAxODEzOTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-22\",\n            \"systemId\": \"219926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.04Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYzMzQ0ODQ2NDY0MzgxMDIzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-23\",\n            \"systemId\": \"299926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.07Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxNTIwNTY1MzE4OTgzMTYwODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-03-24\",\n            \"systemId\": \"319926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTkyMDQyMjUwMDY3MDQyNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-03-25\",\n            \"systemId\": \"399926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc2MTUyMTk5MzI2OTQ5NzA2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-26\",\n            \"systemId\": \"419926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg3MzYwOTEwNjQ2NDg3NjY3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-27\",\n            \"systemId\": \"499926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjY3NjMyODE2ODQzMTgwMjg1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-28\",\n            \"systemId\": \"519926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA2NzAzNDM2OTQwMjIxNTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-29\",\n            \"systemId\": \"599926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM2OTU4NTMzMTk1Nzg2MDYzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-30\",\n            \"systemId\": \"619926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.227Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU1OTI5MzU1MzE3ODQ0MzQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-03-31\",\n            \"systemId\": \"699926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTUyNzc5NjkzNTM3MzU0ODE3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-01\",\n            \"systemId\": \"719926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.273Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUyMjU1NzEzMTA2OTkzODE4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-02\",\n            \"systemId\": \"799926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzE3NDUwNjU1NjQ4NjUyMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-03\",\n            \"systemId\": \"819926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.32Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQwNDQ0NTkyNjU0Njg3NzczMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-04\",\n            \"systemId\": \"899926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MzcxODkxNjkxMjk0MjA5MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-05\",\n            \"systemId\": \"d9b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.477Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NzkwMTQ5NDczNTc4ODcxMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-06\",\n            \"systemId\": \"e1b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.493Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzYxNzEzODYyMDM1NjQyODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-07\",\n            \"systemId\": \"e9b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.51Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM4MjcwODgyNTMyNzk5MDExMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-08\",\n            \"systemId\": \"f1b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.51Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU1MzAxMTMzMDUyNDc2NjUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-09\",\n            \"systemId\": \"f9b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.54Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTcwOTg2ODQzODgyNzAwMDU0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-10\",\n            \"systemId\": \"01b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzE3NjkzMjYzMjM4NzkyNzY3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-11\",\n            \"systemId\": \"09b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkyNzM0NjYwOTk2MTkwMDU2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-12\",\n            \"systemId\": \"11b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYwOTAyMDEzMzY3OTE2Njg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-13\",\n            \"systemId\": \"19b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjk5NTgwNzY1NTE4MjEwMzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-14\",\n            \"systemId\": \"21b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYwNDE3MjcyMzg3ODQ2MTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-15\",\n            \"systemId\": \"29b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxNTMxMjk4OTg1NTAxNDU1NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-04-16\",\n            \"systemId\": \"31b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzM5NjY2NTI2MjQyODQwMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-17\",\n            \"systemId\": \"39b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.617Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ5MjMxNzI2MDM1MTc0NTkxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-18\",\n            \"systemId\": \"41b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.65Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzM0MDc3NTc5NDE3MjMyMTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-19\",\n            \"systemId\": \"49b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDg3MTE0ODY0ODQyMTI4MDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-20\",\n            \"systemId\": \"51b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQzNjcyOTc0MjgzNjgzMTc4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-21\",\n            \"systemId\": \"59b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgwNDExNTYxOTExNjE1NTg4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-22\",\n            \"systemId\": \"61b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.68Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjExODEyOTYzMjUxMDk2OTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-23\",\n            \"systemId\": \"69b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.713Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk0NjE4MzY5MjU1NjY4MTAyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-24\",\n            \"systemId\": \"71b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.743Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI3NTY5MjgzMjQ5NDg5NDIzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-04-25\",\n            \"systemId\": \"79b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.777Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDE4MTI1MTc4MTA1ODYyODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-26\",\n            \"systemId\": \"81b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDIwNjg3OTkzNzQ0MjkxMzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-27\",\n            \"systemId\": \"89b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.79Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODc0ODAzMTk4MzU2Mjk3MDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-28\",\n            \"systemId\": \"91b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.823Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNzA2MDgyNzQ2Mzc1MzQwMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-29\",\n            \"systemId\": \"99b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.853Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTIwODYyNTQyNDEwNjI0MjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-04-30\",\n            \"systemId\": \"a1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.883Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODUyNjAxNDEwMDgxODc4MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-01\",\n            \"systemId\": \"a9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.917Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTMyODI1NjUwNzg5OTI3MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-02\",\n            \"systemId\": \"b1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.93Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxMjgyMjczNjg0NzIxNzMwNDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-05-03\",\n            \"systemId\": \"b9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.963Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTcwNTI5Nzg5MDUwODEyODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-04\",\n            \"systemId\": \"c1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI3NTEyMTc0NzQxMTA2NDExMTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-05\",\n            \"systemId\": \"c9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.977Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM0NjQ3NzQzNDUyNjMyMzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-06\",\n            \"systemId\": \"d1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NjY1MTQ0NzcyNjk5NTAwMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-07\",\n            \"systemId\": \"d9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDA3NDk2ODU2ODQxNjg1NTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-08\",\n            \"systemId\": \"e1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzgzMzg5MzAzNjk4MDQzMDIzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-09\",\n            \"systemId\": \"e9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTExODgwMDI1Mjk4ODg0OTg1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-10\",\n            \"systemId\": \"f1b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.027Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDY5NjM5MDQ1MTIxNDAzNTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-11\",\n            \"systemId\": \"f9b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.057Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzQzOTUwNDA2NzgyOTUxNDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-12\",\n            \"systemId\": \"01b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.073Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkzMzIyMjExNDY0MTU2MjEyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-13\",\n            \"systemId\": \"09b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.103Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzY3MDUzNjY4NDg0OTUzNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-14\",\n            \"systemId\": \"11b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTI5OTYzMzA5ODAyNTU3ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-15\",\n            \"systemId\": \"19b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.133Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODExMTMwOTIyODI1MzA3ODQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-16\",\n            \"systemId\": \"21b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.15Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTEwOTM0OTc2NTEwNjA5MDY1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-17\",\n            \"systemId\": \"29b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.18Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTMzNzIzNjIxMTg0ODkzNDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-18\",\n            \"systemId\": \"31b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjUzNDE2MTAyNzMwMTgyMTg3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-19\",\n            \"systemId\": \"39b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.197Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2ODIxMDIwNzkwODUzNTIwMjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-20\",\n            \"systemId\": \"41b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjk4MjM5NDk5MTE0NDg5NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-21\",\n            \"systemId\": \"49b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzM1NTQ2OTY2NzA3NzIyMzExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-22\",\n            \"systemId\": \"51b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA1MDU3MzQzOTA3NjExOTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-23\",\n            \"systemId\": \"59b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDM5NTQxNjE4NTMxMTY0MDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-24\",\n            \"systemId\": \"61b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.243Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExOTQ1MjczNzIzNjk2NzUxMzgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-25\",\n            \"systemId\": \"69b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU2OTIwODA0NjE2MjExNjI3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-26\",\n            \"systemId\": \"71b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.277Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgwMjQwMzQ3NTQ3NzA1OTI0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-27\",\n            \"systemId\": \"79b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDYzNDk1OTE1NDI3NzYwMTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-05-28\",\n            \"systemId\": \"81b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkzMDU2MDEwODk4ODY4NzI3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-29\",\n            \"systemId\": \"89b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQzNjIzMTE2NjIzNjMxMTM2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-30\",\n            \"systemId\": \"91b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE1NTIxMzkzMTA1MjQ0NTM3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-05-31\",\n            \"systemId\": \"99b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.307Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDgyMTY2NTE4NzUwNTQ0ODAyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-01\",\n            \"systemId\": \"a1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.323Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg5MzQ5OTkwNTcyNjkxMDUxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-02\",\n            \"systemId\": \"a9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.353Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU0MzM1MzY0MDYzMjQxMTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-03\",\n            \"systemId\": \"b1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.4Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc4OTExNTQ0MTQ4NjA4MjU0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-04\",\n            \"systemId\": \"b9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIzNTkwMjA3NzE3OTY5NDQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-05\",\n            \"systemId\": \"c1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU0MjMyNTIwMTAyNzQ2MzUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-06\",\n            \"systemId\": \"c9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTcwODgzODc0MDk2Mzk1OTYxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-07\",\n            \"systemId\": \"d1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjMwNjcyNTU0NjEwNjA5OTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-08\",\n            \"systemId\": \"d9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTAwNjUyMzE2ODA2MjYzNDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-09\",\n            \"systemId\": \"e1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.563Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDI4NTE1MzE5MzIwNTQwNjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-10\",\n            \"systemId\": \"e9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjkzMDMyNjc5NjI4MjQ2NTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-11\",\n            \"systemId\": \"f1b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg2NTE2MDMyOTY2MTkzMzk5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-12\",\n            \"systemId\": \"f9b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4NzU1MzU2MDg1MDA4OTI4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-13\",\n            \"systemId\": \"01b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODIyMzU5MzcyNDQ5OTM2NTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-14\",\n            \"systemId\": \"09b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTA3MDAwMjEzOTI5MzA1NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-15\",\n            \"systemId\": \"11b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzM3MTY1NTQ3NjEyMjQyMzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-16\",\n            \"systemId\": \"19b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzU1Njk4MjY0NzkxNzczNzgxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-17\",\n            \"systemId\": \"21b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE1NTE2ODk4MTIxNzI2ODQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-18\",\n            \"systemId\": \"29b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTk4ODIyODAzNTI1OTYxMjg3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-19\",\n            \"systemId\": \"31b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTM3MDkzODI5MTM0NTYxNDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-20\",\n            \"systemId\": \"39b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjY0Mzk1Mzk2MDYwMzQwNzQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-21\",\n            \"systemId\": \"41b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.703Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTQ5NDM2OTA0MjQ4MzY4OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-22\",\n            \"systemId\": \"49b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ1MTYxMzg5NTYyNDc1NzU2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-23\",\n            \"systemId\": \"51b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.767Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODQ1MjM3MzMxOTA1MzUzNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-24\",\n            \"systemId\": \"59b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODUzOTY4Nzg3NzY3MzA1OTk4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-25\",\n            \"systemId\": \"61b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTY2MDcxMzAwMDI3NjQxOTExMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-26\",\n            \"systemId\": \"69b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDAzMzkxNTI1NDA1MDM3NDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-27\",\n            \"systemId\": \"71b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTE5NTM0MzI3NjM3OTI5MjQyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-28\",\n            \"systemId\": \"79b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mjc1NTEzODEwMjcyMDY3MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-06-29\",\n            \"systemId\": \"81b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzg4NzgwNzU0NTc5NTg3MzQwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-06-30\",\n            \"systemId\": \"89b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODEyMzg4ODAzNDYxNzIzNzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-01\",\n            \"systemId\": \"91b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQxODYwNDI0MTkzOTc5NjQ2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-02\",\n            \"systemId\": \"99b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ3MTg4NDg0Njc5MjI2MjQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-03\",\n            \"systemId\": \"a1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzEzMzEwNjczODAwODcwMzIxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-04\",\n            \"systemId\": \"a9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ1MTY2NTM1NzQyNTg4MDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-05\",\n            \"systemId\": \"b1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.953Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDIwMjAwMTUwNzQ4NTkwMTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-06\",\n            \"systemId\": \"b9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY1NDYyODUyOTEwMzI2MDYwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-07\",\n            \"systemId\": \"c1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzE0MjkyNTIyNDA2OTc5NDExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-08\",\n            \"systemId\": \"c9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY1NDk0ODMzMTYwNzk1NDcxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-09\",\n            \"systemId\": \"d1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyMTAwMTEyNzAwOTMwMzcyMDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-07-10\",\n            \"systemId\": \"d9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc0MDQ2OTUwMzkxODIwNjU3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-11\",\n            \"systemId\": \"e1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkzMjU3NjIyOTQyMTg2MTM4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-12\",\n            \"systemId\": \"e9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.047Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjA0MDg3NzczMTY1MzU0OTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-13\",\n            \"systemId\": \"f1b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTI1NjMxMjYzNTczMjI5NDAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-14\",\n            \"systemId\": \"f9b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA1NTE0MjU2MzU5MTk0NzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-15\",\n            \"systemId\": \"01b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzQ5Mzk0OTYyNTIxOTcyNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-16\",\n            \"systemId\": \"09b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI2MjQ2NjIyMDAyNjgwNTIwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-17\",\n            \"systemId\": \"11b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMTUyNTUwMjY5MzIyMzQ0ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-18\",\n            \"systemId\": \"19b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjYxNjk0Mjc2OTMxOTIxMjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-19\",\n            \"systemId\": \"21b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.173Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTUyMzgyMDMwODg4NjM3NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-20\",\n            \"systemId\": \"29b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI0OTM1ODg0NTczNzEyOTU3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-21\",\n            \"systemId\": \"31b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjkxMzE1NTM5MDA1MzkxNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-22\",\n            \"systemId\": \"39b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Njk4MzcwNjY3MjYwNzc5OTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-23\",\n            \"systemId\": \"41b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.25Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjY0MzQ4MDM1MTY5MjM2NTIwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-24\",\n            \"systemId\": \"49b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.297Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjAyOTg5MTczNTA4NjA4ODExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-25\",\n            \"systemId\": \"51b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDMyMTI1MjQ5MDU5NTQyNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-26\",\n            \"systemId\": \"59b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxODM4MzE3MjYxMzg4NDIxMTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-27\",\n            \"systemId\": \"61b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NzczNTI5MDUzMjM4MDcyNzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-28\",\n            \"systemId\": \"69b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE0NDE4NjczNTgwNjM1ODk0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-29\",\n            \"systemId\": \"71b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk4NTM3NjkwNjUxMDUyODc5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-07-30\",\n            \"systemId\": \"79b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MjE0NjE2OTczMzczMzI3MTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-07-31\",\n            \"systemId\": \"81b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.453Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzYwMDUzMjk5MDE1NjkwMDk3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-01\",\n            \"systemId\": \"89b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAwNzM5MjkzNjExMjYzODk5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-02\",\n            \"systemId\": \"91b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk5NDk5NjgwODEzODMwNzU2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-03\",\n            \"systemId\": \"99b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.547Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg4MDI5MjM1ODY3NDUyMTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-04\",\n            \"systemId\": \"a1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTAwMDU1MDQyNDE4NDQ1NzUwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-05\",\n            \"systemId\": \"a9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjEzMDM1NjQyMTM2NzEyOTI3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-06\",\n            \"systemId\": \"b1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjM0MzYzNzI4MTk2MjQzNjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-07\",\n            \"systemId\": \"b9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.657Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTM0MTU4ODY3ODA4OTg5MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-08\",\n            \"systemId\": \"c1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg0NDQ1NzAyMzgzOTYyNDExMTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-09\",\n            \"systemId\": \"c9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.72Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0MjU5NDkyNDMzMzAyNDM4ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-08-10\",\n            \"systemId\": \"d1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjAxMDcxMDAzMDU1OTcyOTQxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-11\",\n            \"systemId\": \"d9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NDIzNjY1Nzc3NjgzODU4MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-12\",\n            \"systemId\": \"e1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzUxMjcxMTI1MjY1MDE0MzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-13\",\n            \"systemId\": \"e9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM4MDcwMTIyMDE5NzMzMjg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-14\",\n            \"systemId\": \"f1b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTMyNDU4MDc0MDA2MTg0ODIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-15\",\n            \"systemId\": \"f9b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjA5MTEzODA5NjcxNTAzNjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-16\",\n            \"systemId\": \"01b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA1MzYyMTE3NjU3Nzg5NzY0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-17\",\n            \"systemId\": \"09b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2Nzg5NTQ5NDY2MjIyMTQxNTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-18\",\n            \"systemId\": \"11b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTAxNjA4MjA5NDE0NjQ0NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-19\",\n            \"systemId\": \"19b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgxODc1NTI2MTY0MDM4MTc2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-20\",\n            \"systemId\": \"21b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY3MTgzOTAyOTk2NjMwMzQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-21\",\n            \"systemId\": \"29b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk1NDk5NzMxNTE3NDk0Mzg2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-22\",\n            \"systemId\": \"31b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU4OTcyMDE1NzkwODAzNDY3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-23\",\n            \"systemId\": \"39b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.97Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMzU0NTIwMTE2NjExOTg2OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-24\",\n            \"systemId\": \"41b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA4NDIwNjQxMjk3OTIwMDQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-25\",\n            \"systemId\": \"49b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTI3NTEzMjIyMTU5NjU1MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-26\",\n            \"systemId\": \"51b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.063Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyNDE0MDE3MjA5NTYxMTcyODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-08-27\",\n            \"systemId\": \"59b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NDk2OTUwMTg0ODk3OTYzNzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-28\",\n            \"systemId\": \"61b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDkwMTQxNTE2Nzc0MDU2MDAyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-29\",\n            \"systemId\": \"69b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMzgzODg3NzkxMDM3MDk1NDcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-08-30\",\n            \"systemId\": \"71b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDE4MTExMTkwODQwMzU0NzU2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-08-31\",\n            \"systemId\": \"79b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTk0NTIyMDY4ODU0ODgyMDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-01\",\n            \"systemId\": \"81b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODk3NDkxODU5MzE5MDY5MzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-02\",\n            \"systemId\": \"89b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.237Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ2NjU3MTQzMTQyMzczOTUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-03\",\n            \"systemId\": \"91b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.267Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDEwMjE3NDM5MzQwOTg2Nzc3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-04\",\n            \"systemId\": \"99b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDAwMjg0MTc0NDA3NjI1NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-05\",\n            \"systemId\": \"a1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjYwODI2NzA3MDkzNjk1MTYzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-06\",\n            \"systemId\": \"a9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODk3OTE1MzA3Mjg1NTE4NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-07\",\n            \"systemId\": \"b1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzkwNzMwNTgzMDQ5NjYzNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-08\",\n            \"systemId\": \"b9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.36Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMjA4MzQ2ODI5ODM5NzIxNTExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-09\",\n            \"systemId\": \"c1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY3NjI2NzQ3ODAwMDM0MDQ4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-10\",\n            \"systemId\": \"c9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.407Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDY2NDg4Njc5MjAzODA3NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-11\",\n            \"systemId\": \"d1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI5ODg3ODQxNzgyNTQ2NzIyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-12\",\n            \"systemId\": \"d9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.47Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE0NDYwMTAyNTIyNTY2MjY4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-13\",\n            \"systemId\": \"e1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.517Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTUxMDE2Mzg3NDgxODQwMjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-14\",\n            \"systemId\": \"e9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDg2NjcxOTk0MDA0OTU3MzQyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-15\",\n            \"systemId\": \"f1b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODg0NjQ3Mjg3NDAyOTU1MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-16\",\n            \"systemId\": \"f9b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODAxNjY5NDYxMDU1NzI0OTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-17\",\n            \"systemId\": \"01ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.61Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjY5NDkzODc0NzI4NTI5NjkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-18\",\n            \"systemId\": \"09ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.643Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMDkyMjg2MzY3NzQ1NDU0MjcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-19\",\n            \"systemId\": \"11ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.673Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDg0MzkxMjkyOTg5MzkzODIwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-20\",\n            \"systemId\": \"19ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDQ4NTI0MTYyNDU3NDkzNDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-21\",\n            \"systemId\": \"21ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjMzNzc4MDQ0NzYxODkzMDA2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-22\",\n            \"systemId\": \"29ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDI0OTY5NTE0NjA3MDY5MDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-23\",\n            \"systemId\": \"31ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.783Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzU4NTQ2OTQ0NTQ5MDQwOTYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-24\",\n            \"systemId\": \"39ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.813Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMxNjYwNDUxMDIzNzA2MjgxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-25\",\n            \"systemId\": \"41ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1NTQ3MzYzMDA2NDA3NTIxOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-09-26\",\n            \"systemId\": \"49ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTkzMDgyNTQ5MjA0MDEyMTg4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-09-27\",\n            \"systemId\": \"51ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzE1NTMyMDE3Mjg2NTY4MzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-28\",\n            \"systemId\": \"59ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.923Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzkzNjQwMzc4NDM5Mzc2MTQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-29\",\n            \"systemId\": \"61ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.957Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODIwNDE3MDQ1MDczMjM0MTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-09-30\",\n            \"systemId\": \"69ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.987Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODQ2NDU0NjEzNzk5NDcwNzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-01\",\n            \"systemId\": \"71ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE0OTA3NDk4NDc5NDY3MTE0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-02\",\n            \"systemId\": \"79ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE3NzE1MjI2MDg4MjQxMzQ3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-03\",\n            \"systemId\": \"81ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.05Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzU0NTExNTA0MDU3NjM5ODAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-04\",\n            \"systemId\": \"89ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgxNTE1NzcwODU3OTU1NjY5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-05\",\n            \"systemId\": \"91ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.11Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM1NDU5NDk4NjM2ODYxMzU4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-06\",\n            \"systemId\": \"99ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1Nzg2ODM4MDUyOTMwNTgxNTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-10-07\",\n            \"systemId\": \"a1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.127Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NDMxMDMzODM0ODI5ODMzNzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-10-08\",\n            \"systemId\": \"a9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDM0NzI4OTE5ODY0MTU3MDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-09\",\n            \"systemId\": \"b1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTM3NjY3MDkzNjY3MTcyMTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-10\",\n            \"systemId\": \"b9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.22Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYwMDYyNDg0MzA3MjYxMDUyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-11\",\n            \"systemId\": \"c1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMyMDk3NjM1NzQ5NTYwNjQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-12\",\n            \"systemId\": \"c9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.283Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg4MjE0OTExNDIzMjQ1MzI2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-13\",\n            \"systemId\": \"d1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTM5MTY1NDk3MTM0MzM4NDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-14\",\n            \"systemId\": \"d9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.347Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTg1MjQ0MTg2OTQ2MDI2ODkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-15\",\n            \"systemId\": \"e1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyMzQ0NTIwOTAxMTQ5NzE5NDE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-10-16\",\n            \"systemId\": \"e9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjU1NDQ3MDUzNDA3MzE5MjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-17\",\n            \"systemId\": \"f1ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjI4MzAyODU1NDk5NzA0OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-18\",\n            \"systemId\": \"f9ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE5NDc1NzMyNDc5ODMzNjA1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-19\",\n            \"systemId\": \"01bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.423Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTI3NTc2NDgyMzc1OTMyNzkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-20\",\n            \"systemId\": \"09bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.44Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Njg4Nzk2NTQ0NDk2MzU2MDgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-21\",\n            \"systemId\": \"11bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU5ODAxNDI2OTgwNTM1MjY1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-22\",\n            \"systemId\": \"19bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjU1NjUwMDg3MzgwNTk5NDYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-23\",\n            \"systemId\": \"21bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.533Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTQwNjc1ODU1ODE2ODUyOTkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-24\",\n            \"systemId\": \"29bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzMyMTAwMjgwNTY4NzAxNzg4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-25\",\n            \"systemId\": \"31bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.567Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ5MDUwMzgyNTI2MDA2MTUwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-26\",\n            \"systemId\": \"39bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE0NjM1MjExMjU4ODI2MzE5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-27\",\n            \"systemId\": \"41bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA3MjU4OTEzOTc5ODIwNDU2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-28\",\n            \"systemId\": \"49bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDk5NDg0NzIwNzM5NDYxNTM3MTswMDsn\\\"\",\n            \"planningDate\": \"2030-10-29\",\n            \"systemId\": \"51bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.707Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNDQ3Njg5MTM2OTE4MTcwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-30\",\n            \"systemId\": \"59bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.737Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzIwMDcyNjI4OTAxMDg1NjMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-10-31\",\n            \"systemId\": \"61bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY1NjUyNjg0Mzg4ODE3NDg1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-01\",\n            \"systemId\": \"69bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjUwNjYzOTQ5NjYyMTM5MTAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-02\",\n            \"systemId\": \"71bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NzU5MDY1NzQ5NjIzNTgyODcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-03\",\n            \"systemId\": \"79bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4NjA4MzcxMjc5ODQ1MDM5MjE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-11-04\",\n            \"systemId\": \"81bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODMxNDE2OTY4MjIxODk2MTcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-05\",\n            \"systemId\": \"89bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.91Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTk1NzQ1NTM0MjY4ODA3NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-06\",\n            \"systemId\": \"91bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.94Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODY3MTI0NzEzNjIwMDQ0MDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-07\",\n            \"systemId\": \"99bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.973Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYxNDU1MTIyMzU0NDE3Nzg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-08\",\n            \"systemId\": \"a1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.003Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzYxOTc3MzA2NjU3MTM1NDMwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-09\",\n            \"systemId\": \"a9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.033Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI4ODU3MzY1MDkyODg4MjcxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-10\",\n            \"systemId\": \"b1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU5ODc1ODU5NjkyMDA5NDY0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-11\",\n            \"systemId\": \"b9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDUyNzYwMzg4MTQwNzMxMjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-12\",\n            \"systemId\": \"c1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDAxOTU1NjU1MjAxOTk1OTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-13\",\n            \"systemId\": \"c9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzcxMTE5Njc3ODk1NDQ3NzIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-14\",\n            \"systemId\": \"d1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.08Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMxOTI3MTI2ODQ4NDU4OTA5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-15\",\n            \"systemId\": \"d9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.113Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NDk3NTcxNDU0NDc4MjA5MDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-16\",\n            \"systemId\": \"e1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.143Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODc0NTQ2MTQ3NzUwMzM2OTU5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-17\",\n            \"systemId\": \"e9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.16Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxMDY1ODcwMjQ1MTE2MDk2ODE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-11-18\",\n            \"systemId\": \"f1bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.19Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTkzMzA4ODUyNDA2OTU2MTgxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-19\",\n            \"systemId\": \"f9bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.207Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1MTUyMzA4Mzg3ODYwMTA2NzE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-11-20\",\n            \"systemId\": \"01bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.223Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjU4NDk1MjMyNTQ2ODg4MjAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-21\",\n            \"systemId\": \"09bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.253Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzgyMTY1MjQ1ODk4MTY4NzcxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-22\",\n            \"systemId\": \"11bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.3Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTEzNzM4MTc5MTc3MDM5NjA2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-23\",\n            \"systemId\": \"19bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MDQzNjk0MzMwMjk1NTAzOTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2030-11-24\",\n            \"systemId\": \"21bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Nzc1MTY3MjU1Njc4NjAzOTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-25\",\n            \"systemId\": \"29bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTA0OTczMjUyODYxMjc1NzAxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-11-26\",\n            \"systemId\": \"31bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODEzMjA1MzU2NTA1NTk1NjkxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-27\",\n            \"systemId\": \"39bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.363Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA5OTg5Njc2NTk5MjAwMjQ0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-28\",\n            \"systemId\": \"41bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.393Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc4MjA4MjE1OTA4NzE0NTczMTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-29\",\n            \"systemId\": \"49bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcyNjIxNzQ4NzExODA1MzAyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-11-30\",\n            \"systemId\": \"51bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNDc4NzUyMDQ0NTQ5MzY1NzYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-01\",\n            \"systemId\": \"59bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTI2NDc1MTg2MjI2OTM2NzMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-02\",\n            \"systemId\": \"61bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjM1NzIzNjI2MjM0MTg5NjIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-03\",\n            \"systemId\": \"69bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA2MjcwNzc0ODgwNDkzNzM5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-04\",\n            \"systemId\": \"71bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.427Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTQ3MTY0NTA0NjgwODg2OTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-05\",\n            \"systemId\": \"79bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.457Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4Mzg1MjQ5NTQ1MDIwOTcyMTMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-06\",\n            \"systemId\": \"81bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMzNzI4MzQ4NTI3MDM2MzU5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-07\",\n            \"systemId\": \"89bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzcxMTgzMjQwMjc3OTM4NDE2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-08\",\n            \"systemId\": \"91bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTA2MTc0ODg1NjIwODgxOTQ1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-09\",\n            \"systemId\": \"99bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkwMzQzMzM4NTY1MDQyMjQyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-10\",\n            \"systemId\": \"a1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjYwNTY0OTk0NjA2ODgyMzUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-11\",\n            \"systemId\": \"a9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTYyNzg5ODc1NjU4ODg3ODI4MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-12\",\n            \"systemId\": \"b1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU3OTkzMjY5NjgzODI2OTc0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-13\",\n            \"systemId\": \"b9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc4NzA3NTE2NTc4MTAyMzkxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-14\",\n            \"systemId\": \"c1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.52Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAzMTU4NzE1Nzg0OTM2MDAwMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-15\",\n            \"systemId\": \"c9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.55Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTU3ODY1NTQzMDQzNDk0NDkxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-16\",\n            \"systemId\": \"d1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA2MDUzMzc1ODA3Mjk1MDI2MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-17\",\n            \"systemId\": \"d9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.58Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTA0NDkyMTAxOTQ1MDQ4NDMxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-18\",\n            \"systemId\": \"e1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.597Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjk2Mzg2ODMzNjI1NzcxMTg5MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-19\",\n            \"systemId\": \"e9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.627Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjI5NTcwMjU3MzYyOTEzNDIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-20\",\n            \"systemId\": \"f1bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.66Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQwNjM3NTE5MDA3MDQ3MzgzMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-21\",\n            \"systemId\": \"f9bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.69Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTMyNDYxMTMzMDE2NjYzNTIxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-22\",\n            \"systemId\": \"01bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.723Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTUwNTEyOTkwNzIzMjA3NjExOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-23\",\n            \"systemId\": \"09bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.753Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzUyNTExMzc5MTYyOTgwNjYxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-24\",\n            \"systemId\": \"11bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjMzNDYzNzE2NTEyMDc2NDQxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-25\",\n            \"systemId\": \"19bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.77Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTA4NTg4NzgzNDgxMTkyMDUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-26\",\n            \"systemId\": \"21bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.8Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM1Njk1MjE5ODQ3MDE1MDIyMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-27\",\n            \"systemId\": \"29bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTcyMTM0NjYwMTI3OTEyODU1MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-28\",\n            \"systemId\": \"31bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.83Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk1MzkzNjEzNzIwOTU3NDI0MTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-29\",\n            \"systemId\": \"39bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.847Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkyODI1ODE0MTk2Mzg3MDAxMTswMDsn\\\"\",\n            \"planningDate\": \"2030-12-30\",\n            \"systemId\": \"41bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.877Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMTYzNDg0MDczODA4NTA3NTUxOzAwOyc=\\\"\",\n            \"planningDate\": \"2030-12-31\",\n            \"systemId\": \"49bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 15,\n            \"capacityPax\": 38,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.893Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        }\n    ]\n}"},{"id":"f6aee3c2-3b4a-4dcb-99bf-95e91716dd7e","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/plannings"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"935b3d14-c3d3-477a-9047-1e17e3d4324f","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/plannings"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"},{"id":"6aa762b3-8879-4acf-a434-148a02100762","name":"Filter by planningDate","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/plannings?$filter=planningDate eq 2021-08-31","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","plannings"],"query":[{"key":"$filter","value":"planningDate eq 2021-08-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f257ed45-e075-d5b3-1d70-cb2946571161"},{"key":"mise-correlation-id","value":"7a089e6b-6a24-4c15-8bd4-14688b4f2029"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"196094a9-955c-4d08-8435-145b684e78c1"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:19:11 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/plannings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4NzQxMjM4Mjg2NTY1NDg3OTE7MDA7Jw==\\\"\",\n            \"planningDate\": \"2021-08-31\",\n            \"systemId\": \"80c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"bookingGroups\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"detours\": 0,\n            \"adults\": 0,\n            \"adultsExtraBed\": 0,\n            \"totalChildren\": 0,\n            \"babies\": 0,\n            \"lateCheckIn\": 0,\n            \"pax\": 0,\n            \"paxExclBabies\": 0,\n            \"paxExclBabiesHD\": 0,\n            \"paxExclBabiesMP\": 0,\n            \"paxExclBabiesPC\": 0,\n            \"paxExclBabiesSS\": 0,\n            \"paxExclBabiesTI\": 0,\n            \"paxExtraBookedRoom\": 0,\n            \"paxHD\": 0,\n            \"paxMP\": 0,\n            \"paxPC\": 0,\n            \"paxSS\": 0,\n            \"paxTI\": 0,\n            \"blocked\": 0,\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.313Z\",\n            \"allotmentFilter\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"customerFilter\": \"\",\n            \"roomClassFilter\": \"\",\n            \"roomTypeFilter\": \"\",\n            \"statusFilter\": \"\"\n        }\n    ]\n}"}],"_postman_id":"0cdc7848-3ba9-4980-90bc-e60c35f72e53"},{"name":"planningRoomTypes","id":"ee13a496-343d-4a6b-bd0c-0b449d16fec1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes","description":"<p>System table: Planning By Room Type HTL<br />Page in Business Central: Planning by Room Type HTL</p>\n<p>Return the list of plannings.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>planningByRoomTypeDate</td>\n<td>Date</td>\n<td>Specifies the date.</td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of room.</td>\n</tr>\n<tr>\n<td>capacity</td>\n<td>Decimal</td>\n<td>Specifies the actual capacity of the hotel defined in the hotel capabilities.</td>\n</tr>\n<tr>\n<td>capacityPax</td>\n<td>Decimal</td>\n<td>Specifies the maximum capacity number of people in this type of room.</td>\n</tr>\n<tr>\n<td>bookingsBookedRoom</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings for that day according to the type of room booked in the booking.</td>\n</tr>\n<tr>\n<td>bookingsBookedExclPlanning</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings whose type of room booked is a room excluded from the planning.</td>\n</tr>\n<tr>\n<td>bookingsAssignedRoom</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings for that day according to the type of room assigned in the booking.</td>\n</tr>\n<tr>\n<td>bookingsAssigExclPlanning</td>\n<td>Decimal</td>\n<td>Specifies the booking number whose assigned room type is a room excluded from the planning.</td>\n</tr>\n<tr>\n<td>blocked</td>\n<td>Decimal</td>\n<td>Specifies the number of locked rooms. Room locked excluded planning not included en Locked rooms.</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Specifies the number of adults with that type of room.</td>\n</tr>\n<tr>\n<td>adultsInExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the total number of adults in extra beds based on the maximum capacity of the room in the hotel for the day.</td>\n</tr>\n<tr>\n<td>totChildren</td>\n<td>Decimal</td>\n<td>Specifies the total number of children with that type of room'.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the number of babies with that type of room.</td>\n</tr>\n<tr>\n<td>totPax</td>\n<td>Decimal</td>\n<td>Specifies the total number of people with that type of room',</td>\n</tr>\n<tr>\n<td>totPaxExclBabies</td>\n<td>Decimal</td>\n<td>Specifies the total number of people excluding babies with that type of room.</td>\n</tr>\n<tr>\n<td>arrivals</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings with arrival that day for that type of room.</td>\n</tr>\n<tr>\n<td>departures</td>\n<td>Decimal</td>\n<td>Specifies the number of outgoing bookings on that day and that have this type of room.</td>\n</tr>\n<tr>\n<td>lateCheckIn</td>\n<td>Decimal</td>\n<td>Specifies the number of bookings in \"Late check in\" for the day.</td>\n</tr>\n<tr>\n<td>guarantee</td>\n<td>Decimal</td>\n<td>Specifies the number of guaranteed bookings that are defined in the allotment.</td>\n</tr>\n<tr>\n<td>pendingGuarantee</td>\n<td>Decimal</td>\n<td>Specifies the number of guaranteed bookings that are pending according to the difference of the allotment and occupancy.</td>\n</tr>\n<tr>\n<td>forecast</td>\n<td>Decimal</td>\n<td>Specifies the forecast introduced for that day and room type.</td>\n</tr>\n<tr>\n<td>pendingForecast</td>\n<td>Decimal</td>\n<td>Specifies the pending forecast according to difference with occupation.</td>\n</tr>\n<tr>\n<td>roomClassFilter</td>\n<td>Option</td>\n<td></td>\n</tr>\n<tr>\n<td>statusFilter</td>\n<td>Enum</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","planningRoomTypes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"6c26c059-b5e6-4941-88a7-e9643170be59","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"1e82b53d-65ca-eeb9-405d-470c74c886e7"},{"key":"mise-correlation-id","value":"cff65018-756d-48ad-8a95-266fbb57850c"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9f8c1394-7d67-4ece-bcf6-4e581970802f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:03:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/planningRoomTypes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgxNjExNDY0MjkwNDAwNDc3MTswMDsn\\\"\",\n            \"systemId\": \"81c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"APT\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:21:09.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzQ0MzY2ODQyMjg4ODY3NDIxOzAwOyc=\\\"\",\n            \"systemId\": \"82c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"DBL\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:22:12.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc1OTczMjI4NTM4MDIxNTc1MTswMDsn\\\"\",\n            \"systemId\": \"83c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"DESVIO\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MjIxODI0MTE5OTU5NzY2ODQxOzAwOyc=\\\"\",\n            \"systemId\": \"84c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"FAM\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:22:47.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODM1NDYxODQyNTI3NjMwODAxOzAwOyc=\\\"\",\n            \"systemId\": \"85c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"IND\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:42:37.557Z\"\n        },\n        {\n            //....\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODAwNDI3NTIxNDI2NTYxODYxOzAwOyc=\\\"\",\n            \"systemId\": \"c29026b4-602f-ed11-97e8-00224882e1a5\",\n            \"planningByRoomTypeDate\": \"2029-06-27\",\n            \"roomType\": \"APT\",\n            \"capacity\": 3,\n            \"capacityPax\": 6,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:21:12.66Z\"\n        }\n    ],\n    \"@odata.nextLink\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/planningRoomTypes?tenant=msweua3554t46208474&aid=FIN&$skiptoken=c29026b4-602f-ed11-97e8-00224882e1a5\"\n}"},{"id":"b93b912d-116c-4537-9b46-8616eee7fa00","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"271b5c29-083a-460e-b7de-6ee1174d4fab","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"},{"id":"22ff3f89-2658-4923-87f4-946305748628","name":"Filter by planningByRoomTypeDate","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes?$filter=planningByRoomTypeDate eq 2021-08-31","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","planningRoomTypes"],"query":[{"key":"$filter","value":"planningByRoomTypeDate eq 2021-08-31"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"20791567-a7b7-9b1f-c5fa-220438ed916b"},{"key":"mise-correlation-id","value":"acd53daf-e0ac-4d64-9a0f-caa44e7de981"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"fa9dc805-1923-4fa8-8bf0-b8e02570f4b7"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:20:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/planningRoomTypes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk4NTg1ODI3OTYxNzg0NTExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"81c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:21:09.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Nzc1NTc2ODY1NDEyNTc0MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:22:12.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MDY0MDkzMDQyMTgxMTg3MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"DESVIO\",\n            \"systemId\": \"83c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjQxNTQ1MTk5NDIyNTk1MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"84c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:22:47.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ5MDEzNjI1ODU4NzM1Njk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"85c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:42:37.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUwNTU2MzQzMDY4OTU0NDMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"86c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-10-06T11:23:42.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5NjM3NTI4MDgxNzg0ODYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\"\n        }\n    ]\n}"},{"id":"03abea0a-e7ef-4ecf-847b-721d9fc8ad14","name":"Filter by roomType","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/planningRoomTypes?$filter=roomType eq 'REAL'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","planningRoomTypes"],"query":[{"key":"$filter","value":"roomType eq 'REAL'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e52d9d18-7930-1bde-2415-29e329d0ca8e"},{"key":"mise-correlation-id","value":"4c5e8b3f-52b4-42bf-84b8-dcf7709ffaf9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d445d405-e28e-43ba-b0f3-d460ee3a7939"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:21:27 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/planningRoomTypes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5NjM3NTI4MDgxNzg0ODYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMTg0MDg1NDI1OTc2MzI4ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYzNTEwNDQwNTg4MTg1ODM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjE4MTQ0NDI0ODQwNDA3NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzQyMjU1NjE4NzEyODQxMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjM0NDU0NjY2NDkyMTc0NjAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzA5ODU0NzM0MTA1NDE5MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgyOTk1MTAwNTY4MjMxMTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTk4NTMyNDg5MTk0NDE0MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYxODg3NTYxMzY4Njk5NzU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM5OTc0NTY4NTU2MDMzNzM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTcxMjU1MjI1NDM5Mjg2NjI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDU0NTcyMjQ2NjIxNDkzMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDkzOTk2NDg4NzU3NjQ3NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDUxMDU1Mzg3NzQ0NTU0ODYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzQxMzAzMTQzMjkzNzU0MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTY0NzY2OTE3NzQyODk4NjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjgzMzkzMzQ0MzQ3NDc3ODE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDMzODU3OTgwNTQyNzQ5MzI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTEyNDkzOTk4ODU0OTU3ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTU1MjE2MDg3MDc2ODg2MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDM4NTczOTEyNTA1NTM4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODg5OTM5MDU4OTU0ODUyODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzk0MTcxMzM3MzcwOTMzNDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQxNDI4MzYzNDU0ODgyNzc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU0ODcxMjU2NDIwMzkwNzA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzUxMDk5Mjg5NjE5MzYwMTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNDgxMDc4MDE4ODE5NjgwOTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjEzNjMwODA0NTkwMDk2NzAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzE5Mzc1MTI2ODAzMjcwNzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTA2ODY4OTQyMDc4MDE2MjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjUwNDg1MDU0MTM3MTAxOTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTQ0Nzg0OTQ4NTM4ODIyODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTYxMzY4MTIxMDU5NDIxODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTY4MDU0MTkzODA0MjI2NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEyODE4Mzc5NzQ0MTkwODI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjUxMjA2NjQ4MTk2MzUzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjUyNTYwMDExMDI1Nzk3NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3MzAwNzk2MTUxNjY2MDg1NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNDc5Nzg5ODM0NTcyNzg5MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2MzI3NzEzNjY3OTcxNDYwMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU3MDQyMjY2MjYwNDgyMTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDY3NzExOTcyODk5MDMwMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjI3NjQ5MzgzNTY5MjYxOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ2MjA0NjU1NDcxMTcyMTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODk0NjUzODE4Mzg1MjM4MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTk2MDM3MDU4NzkyNjU1MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDIyNzY0OTAxNTk3ODk5OTk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDY5MjcwMDE1MDcxMjczNDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUyMTE1Nzc3NTc3OTk3MTk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1MDc0MDU3OTU1MTAwMzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDIyNzcyNTQ1OTA2ODI0MzAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDM5NzE2ODQyMTQwNjUwOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDkxMDg3NzkxMzQ2MDM3MDQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0NTAxMjMyNDkxMDk2NTg5OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0MjE2OTkyMTA1MTYyNzQxMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAxMjE2Mjc5ODM2NjIzNTk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzA2MjE3NDIwNDc1MTI3NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDc1Mzc4MjczOTAzMTk3MTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjM3MzQ1NzgwMDQzMDUyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzNjEyNDgxODk4NTA2NDY1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI2MjEzMzg5NDE3NzUxNTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTQ0MDA3NDUxMDU4ODkwNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyOTQ1MzYwODEzODg4MzM0MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3ODQ5MTgyMTAxMjM0MzEzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjk1MTkwNTY2ODU5ODM1NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzExMTY2NzI4Mzc5NTU0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzg0NjUzMjM3ODY1MTExMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTc4MTcxMTYzMTk1NTMxMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzM4MTA4NTczODY1NzYzMDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTM4MjAwMDMwNjI4OTE2OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTc3NjA3NjgxNjY3NjgxNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDEyNzUzNDg3NjQxMTU4MDAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1MTExMDIzNDA5NzE2MTQxNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzc0MDE0NTMxMDY3ODE0NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTMwMTgxODQ4MTg0MDgyNTU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgwMzE1Njg3MDY0MTkxOTU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODkzMzI4MTA2MDUwNzk4NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzM4MDI3NDI3MTM2ODYwODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTY3NTgwMzUzMzI5OTE5MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgwNzAyNjU3Mzk5NDg4MjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTg0ODY1NDAzMjEwMjY2NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTUyMDIwNDA4NTYzNjk0OTM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTc1NTY3NTYzMjg0NDE1NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg4OTgwNzQ0MTIxMzc1MjYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTYzOTUxNzY2MDYxOTkzMzM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkxNTc2Njc5OTgwODk3NzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTAxMDkzNzc3MTI0Nzg4NTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODA0NDU1Njk2NTc4MzA1MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzM5NDMyNjk0NTIxNzg5MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjUyMTgyOTYwNjk4MzcwMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUxNzQyMzIwMzcwNTk4OTc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzAzODI3MTI3NjAzMzEyNTM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjU5NzMyOTEyNzY1MDIwOTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDAwNDAzODAwMDQxNjg1MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI1MjcxMjk0MDIwODY5Mjk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk4NTc2NDE3NjQwOTc2NDI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzM2ODIyMjYyMzIzODM2MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzk2Nzg5NTUwNTcyMDQxOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA0MzIyNDA0MTIzNDY3MzY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzY3MTI2NDUxMDQyMjY3NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDEyODI3Mzk2ODExNDc2OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDIyMjc0NzQwMjczMTQxNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTIwMTk0MzY0MTE0OTIzMzQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA4NzEwNDM5NjY2MTgwNzczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU3MDI0NjA1ODIxNDU3OTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDU0MjEyNDM3MzE5Nzk3MDc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM0MzU2MjU3OTc0MjAwOTQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI1NDc3MjI4NDQ4NjE5OTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI0NjI1NDMzMTM3MjU0NjkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc1MDkwMDY5MzMyNTI2MjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY2Nzc5MzczNTUyMjQyNTY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY0NjYxNjE5NzU1NDUxMTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDQ5MzkxNDY4NTg4MjExNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU4NzM5OTcwOTE4OTY1MTUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODMzNzQ2NTgwMzkxNjc4NzE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODkwODA5Mzc1Njc2MDM1MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg2NjMzNTU5NTk1MzY4MDkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAwNjY2OTI3NDcyMDk1NzMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzcyNjc3NjY4Nzk3ODE4MTkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4Nzg0MTYyMTQxNjEzMDMxNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE1NTY4MzUxMTgwMjY1OTIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODQ3NDI4Mzg0NjI3MTMxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2021-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODM4OTEwNDMxNTEzNDc4MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc4MDIxMjk1NDAyMzcxMjc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTMyNDUzODI3MTc4MTU4NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODU4NDg5MDcyNTY0ODA3MDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTY5OTI2OTUwMzU2MDY0NDg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Mjg5MTg1ODE2NzcwMzQ1NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTIzMzY1MTYzNTIyNzU2NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDI4MDExNTI1NDc1NDcxNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM2Nzg1MDQyODkzODU1NTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDUyMTU0MTI5MDE5NTQ3NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQxODUzMTk5MzMzMTMzNjE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgzNTA4OTM4MjAxOTIzNzIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMDY2OTUxMTU1MjgwNzQyMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Mzk2NzkwOTg0NDk3ODI1ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDEyNDExMTcwODE5NTc1NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjQ1MTE2NTc5MDgzNjI3OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Mzk0MzAzMTE0NzU3NjE1NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTEyMTIxMDEzODk5NjA0MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDMxNTI0MTYxMTUyMjMzNDQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODU0Njk1NzMxMjM2NDYyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg0NjE3Nzc3ODEyMjgwOTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTQyODk3MjM1MTUxMDkzODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTM4NDAzNDEyMDg2MzU0NzgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODYyMDAxNTU3Nzk4MjgwMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTc2MzgwMzM1NzEwODU0MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk3NjcxNTIzOTUwMzkxMjU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODc5MDcyMDg3MzQxMzkxODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjUzODIxODYxNTAyMTA4NzQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODkwNDU5NDg4MTc1NTMzMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ5MTY3Mzk1MTAyMTczOTQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDY1MzcwMDk5NjM4Njc3MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:20.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIzNjAxODQwMjg1MTgxNjE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3NjAwNTk3MTI2NDI2NDcxMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY0MDQyOTUxNjE5MDAzMjUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY2NjcxOTMyMDgzNzc5Mjc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjIxNjExMjcwMDU1MTUwMDIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM2NTI5OTIzNjIyNTQ4NzY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5MDkwMjg2NjI0OTc0OTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDU5NDU1NzY5NjMzNjU5ODU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDg3NjkxNzc1NTExMDA0NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQyODQxMDIzODAyNzIzNzMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMzU1NTc1NzY5MzgwMTI5MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDc1NjgzMTgyNjM3MzUzNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODg2NTExOTM1OTgwNjA0NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc1Mzc5MTM0OTk4NDEzNzg5NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQxODI4MzMwMzM4ODc2NDMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjYzMzU0MDg1NjM0ODI0NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTA3Njc5Mzk0NTQyNDEzMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzI3MzYxMDA0NzkyMzc1MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODEwMzcxMTQ2MTcyOTUwNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwOTI0NzQ5OTI0MDg1NTI1MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTIxNjkyNDg4OTU5NzYxNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7c979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzUxMzE3NDUzNTg0NjEwODY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffc979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjMyMDE5NjU2MTI0MTgwODczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTI5NTgwMDI2NjczMzA3ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc0MDQwODc4MDAxNjU1ODY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg3NDE5MDY4MjA5NzMyNDIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE2NDIyMzAxNzUyMjk2NjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzOTYwODQ3OTA3ODQ0NzExMTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODk3MzkwMDUyNTE3NzM1MjY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTU2MTc0MzgyNzEzMjE2NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODg2ODkzNzcwOTgzNDQ4MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyODk2NjkwNDIwMTcxNDkwNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc0MjEwNTk0MDQ4NzA2MTE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjkxMTcxMTgyNTgxMzQ2NjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjAzMTkwMDQwMzUxNzk2ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE0NTMxNTUwNzUyMjY2MjQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDEzODc5MjU3MTI4MjkxMTYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzAyNjE3NDAzOTU2NzUzMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Njg0MzM0NjIyMDgzODYzMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mzg4ODQyMDg0MDUzMzQxMzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDEzNDI5NTc1MzQzMjk4MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjUyMzI2MzcxODc3OTY3NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTYxOTY4Nzg0NTYwMTY1NDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjczNjYwOTA5NjkxODc3MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjIwNTc4ODExOTQ4NTIwNjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTU5MDIxODUyNDM3MzA0OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE5MTMyMzYxNTM2NTMzMjA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc3MjkzNDM0NjMwODU4Mjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzI1Mzc5OTQwMzQ5ODE5MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI5MTc0MTg5NDQwNDA4MDAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE2MjI0Nzc2MTgxOTQxMDM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE1NTE1MTcxNjkxMDAxNDc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDA2MDAwNTU5NDM4MTc2OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7ca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDM0NTkxODMxMzQzMzQyNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffca79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTE2MTY2NDYzMzAxODcxNTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQ5Nzc3NzE5NDI0NTEyMjMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDYzODA4NjkwMjEwMzk2NzUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjI3MjkzNTI2OTYyODY2MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTAxMzA0NTMxNjQyNDUyNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDEzNzU2MTU4NDA5MzUyMTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NTIwNzMzMTIzMjI0MjY3MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg0ODc1NTExODgwNzgwNDYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDE0Mzc2MzIxOTM1NTA0NDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY4MjM4Njg1NzkxMTc1NzkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODgyNDcyMTE2MDY5ODA1NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODc1Mzc2MDcxMTYwNDA5OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE3NzQ0MzE2NTg4OTI0NTQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUxNjc1NTM5Mjk1NTc4NTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk5NTk5NTk5MTgxNTAxMTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTk1NTA4MTQxMzAzNDE0NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2ODQ0ODIzNDc1ODQ3MDA0OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTk0NzE4NDQ0ODk4ODI4NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkyODUyMDU5OTY0NzU4MDE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzUzMTczMDA3OTM2NzY4ODYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjgyNjczODE3OTkxNDkyODA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjExNjM5ODU2MDgxOTcxMjMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQ3OTQ2NDYyMzU1OTMxMjQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDQ2OTg2Nzg2NDY0ODU5NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODkxOTE4NjY4NzI3NjgyODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgzNzg0MjA4Mjg1NjM3MjM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzY3ODQ2MjY2MDg1NzEzNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTA3Mjk1MTU5NTgzMzMxNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzMyMDIzNzA1NTI2MzI5OTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODg0MDYxODg3OTM3MTQwNzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYwMjM1MTQ2NzU2MDgxOTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7cb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMDkwNzI0ODg3NjQzNzk0NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffcb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDk0OTA1MTcwOTUyNTA2MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDEwNTU5NTAyNDMxMjUxOTgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDU5Njg3NDQxMDI2NTAyMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg1NjYwMTExODM5MTgyMDQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzAxNTMzMDAwNjU0NjQzNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMwNzQxNjc3ODIzODk0NDE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ0NzcyNjQ4NjA5Nzc4OTM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ0ODc5NDY0NTMyMTQ3NTQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA1MTQzMTAxNjM3MTkzOTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTY1NjAxMDEwMjE5NjczNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE5NzQzOTY4ODY1ODY3NjE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjE5MDM0MzY0Mzc0OTI4MDU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUxNjEyMjY4ODU4OTQ2Mzg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE0NDcxMzk2MDQ5NDYyOTU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDczNDI0NTg1MDIzNTU0NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDM3NjA2NDc4ODQyMjAzNDg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzIyMDkxMDM2NDgzMDAwNDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUzMTE0NjQ2MjE0NDEzMjQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMwNzE0MzQ4NjgxNzUzODk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTUxNjA4MTYwMTg4MjI5NzYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA4MzkxMDIxNTE3MTM0ODExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDYxOTQ3ODk4OTI0MTA1MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ4MzQ4MTA1MjczMzYwMzgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA4NjY5MDUzMjQ1MzcxMjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMTg1NjMyNTI5NTM0NTU4MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDI5MDYwNTEwMDI5MDI0NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUxMTY2Mjc3MjgzODE0MTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM0Njg2MjIzOTE0MTEwNTg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDkyNDExNjgxODAwNjUxMjIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzM1MDkxNjYwNzg4MDY1NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NTcxMjc4MjM1NDA3OTQyNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7cc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzI1MjMxNzUyMTM4Njg3ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffcc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjg3OTU0NDYwMTIyNzgyMjgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTk4MTI4MzgyOTk4Mjk1NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODI5NTMyODUyNzUwODkwNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzA5MzIxOTE3NzEyNTc4NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTA0OTg4ODY1MTAxNzQ3NTUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjA3NTM5NDk3OTc5OTI2MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM3MTYyNjgzMTMyNTE0NTc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzIyMTQ1NzIxNDgxNjkyMjY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTk5MTU3MTQ0MDQ5MDY5NDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM3MDg5NjU1OTA0OTIyMzk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEzMjI4ODkxMzM5NzQ4OTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM3Mjg4NTUyNDI4MDM1OTgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI1MzA3MDUxNDY3MTMzNjcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODM2MTAzMTUzODE4ODQ0ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4MTAzNzI0MTExMDU0Mjc0NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzg3MzM1NjM1NDE0NjY5NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDUzMTY4MTM4Njg4NjgyODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTEzOTc1MDIxMTIwNDU3NzY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Nzc1MDg4NTc3NDkwNzc4ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTE5ODg0NTUzOTkzOTQ1NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzMzMjcxODAwMDQwNjUzNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjE4Nzg5NTAwMzQ2OTkxOTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ3OTI3MzA5MjUxNjM0OTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE1OTAyNDE2MjE5MjI4MjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA0ODYzNTExODE1OTYxNDc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM3ODA3OTAyMTk0NzQwOTU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDM4Nzk5MTgwNDE4NjY4MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjU3NTE5MTM2MzgwNzM3NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1OTc5MjMwNTg5ODE2NTc0MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzUyNjAwOTU5MjA4OTk4MDgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDE0OTI5MzEzOTI0ODU0MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7cd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYwMTUxNTgwOTk4OTcwMjI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffcd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODE0Njc4NDc2MzQ3Mjg1NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mzg1NTM4MzMyMjk0MjkyMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTYxMTIxNDE2NjcwMjIzNjY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE3MTU5MzQyMjQwNjUxODQyNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTkzOTUwNTIwNjcyMTMwNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Nzg3Mjg4Njg0NDQ5MTQyNTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDIyNjI3MDUwNzM1MzQzNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ5ODQ4MjIxOTE2MzQyNTI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM4MjM3ODExODIwMjI1NTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI0MjkzNTQwNTc4MTg0NTQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDEwNTk2NDY4NjcwNjI5NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzIzMjg3MDI4MTU1MDAzOTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDI0MDk0MzM2MTM1OTc4MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjA0NTQ4ODU4OTk2MjIzOTQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDE0MDI5MjExOTA0MTcxODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk5NTYxNTk3MTkzODk5MTQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ5MDI5NzQwOTM3NjU2MjA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjIzNjc1MjA5Njk3OTYzMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjEyNTU3NDc1NDAyNjUzMjUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY0ODQxNzg0MzIyNzU3MDIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODgyNjQ1NzI1ODMxNjk5NjIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzMwMjk3NzU2NjI2Nzk1NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTU1OTczNTkxMDM0NzQwMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTU1OTE5OTQ5MjA5NTUwNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODUwODU5MzUyNjgzNDUwOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzE2NDE2Mzc2MjkzMDY5NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg0NDU3NzI3MTg1OTg0NDQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjU0OTA2MDc2MjkyMDg5MTI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ0NjM5Nzc1NjU4OTMwMjIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODMzNTYxMjc4NzEyNzM0NjAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3MjQ5NTgzMTE5Njk0ODE5MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7ce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM3NjMxMTI0NzI2NTY1NDM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffce79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI0MTk1NDU1NzE0NTYyNzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Nzk2MzI5NDUzMzM0NjgxNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY1NzY5MjYwNDU1NzE4NzQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE0MzIxMDMwNDg2MzUyNTU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjUwNzc3NTA3NDI2NTUwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTgwMjI4NzkxMDI1Mzg2MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Njg1MTgyNjcyODM0NDEzNzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg0NzY4MDkzNTQxNDYyMDg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyMzUwNDMzOTY1MjUwMjQyOTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTg4MTI1MjgyNTk0MzM1NzM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY1MjQ2Nzc0NTc0OTQ4MTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA3Nzc5NTg5NjEwOTM0OTUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njc4NjE4MDQ0OTg2Mzk0MTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU2MjUwMTI5MzQwNTMxODY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDYwMTUzNjk4OTkyMzIyNTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDI1OTg1NTgxMjI5OTQ1MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ4NjA4OTQ0OTE1OTMwNzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzgwNTE2ODExMTIwODQ5OTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NzE0MDUyNjY0ODgyMDQ0ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjIzNjQ3ODcwNjQwNDcxNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzAzMzg3NTEwNjY0NzA3OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5MDE5MzA2MjYwNTQxNzcwMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTkyNDU2NDY2NjcxNzU5MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjU2ODI0NTMwNDM3MjcxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODU5NDYwOTAxNDg3NzM1MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA3MjI4NDc3Nzg4MjM1Nzg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTc4NzAyMDUwMDU4ODY5NjAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk3NjMwMjY5ODAzNjY5MDk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE1NDQzNjgzNTk1NTI0NTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzcyMDY4NDQ4Nzk5MzI3MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTg0MTc1NjM3MDMyNDY5NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7cf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQxMjI2OTcxOTEzMTg3MDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffcf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDI2NTQ3OTUxMzAxMzUwODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzExMzEyNzgxMzg0NjM2MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAwNDIyMDU2ODgyMzI1NzIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA3NTIyMzU4NzA4NTU2NzcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY0MzA1MjIwMDM3NDYxODIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyODcxMzczNTc0MjQzNTQ5NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgwODI0NDcwODIyNjU5MDcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDYxNTAxOTE4NjU0NDM3MjA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxMDc1Nzg5NDI1MTc2NzczMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDI3MTUxNTMwMzYyMzc1NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAyNDE4MjQ1MTAzOTk2NTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Nzk3MDIxNTQ0MjI1MzIwNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTUzMDUzODExOTcxMjU3MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzI3MDk0Njk0MjI4ODE2OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTYxOTg3NzEwMTQ4Mjc3NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQxMjk5NTkxMTgwMzgyODAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyMzE0NzUwNDM1MDkxMzk2MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMzNjQ2MzUxMTM3NjAyNTgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Njg0ODI3MjkyNzQ1MzU3OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDExMTMzMzI2MTI2ODk5OTExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTU4NDM5OTIxOTU5MTMyNDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQzMjkyMzQ4MDY5NTY5NDQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjU4MzkwNTMxMDM4Nzk5MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjM3NjAxMjUyMzIwMDUyMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzc2MzUwNzQzMTkyMzM5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEzODIxODg0MjI0OTM5ODA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1Mjg3MzU1NDQwMzA2OTU5NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA2ODc0ODEyNjQzOTY4Mzg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDg0NzQ0MzU5NjAwMTA5NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDIwNzcyNDg2ODc3MjcxNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDAyMzc2NjgzNTA3MzIzMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDkyMTI2NTM5NDU3ODkyODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd079b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwMDk2NjM3Mjg2MTQ0Nzg3MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODU5NjIwODAwOTM2MzUwOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTExNDU0Mjk1OTgyMTEzNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUzODM3NDI2NDE1MzAyMjgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMxMjgxMTA3MTgzOTg3MTcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTA1MDYwODkyNDk4ODk1OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzIwODY1NDEwOTYzNzQ0MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg1OTQ0MzE5MzgyMTAwMjA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMzU2Mjg5NzY5Mjc4OTgzMTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTEyNzY1NTM2NTA3OTU5NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NzE0MzQ4NDI1MDY3OTU2MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Mjk1NTgwMjMxNjI3NjYzMzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkyNzE1MjI1MTc4MDUyNDQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MDQyNDc0NzE1MTg1NDI2MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk3MDg5MzkwNzcxODk1ODIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk5ODc5NzAwNzUxNzYwNTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDU4NjkyMDkxMzgyMTI4MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIxOTY4MDYzMTM4NjAzODE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTMzMjM2NjU0OTkzOTU3MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTk3NjA0NzE4NzU5NDY5NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTMzNzQ2MzMzNTc4MzM0NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQyMjQ4NjQwMDAzNzI2OTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY4Mjc2MTIwODE0MTc4NzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTQwNTIxMDc3NTA5NTAxNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY4MjAyOTY2NTE4OTU3NTE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDQwMzQzOTA3MzI5MjkzMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg4NzI1ODg1MzMyMzg0ODkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQyMjIzNTg1MTI2NzMzMjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:21.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjcyMzYyNTIwOTcxMTIxNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYzODE2MzY5NjM5OTczNTc1MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODU4NTEwNTkxNDYxODI0MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTgzMDY4MjA1MTczODA3MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd179b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg1NzMxNjI5NTc4NDMxODc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTkyODI4MTE5MTQwMzI4NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODk3NzgyMDAwOTQ5MzU2MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc1ODU3MjA0MzUwMjIxNzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxMzM3NTI0MTcwODEzNjg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTEyODk2ODExMTAwNzM3OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjc0Njg1NzY1MzMwNTA2NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzAxMzk2OTQ5NDM2NTc2MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzg0Mzk5NzExMDA2MTEwMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEzMzgxNzAwNzE5MTY0NjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTIwNzY2MDQ2MTQ3MDk2NjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODUxODUxNjg0NjYzODc4NjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI4NzU2NjM4NTQxNTE4NTc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODIxMTYyMjA0NTQ5NTAyMzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI5NzY3OTk1NjY5MzAxNDI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjMwODM5NzEyMjAzODg4NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYzNzY2MjM2NDYyOTg1MDYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjQ1MTE1MTQxNjc0NTIzNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM3MzM3OTYwMTE4NjkzMzA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY2MjY4NDEwNjc3MDc2MjQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc2MTgzNDg4NzkxNjQ0Nzk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzIyMzA3MTIzOTk5MjA1OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTE3NjQ4MzU4MTg4NDk4MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg5ODU5NTY5Mzk1NDQ4MTk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTExOTgyOTQwMDAxMTkwMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDY2MTU0NTAxNTQyNDYyMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg1NjkwOTcyNTE4MzE4NDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU2NTg2NzM4NzYwNzQyMDU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDc5NDQwOTIzNDU3NTEzNDc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ4ODA4MzcyNjMxMzYyMzk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTgzNjExNjQyNTQ2Mjk1NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ2NzY3ODgzMzY1NjAzNzc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd279b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYwNTUwNjcyMjk4NzIyMDg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTI0ODcwNTI2NzY3MDc5NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTg4NDA4NDU2NDE2ODk1NjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzM5NjExMTU4MzEzNzg0NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY2NDAyOTg3MjA0MjUzMDUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAzNzYyNTQwMzkzMzM0OTk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDUzNDI0NDcyOTgxMTQxMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjIyNTcxNjg1MzUxODQ3OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDIzODYzMzIyOTI2Mjc0ODAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIwNTAwOTU0MDAwNTQ4ODU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg4NDU4MTYyOTYyOTQ1ODc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODIzNDcwMDIwNDg0OTgzNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTgzNjg5OTEwNjMwMjg3NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkxMDI2NDM1NDI0Mzg2MTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjQzMTE3NjU5MzcxMjMyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY4NTEzNDEwNDEzNjgzNDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjI0NTE2MDE5NDY3MjgwNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjY0NjAxNzc1ODQ2MDU2NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTMwNjQyNjI5NjkxMDg1NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTc4NTMxMTgzMTE1NzAzNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU1OTc4NDk2OTI2NTE5MDU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIyNTU2MDAzNzY4NTMzNjA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMzNTM2ODQxODM4OTcxNTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjE0MDY3MjU5Mjk4NzcwMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2022-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY1NDIwODE4OTU5NjQwNDUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTM3ODg0Njc2NTYxNzAyMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTYzMjgwNzc0Mzc3NDExNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2Mjc3OTY3MDcyMTQ2Mjk4MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDcxNzAxMTYxMzUyNTk5MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzYzMjgxNjM5MDE4NjYwNDY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ4NDYwMjkxNjA5NDIyODEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTA2ODAzOTEwODQxMzg5MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd379b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMTY0NTk2OTAwNDE4MjQ1MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU4NjIwOTE5OTA1NTAzMzE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzQ0NDQ0Mjk2MzY3NDYxNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTk5MzE1NTQzMDQ4MzczMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA3NDI2NDIzMTEwNzQyMDUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzEzNDc3ODA4MjQ0MDg5NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3NDIyMDc5ODAxMzI0OTIzNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwODIyNzYwNzAwODY0MzYzMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzA0NDI0MjIzNTQ2MDUzNjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjUyODY3MTQ5NzQyNjc1MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzgzMzk1MDE2NzA0MjA5ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDU4Mzk5NTUwOTMxMDYwMDUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDQyNjAyNDI5MzA5NjE4MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMDQ3MzA4Mzg4NzMwMTQ1MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIxMjc5NDY3MzE5MTYxOTM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUyNzQ4MDk3MDk2MDUwNTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTEyMDkwMDI4MjgzODY1NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDI3MjA5NDIzMDA5NDU0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTMyMTYzMzA0ODE4NDgxNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTE1NjMwMTUyNjUyMzk3NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ4NzAxMjYyMjg1ODc4ODIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4NTc3Mzc4MzA1ODc4Mzk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTcyNzc5NzQ0OTc5NDU1NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzQxMTgxNDY2OTM4MTUxMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjI1NTcyODg2NDcyMzgwMDU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg1Njg2NDE4Mjc0MjcxNzMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjM3NDAzNjA0NDQ0NzcyOTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE0MjIxODU4NjI3MDU2MzI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc3MTMwODUwMTUyNjY4MjA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjEwMzA1OTE0Nzg3NDcwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM5ODIxMTAwOTkzMzk3NDczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTgyODA3Njc5NDY1MjU0OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd479b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTMzMjk3Nzg0Nzk1NTk0Mzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMwNjM1NzIxNTk3MDg4MjM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzEyMjg0OTY5MDc1NTc3MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA4NzkwNDM3MDIzNTk3NTM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMyNjIyODA1ODEwMTAwMDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkwMTk4MTU4MzkzNDg1OTY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjYyNjE0MzI3MjIxNzU1MzcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg1MTAzNzIxMzg5MTAxMzc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE2MDI4NzExOTc2ODY2Mzk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzA0NTg3MzY1MzY2ODM5NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjY4OTg1MzA2NzEwMzI1OTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY1OTcxNDQ4MzM3MzYyMDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE5OTY0MzY3MzM0NDMyNzA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc3NjY2ODU3MTQ5MzExNjI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQyNzcwOTYwNjk4ODcyODIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMzMjUyNDU4ODgxNDUxODUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk0Nzk0OTM4MzAzOTM3MTkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzg2OTQ2Nzk2MzAwMTU5OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY1NjU5NzE2OTc3OTczNTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTI1NDI0Njk0NzQ1NjkzMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNDg1MTk5MjM0NTI0MjU2NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDU0ODgxMjcyMzA3NDg5NjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3Nzk3NjM2ODA4NzU1NTgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk4MTE4NTg0NzgwNzY2NDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ5NTczMzI0NTU5MzMxMzc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDU4NTA2OTQ4OTMzNDc3MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTAwNDIyMTU4ODk4MDA0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk2OTEzOTAyNjUwNzQ4OTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ3Njc3ODA4OTg1MDA2OTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDIxMDc4MzM1NDQ4MjQ0NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwNjUzMTg5ODM1Nzg2MDg1NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQyMzczMjk3NTQ3MTk3MDA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd579b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjY1Nzc1MzU0MDIyNTUyODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTQwMTI5MjYyNjc5NTYyMDAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc1MzIxMDI2NTA4MjI5MjI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjExMjQ4NjE2MTUwOTkwMjc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk1NDgzODU1Njg0NDMwMDI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTk3NTMzMzAwMzM2NzkzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjE0MDY2NzE4MTE2MjYzODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYwMTA5ODU2NDU0Nzg1MjU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzUxNDM0MTE4ODMyMDc5ODU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDU4NjQxNDMzOTE4OTc0MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgxNDI1NjQwMjQzNzM1MjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAxMzc2ODU1MTkyNTc1NDg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyMDc3MDc4NTY3MTQ0ODQyMzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTkyMjIxODM2NjcyMzY3ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTkxNDI3NTM1Nzc3MjY3MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNDkwNTEzODgyMjU4NDA3MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3Njc2ODU5NTU0MDY2NDk3ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTQ0Mzk2MDE2NTQ4MTc5ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Njg0NzA1NzI0NDA3MDI1MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyMDk3Mzk4NjQ2ODQ5OTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDk3MTU5NzY5NTc1Mzk1NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQyODk3OTcxMjExNjc1NzA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzczNzY4NDA3ODcwMzAxNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI1MzIwMTU5NzUxMTAzNDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE0OTA4OTI1NzExMTQyMjI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNzQ2NjcwNzE4MjEyOTk4ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwNjcxMzUwNzYyNjM5ODcyNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjAwNjMwNjAwODY4ODk2MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTg0NDkzMzc0MTMyMTAwNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTI4NzkzNjE5NzMwMjc2MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTQ1NjYyMzAyNDUzMjMwNzQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODYzNDA4MzE1NTAxNzUzNTg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd679b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY1MTE5NDU0MTE2Njg1OTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI1MjMyOTg1OTE4NTc3NTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI3MTE4ODcxNTEzMTA4MjI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDMwNjcyNDU1NTk3NDk3NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcyMzUwNTc3NzcxNzQyNzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU5MTEzNjk2MzAyODIzNzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI2MTI4MzA4NzA3NTg1MTg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjEzODkzMTU4MTQwMjEwMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTUzODMxMTg3MTg2ODk1NjIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTY3NDM3OTY5MTg2NjQ4MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzI1NDM3NTEwNTU2MTY2MDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc0OTMxODc3MTQ0NDM1NDkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI4NTA3OTA5MDMzODgwMzk0ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDQyMDU0OTA1NDYzODU5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzIxNjI2OTk1MDg3ODMwMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzM3Mjk3OTkzMDM4NDAwMjQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Mzk2NDI1NDUyOTM4MTQ4MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTU5OTMzNTA1MDA5OTkwMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NzIxNzIyNDU5MjM5NzU4NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTE1MDYwNjIzMDE2NzcwODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgzOTQ3OTMzNjc0NTUxNjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI5NTMxNzU1OTA4NzYwMDE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODQ1NDk4NTgyODg5NTQxNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDMxNTA2MDQ1NjU4NzE3ODQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjU3OTUyNjI4MDU3OTEyMTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE4OTMyNzIyMDIzMjUzMzE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI2NjkxODE1MzM5MzgxNDUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzgwMzM1Mjc3MDE4NDk2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDA4ODc3MTIzOTg2MjEwNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY1OTAyODI3MDIxMDE3ODMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ0NjE5OTAxNjYyNTAwNDE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYwNDE1Mjg1MTcwMDEyNDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd779b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzI1ODMyNzIxNDU1MTU2ODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUxNzA5NjcyMzUzMDk3NzI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY1MTEyOTcyNzc1Njc2NzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3OTYzNDM1NjE0Mzg1NTQwNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI0MTQ4NDIyNzc2NjIxNzA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM1MDUzMTM2NTIzNjIzOTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzE1Mzc0NjU2OTQ2NDY1ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM1NjQyMjA2NzYxMzEzNDI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTM2NjM2MjYxMTI5ODcwMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg3ODQzMDIzNzUzNTk5MjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODUyNjk5NDk0ODIyNTc1MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM0NzY0MzE2MDcwNTI2OTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzE1OTE3MTI0MzYxMDYwMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTA4NTk5OTQ2NDk5MTgzMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTgyNDQzNDAwNzc4NTAzMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTg4MjMyMjUzODk5OTYwNzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk1MzYzODk1NDE2NjcxMTEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQyMTE3MDM3MTUyNzAwMDMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE4Mjk1OTMyNTc1Njc2ODg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQxMTEwNTI0NzI5NTE5NDA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODMzMjc1NDY2MTY3MDEwNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI0NjcyMTY4NTgxMjc1MzgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTUxNjc1NTY3NjIxNzgxMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NjgxMTI2ODUxMjIwNjE3MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2NTg4MjY3ODA0NTI3NjQxNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODI2MDY5NjQ0NzIwMzM1OTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODE3NjY3NDc1MTg5MTQ1MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjUyNTcwNDgyMzE2NzUzMjExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTU3MzAxMDA3NjE1NzA0NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI0ODEzOTIwNjY4NDI2MjIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU2NTU4NzE3NTg1Mjg3MjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ4OTYwOTk2NDE1MjMyOTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd879b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc0NzQwMjk1MzcyOTE4NTIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDU2NTYzOTUwODAxMjA0MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ3MjI2MjYwMTQyNDEwNDc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNTgxOTgyMzk0ODE3MDgxMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjY0OTg1MTU2Mzg2NjE1MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMzM5MjI0NTM2MDk1MjI0MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NDM0MzQyMDM5OTM2NDA5NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDA1NjIzMjc1MzQxNzI1MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTI5NTIzNDIzMTMwOTA1Nzk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ2NzA1ODM0OTY2NDE2Nzc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDc2MTM1MzY0NzEyMTYzNTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM2NTM1MDM5NTI1MDIwNzMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExOTA0NTQ1MjM2NDg5MjM1NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTY3MTU4MTUwMzM5MTE0NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQwMzEzOTUwOTM3NjU2MzI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTIyMjg1MjY4MzQ1ODk1MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDkwNzQ2MzA2MDkzMTAzOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjk5ODc3NTgzMzc5OTQ2MjYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc1NzAxMDkzMTExMTg5MTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM0ODAyMzY1NjcyMzA2NjQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTMyMzMxNzgwMzUzMDExNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjM1NTI1MDYwNjQ2NjgwMTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NjUwMzMzMTcyMzMyNzMyMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDM4NDc3NTI2MTc3NjIwMTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMTIwMzQ3NzQ4MTEzMjA4NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ4ODYyOTM4OTg0OTkyNDE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI5NTAwNzk0MjczODQxNjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM0OTA3MDQ4MTg3NDQyNTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3NjUwNjY3MTUwMzQ4NTA5NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM2MDI3MDU1NjQyMjE5NDQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDM5MzE4OTYyMzEzOTcxMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7d979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjUwNTE5NjcwMTc4MDc5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffd979b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM5OTQ5OTc2NzA5NDk1Njc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg4MjY0MTQyODY0NzcyODIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTA4MTA4NDc4OTkwODMzMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQwMTM5MTg0NzA2NjczMjczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDQ4NDk4NTA3NzU2ODY2MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk5NjQ1NTMyODE5NDA0NjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzQ0ODE5MTA5NTYzMzc4MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDg2MzE3MjAyNDAxNjYzMDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjg5ODMzMTMyNTA1Mjc0NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEwNjAzMzU3NjM5OTQxMjAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM3NTczNDM1MDA4MDI4NTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU1NjgxMDk2NjAzOTQ4NTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNzU1NzUwMDA2ODU4MjQzNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODc0NTc4OTg1MjI1NTc2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg3MTYwOTkwNTkwMzE2NTc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjg0MjU2NDkyODc5OTYyNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTAwNDM3NTAzMTQ5MDgxNTg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0Mzk3Nzc4MzI0NDE1NjI1MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk2MDg4NTE4MzI0Mzc5ODI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjYyNTI1MzI0NzAwOTMxMDg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:22.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDYzMjA3MDgxMzUwNjI0MzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzcxMTUxNTE0NDgyNzMwOTQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTM2OTgyMTk1MTcwNDE0MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODEwODkwMDg0MTE0Mjc5NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjU0OTQyNDA3MzIzOTU0ODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODU3MzY3MzU5OTg4NzYzNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI2OTQ3NDU0ODIyMTkwNjM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk5NDAzMjE2MTkzMzg4OTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE3MjE2NjI5OTg1MjQ0MzgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDM5MTQwNzk2MjExNDMzNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3Nzg4Njg0Mjc2Njc5MTg0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7da79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI0MDU3MjAzNzM4Nzg4MzQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffda79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg4MTg4NTUxNjYyMzg0NDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODQ3MzM3NDk3NjQ1OTU4MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDg2OTc1MDIxMDUwODYwNDY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgyOTIyOTQ0MTU4Mzk5Nzc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMwODk2OTA4MTYwODIzNDE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzAyMDM0OTY1MjMzNjYyODQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTc0NDQyMDY5MDUwNjEwODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Njg5NTczNzE3MTg2MjM3OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY5MDAzNTMwOTgwOTM5MTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg2NTU0ODcwMDg1ODkzODc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0MTYzNzk2NDE2MjE4NTAyMzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTk3NzcyMzI3NzU0NTc0MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDk2Mjg1NTY1NTY2MDY5NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTUxMjI3NjYzNzU1MjI2MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjg1MDA2NDk4NDM5NTY4MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5Mjg5NTk5MDExOTA1ODc4MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgxNjkzNDgzMjg2NTkxNzY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTk0NzczNjYyMDgxMzAxNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjA0NDQ5MTQ5MDU5NTM0ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYzMDk1NTExNzU4MzE3NjAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5ODc4MzczMDg3MjIyNjUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA3MDE3Mzk4ODY4MjgwNTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzMzNzY4NDkxMDE4NDUwODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU1OTM5NDkwMDQ4ODk0MzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAzOTEzNDU0MDUxMzE4MDMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ1MjY2MDY4NjU0MzEyNTUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU2MDg4Mzg2MjUwMTE4MzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgwMTE2MzY5Mjc4MjA1NDgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU1MDIxODcwODI4Mzg0NjQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzYyODY1Mjk1MjYwNjQzNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjcxNjkyMDU0Mzg2Mzk0NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7db79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ1MzA4NDc0MDUxOTExODcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffdb79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc5OTcwMTA1MjA5MjQ2NzQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU3NjA5NDAwMjE5NTE2MjkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5MjQ0NTc3ODM1NjQ0OTQ5OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTM0MzUzMDIxMTczNTAzNzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDU3OTI4NDkwMzQzNjMyNzAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzMxNzQxOTQwNDY2NjUzNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQyMzc3MDE2ODg1MjEyNjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjI0NDc1MjcxNzYxMzU0NTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYyNTQ4NjY1MzY4NTA4OTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk0MDE3Mjk1MTQ1Mzk3NjI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzA4NzEzNTczMzk1OTA4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc0OTg1MDQ1OTEwODM2MjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExMDQxMTM5NTExODEyMDc1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzI2NzU4MTI0Nzg2MDM0ODQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDM1MjQyMzEwNzQ5MTMyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzE1MTIwODUwNzU2NjA2MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTgxODMyOTEzMDgzNzY3NDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAyMjkxODg3OTIzNjQ1MTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY5MzA2NTAwMzI4NDA2NjIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc5Mjc4ODg5MzA5OTM5NjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzc2MjE3NDU3Njc2MTkzNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjc0MzI3OTkyNzU2MjM5NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUwMDAwMzgyNzE2NDE4NDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjExODgxMzI1ODE3MjAzOTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQwMjY5NTU3ODc5NDcyMTY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTU4NTA0Mjg2NTU2MTU2MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkxNDg2NDc0NTQ4NjU0NTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE1OTkzNTUyNzczMjYwNjA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjgzMTc0NTQyMzYyOTMyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzU2NDQ0ODg3OTcyNjA3ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDI4NDEyNzUwMDkwMDkzNjc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7dc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc3MzU0NTg2NjA4Njc2MzA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffdc79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTAwOTU0MzcxMTg2NDQ1MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzQ2MDI1MTUzNDMyNTA1NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTYwNjUwODc0NTYwMTg2MzM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU1ODAzOTUyODg0ODk1ODAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE3MTQyNjc3NDg5NTY2NjEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTE5NzQxMTMxMzI3NTQ2NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4OTExMzM4MTA3Mjg4Njk5NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIwNTA1MjkyODkyNDc0ODQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Nzg4NDgxNDkzNTAxNTQ1NTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ5NzQzOTE1NTkyNTc4MTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0MzY5MDA2NTU0NTA5NTE0NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI5ODY3NTM1MDUyMTQxMjk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODMyODcwNDU1NzMwNDEyNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjIzOTE5OTU4MzY4MTQ1MzMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Njc3MzU1NzIxMTQ2MjExOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTIyNDI2NTAzMzkyMjcyMzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAyNTE5Njc1MjE1ODcxMDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY2OTM4Nzk3NTM1MTYyMjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQyNjE3NzE5MzU1MTM2MjQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzY4NzYyOTE0NjM4NTkyNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDE3Mzc0MjUyOTI2MDUyNjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE4NDM0NjY4Njg2OTQ0OTQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTQ4MzEwNDE5NTI2NTI4MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTYxMzkxMjE1MTg5NzMyODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTM3NjQ1MjY1MzA5MTkxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTU3NjExODY0OTgwNjkyODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc0OTY1OTY0MDcyNTY0MzQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzI0MjM1MzQ4Mzk1NzI5NDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzExMzYxMjQzMjA0MjMyMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk1OTE1MDAyODY3ODMyODcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDcwODI1OTY0NDg3MTUxNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7dd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk0MTA0MTk3MjYxNjM2ODQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffdd79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg2OTMzMDAzNjc2OTE5ODc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTY5MTAwODU0NTgwOTYyODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDAwNTA1MzI0MzMzNTU3NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjcwOTU3ODk4NzY0Njc1MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzcwMTA4Njc5OTEwMzYwODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzEyMTU0MzI3ODAxNzIyMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzc2NTcxODE2NTA0Njg2MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"37de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMjA4MjgyNzM2NjQwNzg0NTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg5MTI4NTQ5ODIxMDMxODg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"47de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzI5MDY4OTE1MTgwMjE4NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY1NjU0MjQ0NDY2MTI5NDcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"57de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjY5NTAwNTAzMjUwOTU1NjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDU3NTE5MDAyMjkwMDUzMzYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"67de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTc3OTY1MjkzOTM0MjM0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTYzMjg5NDYwMTYyOTYwODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"77de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjA4MzYwMjQyNDA5MDIxMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQyNDcyMjcyMDAxMzMzNTkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"87de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDcwNDYwMTI2MDAyMDgwOTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0MzY3OTc2Njk5NDAyNDM3NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"97de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg1MjU1Mjc2MzQ2NzY0MDQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9fde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjcwNzM1NTk2MTY3MzU2MDEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzcxMjAwMzQxNzA2ODc5MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"afde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcyNDA1NTY2MzM3MzAxMjkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE5MzIwMDI0NzI4MTk4MDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bfde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjkxMjg2NjU2MjE4MTA5MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDMwNjAxODc1OTQ5MDAwMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cfde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM3NzA5ODM5ODc0NzMzNDU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjUyNTI2NzM4MzAwMDQ5NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dfde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTYzNzA3OTQwMzkyMTY2NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTU0NTMxODY3MTMzNTQxNzI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"efde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDYxNDcxMTkyNTE1OTk3ODc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f7de79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU5NTQ0MzA5NzA1MDA4MTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ffde79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzkyODMwMzcyODA0NTg2MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"07df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU4NDkyMTA1OTA1MjQ2MjU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0fdf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTc1MTIyMTcyMDM5MzE1NDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"17df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU2MDQzMDIzMzIxNDI3MTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1fdf79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ4MDM5ODc0NjQ4ODI1OTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2023-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"27df79b2-2729-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-08-31T12:23:23.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE2MjI1NjkyNjM2ODQ5ODQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzEwOTczNDI5NzQ3MTc1MTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDcxMzQyMjIzMTg2NjgyOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYzODI5MDY4NjIyMTY0ODQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjkxNjk4MDIxNDUzMjY3OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzgxNDIxODczNjg0MjAwMjIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc4NjA5NzA1MTgyNTM5Mzg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyMzkxOTc5MzY2NzM1MDk5MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTU2MjAwNTExOTcyNTk5NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTY2NDM5NTY1NTQ4ODE1ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTMxNzA5Njg2MTM0NDA5MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkyMjk0MDkwNjg4MTkyOTk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9ec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjQ2ODQzMzE2Njg5NTIzODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzUxMzUwNzc4NjU5MDAxODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3NTMxMzI3NjM0NTg3NDU3NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg4NTI3MzQ2ODczMjI5ODE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzEyNDE5NDUyNzI1NzEyMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTEyNjYzNTc4NzMyNTAzOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDU5MTYwMTAxNTMwODM4MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzY5Mzk2MTk4ODQ0OTY2NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTExMDUxMzg4Nzk1NjYzNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NzIxMjkwNDQyMzcxODc5NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"eec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTUyODQwOTAwMjU0ODYyMjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f6c6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ0ODk1MDYyNDQ5MjI1NDI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fec6459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI0NjUzODY2MTIzNTE5Nzg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"06c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0OTMwMzEzNTE2ODU1MTU1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTc1NzcyODY1OTY1Njg0MTExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"16c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc2MTM1OTUxODgzNTI1ODgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDYxOTg0MjY3NzY4Nzk5ODEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"26c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDIwMTQ1MzQwODYzMTI0ODkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDczOTAwOTk5OTM2MjY4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"36c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Nzg0MTM3MDk3MjUwMzk2OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDA5MzgyMDIzNjgzMzQ5MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA3Njc1NjI4OTcyNTU3NzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE4NDA4MzA4ODg5MDU5NTI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc2NTY5MzgxOTgzMzg0NjEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjE4MjIxNTk2MDEyMzE3MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTc0Njc5NDU2MDA5MjAyNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTQ2NTU3NzcwOTkyNTk0MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk4MTk0MjA1MDQ1MTk2Njc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEyNzE3OTI4OTk1NzE1ODA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU5OTIyNDc1NjU0NzgwMzkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTcyODgwNzU2MDMxODgzNTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTgxOTA4NDQ1MTY2OTUxOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9ec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzU1MDk0ODIwNDE5NjkxNzY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk4MjYzNTE1MzQyNDU4NDYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjU1MDgyNzQ0NzI5NjA0MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDYwODgwNzU4MDUwNjQzNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM1NTQ2NzQ3OTEzOTU3Mzg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1ODk4NzE2NTk1NDA0MDcxMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjA5NTI1ODAxMzg3ODQ0NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwNzEzNzQwNTUzMDQ2OTY2OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzI2MjcxNzIwMjIwNzgwNjcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE4MzI1ODgyNDE1MTQzODk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"eec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY1Mjc0NzkwNDAwNjI4NDQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f6c7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzQxNTM2MTA1NjY4OTYxODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fec7459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODI1MTM3NzE2MzA2MjQxNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"06c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA3NTY3MTI1MjQ5OTA0MzAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA0NzU0OTU2NzQ4MjQzNDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"16c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTY0NTM3MzMyNTA4NzI2NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-02-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzI0OTg5Nzg5ODEwMTkwNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"26c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjczNTY3OTY0MzE3MDIwNDE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQxMDgwMTUzMjMzOTQxNTkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"36c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA5MTI1NzI1MjI1NzUxOTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Nzg5Nzc3ODY5ODgwMDU1ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTAwMDEzOTY3MTk0MTg0MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODk3OTYxOTMwMjM3NTg0NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ3OTU3MjY2MTE4MDgzNTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzYxMTc5NTU5Nzc2MDY5NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjIzODY4NTM0Mjg3MzEwMTM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTgzNTUwMDA5OTY3NDgwOTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDkxODY0MTA2MDY4MjIzODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTMzMzQ4Mzg3MTExOTQzOTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjI1NTM1MTk0MzI3NDE0NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTE2MTY3NTU5NzM4NTg3MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDM3OTA3Nzc2NTcxMTU2NDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9ec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxNDUzMzA2NzYwMzc4NTU2MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDkyMzk1OTE4MDgyMzA2NjU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDIyMjIyNzcyOTk5NTUxMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODEyODI1MjYwODMyNzUwMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4ODc3MjMxMjg4MDg1NDA0NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAwMDY1NjAyNzYwODQyNjMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNDgwMDE1ODQ3MjU3MTQzODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTk0Mzk0NjI1MTY5NzE4MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MDg0MjU3MTkwMzQyMTU3MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4Njk4NzExMzA5OTg2NzEyNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"eec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjI1MDMwOTkyMjEyNDQ2NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f6c8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDcxMjU4MjA5ODgyNzI3NTAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fec8459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTczNjY2OTQ4MDA3MDM4MTIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"06c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAzMjI3NDY2MDE5NTY5NjY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTkwNzI3ODAyMzE4NjUxNzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"16c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDUzMDYwNzExMDIwNDcyNjU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjAzMjIyMjUxOTEwMDEyNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"26c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjc1MDk2MjkwODQ3MTMxMTU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzAxNjIxMzQ4MTY5NzQyNzAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"36c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTI1MDI5NDI2NTg4NDcxNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Nzc3OTkxNDExNDUzMzUwNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE3MTgxMTc3NTIzNDM0Nzk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjcwODQzNjk4MjA4OTU4NTk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjMxNTk4NzMyODI3MjY4NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NjYwNTQzOTM0MzA2MDkxNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDYyNjY0NDE4OTAwNzM4MTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTQ5NDEwMDE0MzE1Nzc1MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjA5MzI3ODc3NjI2NTI5MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY1NDY1ODk3MDczNTE5MTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTgxNTE4MDUxNzA0NTgwMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzU4NzkzNTExMjY3ODc4NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Nzc5MDc3ODExNDE2MTkyMjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9ec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI4OTE3NTAwODc0NzA4MzM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:00.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjAwMjQyOTU2Mjg3OTc3MDY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDcxNjE0MDMyNjM5NDkyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3OTE3MjE0NDU4OTY3MTcwNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQyNzg0NjM4NDQyNjAwMDY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcxMzUzOTAxMzU2Mzk2OTQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjE5ODA1MzUxMTExMjEzNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTQwNzkyMzIzNDIxNTg2MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxMTUwMDk0MzA5Mzk5MTQ4MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjM4ODE0MTc0NDI4ODQ0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"eec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzkyMjI3MjAyNTM4MjY3ODk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f6c9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjE0MzIzMzQ4NTkwNjU0MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fec9459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NjQwNTY5MDM3NTc5MjcyNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"06ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYwNjY2OTI5MjI4MDU2MjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTI5NDM1MTE3NTg4OTU2MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"16ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTg5MzUyOTgwODk5NzEwNDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDUzOTE0MDQ5MDk0NTA5NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"26ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgxOTI5ODQ3OTk5OTA1NTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ3ODgyMDQxNzg4MDUyMDg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"36ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ3MDMwMjQ2NDc2Njg2Nzk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE1ODA3MjIwNzM5MzE2MDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI3MjQ1MDk4NTMwNTczNDM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3OTc4ODk2MjQ1MDAyOTk3NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTQ3MDc2MTYwMTc0Mjg3MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDU4MDUyOTE2NTU4MzI2NTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM3NjY4Mjg2MjMyNjc3NTQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA5NjM5NDM1MDE1NDcxMTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM5MTk5OTUzMDI4MDAyNjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODgwOTQ5NzY1NjUyODgxMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTc1Njc1Mzg2NzI1MDQ4NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU5NTg1NDIwOTAxNTAxNzE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTI5MzIxNDg0MzgyMjAzOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9eca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYzOTQxODY4MTcxMzA5NTA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTkyNTM5MTEzOTIwNjg4OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aeca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ3Mzc1MzU5NjM3NzUwNjYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU4ODEzMjM3NDI5MDA4MDk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"beca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODc2NzgxNjc1OTY5NTIxMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI2NzM4NDE2MzgwMjcyMDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ceca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkyNjkwNjEwMTY4NDE4NTM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MjY4MjI5MjQ1MDAwNzc1NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"deca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTMxOTEwNzU0MTQyNDI2NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTkxODI4NjE3NDUzMTgwNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"eeca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTYzNzA2OTMyNDM2NTcyMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f6ca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Mjk4MTEzMTk3NDE5NzAyMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"feca459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDI3NTkwMjIxNDE2NjM4NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"06cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTgwMjY1MzAzMjU3NDkxOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NjIxOTYyNDY4NDExNDkyMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"16cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTM2Nzc1NDU1MDEwNDc0MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU1NTEyMDM2OTY5MzE3MDc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"26cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg2NTM1NjQ2NzAwNzI5OTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM5MDE3OTY2OTUzMjYxNDQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"36cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Mjk0ODg3MTAwNDMyOTgyNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0Nzg3NjIzNzQ0MzkxODEwNTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"46cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjk4NzM5NDAwNzU5MDg2OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTM0NTk0MDcwOTY2NDQwMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"56cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTIzOTEwMTUzMjkzNTkxODE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTQzMjYxMzEwODU3MzE5MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"66cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjc3MjcwNTUzMTc0MDk3MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODg0MTU5OTYwNTY2Njg0MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"76cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ0MDM4ODg5OTMyNDg3Nzg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIyOTc3MDM4NzEyMjA1MjUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"86cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODI5NjU4MDMwOTE5OTUzNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDUwMzU4MTAwMjA2MzAwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"96cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzAwNTcwNzQ3OTkxMTM0NTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9ecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTU0MjE0ODQwNzcyNTEzMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a6cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTczNTgyNTU3MTcxNTc2Mzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"aecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTMwOTc3MjQ1NTE5MDA0MzE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b6cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk3OTQ3MjE1OTM5ODEwODA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"becb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg5MzA1NzkwMjg5NTg2NTEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c6cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDYzMjM3MzEyMjYyNjc1NjIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cecb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzgyMTI3MzE3NTUzMzMxMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d6cb459c-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYxNDkxNjE2NjY2NDk5NTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"544b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjUzNDQ4ODc1NDUwOTY5MzUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTYyNTE0Mjk3NTU2MjU1NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"644b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQyNzc1NDU0MDU2Mzg3NTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzQxODEyNjA4MjU2MDIwNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"744b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk4MzcxNTYwNzA2NzQwNjA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzQxNDMzMTQ5NjI5NDExNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"844b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzkwNDA0NDg1ODE2MzgzNTM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTQxNjg0NjkxNzA3NDQyMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"944b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Mzk4NDA5ODk1NzQ4NjY1NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcxMjY0OTc3MzY3ODAwMjk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzQyNjMxNDU5MTQwNDExNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTEzNjMwMjE1MDcwNjU1MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTg0OTQ5ODk0ODczMjQ5MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM3NjI5MzA0MTc3NjM1OTIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTEzMDIzNDM4Njg4ODQzOTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDA3Mjg5MDQyOTQ4MDYyNTQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTIzNTc2NDAxMTE3MTE5MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDUwMjk2NTgyMTAzMjcwNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDU4MTIyNjMyMDQ1NTMyNDQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTI0MTY4OTg2MzM2MzE4NjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f44b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDE0NjYyNDUxNzY0MjU0MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc4b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDM4MDc0NTEyNDU1MDYzNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"044c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc2NjQxOTc3NjU1MTg0Nzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ0MTU0MTY2NTcyMTA1OTY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"144c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDk0NTUzMDc1NTIzMzkwMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc1NTUxMTczNzk0OTMyNjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"244c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDg2NTI3MDc3OTMzMzA4MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzg3OTEwMzE4MzQwNzI1NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"344c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjQ4MDIyMjU1NTUzNTc1MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTYyMjYyMTMzNDgyOTEyNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"444c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjY3NzM4NjI5NTUxMzI0MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjcyOTQ1ODk0NDQwMDI5Nzk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"544c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzE4NTE0NDY1MjA2NjgyMDQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODgzNjY1MjY5Njg5MzU3MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"644c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIzNDY2OTA0Nzc5NTk1MzkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDI0MTc3NzUyOTAxNDUxNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"744c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI0OTkzMjczMjEzNjY4NTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQwNDU5NTkzNzIxODIzMjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"844c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg5NDAzODI3MzMxMjQ5MDQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0MDc5MDE4MTY3NzY3MjE3NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"944c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTg2NjI0NzExNzc4NjYyNDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjE0NTY3OTIzNzk1NDU0ODE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDg5MDE3ODI5MjY0ODMxMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjE4NjAwNjMzMDM1ODYzMjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODI4MjA2MDM3MTc4NTE3NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA4OTE2NDY5OTYwNDQ1MzY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjQyMDQzMTE2MDkzMDg5NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTQzNDI2MzU2NTAwNTA2ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgwMzk4OTA5MzQ5NzE1NDA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTE2MjI5NTI0NzcyNTk5OTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjA3NjE2NjkzNTQ0MjgzMTg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NjI0ODM4MjM2NjY4NDc2MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f44c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzkyMTAzNDgwMzA1NDQxMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc4c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTIyNTM4Njg1NjkzOTM0NjcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"044d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDgzOTA4MDA3MDA3MDY5ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQzMDYxMzMxMzg3MDI0Mzg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"144d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzE1MTY5MzU5ODg4Njg5NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMxNTUwNDI2MzY4MTc0NzcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"244d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDIzNzAzNjA2NDY1ODc0MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzY1MzU0Mzg0NTMzMDg5NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"344d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDUyNzI4MjAxNzMwMDkyNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzEyOTUyNTE1NDI0MzUwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"444d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMxMzg2MDUyNzg4NzA1MzEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyMzgwOTcyMjE3NzE1NTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"544d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjY1NzM2MjI4ODU3ODMwMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMwNTQ1NTc3OTY5NzE1NTE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"644d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTAyNTU2MzE5Mjk1NDM3OTc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTE0MDUxNTA3OTUzNjU5ODg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"744d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA5NDY4NjY0MTA3Nzg3MDgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE5ODU1MjE1Nzg3MjEzNjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"844d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjAyNjI4MzY3NDE3Mjk0NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDI4NjExNzIxNjgxNTUxNTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"944d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUwMzUwNTIzNTgyMTc0MDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc2OTAyNzk0MTYxMzI3NzM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MzM3MzAyOTc0NzQxODc3MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODQxOTQ5MzM2Njk0NTkyNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTYxOTUyMDEwNDk2MTA2MTMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDM2NTczMTE1OTc0NDU1OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjYxNjgzMjIxNTIzNzk3MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDc4MjQwNjEwMjExNjk4MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI1ODQzNjk1NjY4OTI3NDYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjc3MjgxODA5NjU3NTg3MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzg2NjYwODUxNTQwMTMyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTQyMTQ5MTMxMjI4NDE1MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f44d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTgyMjM0ODg3NjA3MTkxMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc4d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5MTc0MTk3NDE2MTcyMTMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"044e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDgzNDI2NjQ0MjY3MzQyNjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1Mjc4ODM0NTYyNzM1ODc0MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"144e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk0OTQ5NTc1NDkxMDM3NTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzI3NjE3MDYzNjAwODMxNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"244e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTMyMjgxMDAxOTEzNTAzMTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDc3NDE3NTE2NTU4NDM0NjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"344e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzU2MjQ2MTUwNDQzOTYxNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDY4Njk2NTUzODcxNDE5MzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"444e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Njg0MzE5Njk0MjU5NTU2MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjAyNzM2NTE0OTc0MzM1MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"544e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzEzMzE3MzQ1OTI5MDg1MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDkxMzI0Nzk1MDE3NTQ0NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"644e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxNDE4MTY2OTI3NTE5NDI4MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTU4MDU3MTg0NTU5MTQxNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"744e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM3OTY2OTQ4MzE5NTkyOTczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc1NDYyMzM4ODQ1MjA3NDE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"844e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjgxNTEwMjMwMzMxNzU3NTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU3MDU5MDU4MzAwNTg1NzUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"944e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NDMyMzU2MDIyODkxMTczMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE3OTI1NzgyMjg5NjczNjc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjkwMTI4MjkzNTUwOTU4ODA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDYzNDkzMjY5MTk3NjY1OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTkyMjgzMDM4NTUzODgwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM4Njg4OTMwNzAwMjI4ODQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMzODcwNjMwNzcwNjI3NTc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzUxNzA5ODM5NDc2ODM2NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc5NzUyNDIzMTIwMDI2MjgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzg1OTUxMDY0NTIwMjIyOTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzkwNjYyNzk4Nzc2MDIzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDQwODQ4MjQ2MTI2OTE4OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f44e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NTU0NTU0ODY0NjYwNzEyMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc4e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI5ODg2OTcwODk3NjY1NTYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"044f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQxMzI0ODQ4Njg4OTIyOTk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDIyMDU3MjEwMjk2ODIyNDkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"144f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE3NDc0MzY2NDUwOTQ5Njg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTAyOTgzMjc5MTQzNDUxMDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"244f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQzMzM5NjIxNzAzMDE3OTU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4NDYzOTk3NDg4MDA3NDA0ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"344f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODMyMDI0NTkwNTc3Njk2MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzU4OTQ5NzY2MzA5ODg1NDQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"444f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjY5NDczMDI3NDI1OTkzOTgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzM1NDg5NzU2MDM0NDc4OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"544f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDgzOTMyNjgyMjMxMTAwNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA1ODg4NTc5MzgzOTEwMTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"644f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjEzODQ1NjgxMzk5MDI2MjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NjI3MDM3NTcwOTE1NDQyNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"744f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTM0MzM0NzAzNzIxNDg0MzIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDE2NTkyNzIyNDQzNjQxNTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"844f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA2NzgxODk2ODkwOTcxODYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNDk0MTkzMzMzODU1OTc0MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"944f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDk1MzI4NjUxODc0ODkwNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MDEwMjk3NDI5MTE4ODQ5NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODQ2NDc4ODg0NzM3OTQ5ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTQ3ODYyMTI1MTQ1MzY3MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg0MjI3MDk2NTYxNTUzNTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY5MjYyMzk2MzM2NjY5NjIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU4NTg1ODg3OTU3MzcxOTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODI4MTM2MjgyNDg5Nzk1OTQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg4MjQ5ODE0MjkxNjg3NjE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzc0NDEwNTY2MTQxNjE0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA0MDgwNjkxNTI5MTUyMjkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA3NTM5MjQxMTM1NDY3MTMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f44f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMzMTI5NjE2MzgzMTcyMDUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc4f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTIxMzQzNjUxMjU1NTAyNjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1NTI1NDA4NjkwOTMyNTIwODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTY4NjUyOTA3NDE0NDEyNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3ODM2NzI5NDQzMDkxOTYzNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjg3MDgyNDQwODQzMTI0ODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTkxMzI4NDExMTEwMzQ3Njc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzMyNTY0MzQ2NTA3MDkyNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxODcyODgzOTk4ODU3MjI1NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg3NzMyNjE4NDcyODQyMTY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODk3OTExNzY1ODQ4Mjg5NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:01.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDU1NTI0MjQwNDkwMTQ4MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTk5ODI0NDg2MDg4MzIzNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTQ2MjQ2NTQzNTY3OTY2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODU5NzYzNzI1NjkyMTcwNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODg3NTg3NTc2NDAxMzMzMTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzE4NTA2MDczMTk5Mzc4MTM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTMwMjk0NDM1MjA2MzMzMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njc4MTUyMDY4MTY3MjQxMDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0NzAxMTYyOTI1NTM1ODExNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjkzMDQ4MTIxNjU1MTEyMTA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjE1MzA3ODI2NDI5ODMwNDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM2ODMxNzA1MzkwNDU0ODc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQwOTgxMDg4NDQxMDc2NjY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI3NDIwODU5NDMzMjQzNjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3Nzg1NzE3MDY5MDE2MjAyNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDgzMzQ5NTI4MzU5OTQwMjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE2OTY4NjI4MTc2ODIzMzI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA0NDEyOTEwMTM1NDEwNDcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgxMjI2NTIzNDQ5OTQ2NzUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjc1ODE4ODY0ODYyODE1NzA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDQ2Nzg0MjU5NTA5MzI4MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzg1OTMwMzM4MDI2NDUyODkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc503ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDUwMDgyNDYxNjIxMjM1MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjkwNzAzMDQzNDEyNTM3MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDcwNjgxNTA4MTczMzY5NzY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTA3MTgzMjgzOTY5MDY4MjA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjgxNDk4Nzg0NTk3MjUzMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2024-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3ODY4OTgxNjI0MTk5NTE5ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzUyMDI3MjkwNTQ0MjU1MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDM0MTEzMzI5ODY3NzAzNTcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTM0NjUxMjI0MDA3NDU1ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MzQ5ODkwMDEzNjEzNzAwNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzM3MTE3NTIwMjE1OTc0MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyODE0MTc3NjU4MTQxNDk2OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTM1NDY4MDkzNzk3MDE2NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE4NjY5NDM0MDI2MzA5MzU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjQ3NDgxMzA5MTA4MTg4MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTU2NjY2Mjc3MDg4NjM4MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUwMzI3NTQwODY1OTY5ODQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDEwODM3MjA4MTA5NjM0NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzU5MDc2MDIwNjQwNDI1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTAzMzc2MjY2MjM4NjAxNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg4ODExMTIxODc0MzkxMzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEwMzM1MDAwODM1MDE1NzgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTYyNzM2MzkzNjEyNDY1OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDg3OTU1NTIxNTY3MDcwMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDAyMTk1Mzk5NDk2NDA3NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTYwNTk5MTE2NjgxOTExMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDE5MTk4MDI2NDc2MTg1MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE1NDcxNTI5OTI0OTI1MjQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTA0NDMwMjI4NDMwODE1Mzk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzcxNDAwMTk4ODUxNjIxODg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzM1NzQzOTg3NTk2MTcyNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYyNjQ1NTQ5NzgzNDYzNTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc513ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk3OTM3MjQ4Mzk0OTQ2OTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDkyNjYyOTE4NzQ0MDU2MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAyNDQ5NzE3MzYzNDEwNTQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxMzgwNTc2MDMxOTk1MzYwNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjgwODg4NzU4MTU2ODU2ODYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjgxMTk2MjcyODkwMzUxMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc4OTM5NjQ5MTc2MDQwNjU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQzNTY4Mzg3OTQzMzIxNTYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDU1MjIxMTQwMjgyODgzMjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjg5NjY3NzM2MzYyNzk0NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTc0MTAzMjg4MjgxMjEwODY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkzNzU5NTI3Njk4NTIwODMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTY4ODgzOTQxNTc3MDY4MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQxMDIzODg3MjEwMDA0OTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUyMTkzMzMxMjM4NDY5NjQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDAyNjk3NTU5OTc2NjcwMDUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI2MjAwNTE5NTM2NzMxODM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUyMTgzMzU4MzYzMjI4NjkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0MTk1NzUwODA0NzU5ODg3ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTgzMDgzMTMyNTQ3ODMwOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzY0NzU4Mjk4MTU1NjI3MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMwNDUwNzcyNjU3MjkyNjAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Mjg4NDMyMTM1OTI2NzI0MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM1NjQyMTEyMzE0MTIyNDc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzE4Mzk0NDEyMjU1NTI5NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDMyMTE5MDU1NzM2NTIzODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NjIzNDA4NTExODQxMzY0NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3NTc4Mzc0NDE0OTY0NDM4NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc5MjQ3MTA0NDQ4NDA0MDU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA1MjI5OTQzMjc0OTAwOTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDEwODQyMDQ5OTE3NzQ5ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjE1NDU4NTM0MjkyNDkxMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc523ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwNTY2NjI5NjkyMTA2ODIzOTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI5ODAxNzg5OTczMzY2MzEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQxMjk2OTc4NjMxNTg4MjI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYzOTA0MTU0NjE1MzExNTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI3MTUwOTkwOTg0MzM5NTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjMyMDE1NTQ2MzEyMDQ5MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MjU4MTEyNzYwMTc4MzAzMTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzExMzU3MTE2MjI4ODYxMTgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM3Mzc5NTQ3NTk4Mjg2OTM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI1MjA1OTU0OTk3ODkyMDAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MjM1OTgzOTU5MzMyNzE4MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODU2MzI3MDgzODI1MzAxMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzNjM4Mzk0NTgzMzc3ODYwNDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5MTgzNzQ4MzAxMjg5MjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTgwNTIyNjc0MTY5MzI4OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE5MDg2Nzc5Mzg4ODcyMDU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgyMDE2ODc1NDE0NDY4ODE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY1MDkxODAxOTk5Mjg5Mzg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTgzNTQ4NTQyMjA5NzkzOTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTA4ODgyMjQ3NDIxOTk0NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk1MjAwNjYxMDA2NDg4ODM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDI1MDU5NzIzNTI3NTU4MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MTE3MTcyMjU2OTIyMzM2MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDI1OTExODc0NTM2MDQ1NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjI5MzAxMTE1ODA5NTYyMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTgyNjYxNDUxNTk2MjIyMzcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzMxMjYwODc3OTE0OTM4ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzgzNDExNzQwODc1NzY0MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTE3ODI4NDU5Mzc3NzAxNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTgzMzg1NDgyOTg3MzIwNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQwOTM2ODgzNzI1MTU3NzI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Njk1NjAzMDk4OTkyNzYxMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc533ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2MDYxMjAxNDQwNzQwNzA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MjY3NDQxMTA5NTQ5MjMzNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzc1NTI5MDAwODg0NDQyNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjY4NTQxOTc4MzgwMzEwMjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODEzNjU4MDIwOTMzOTcxNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDQxMTQ2MzA0MTkxOTY2MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjUxMDk1NDk4NDgyMDY4NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ3MTc0NjE0MjgzMDk2NDM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2MTA0OTU3ODk0MTk4NDc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDY4Mjc3NTA1ODQ5NjcxMjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQ1MDAyNzEzNjc3NjE1OTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3ODk2MDMzNTIzMjczODU0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQxNDkyODU2NDAzODE0NzIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODc3ODExMjg5NzgzNTc0MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM5NTQzNzQ3NDIyOTk4NTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTIxNDc5MjMxNDEwNDEwMzAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA0MjY5NDk3ODUyNTI0MDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NzQ5MjIyOTM0OTg3NDc5MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjYwNDI4NTQxMTY2ODQ5ODgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTg4NzMyNDM1MjgxNjgxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkwMjk3MjMxMzIxMTAxODM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg4ODQ5MzU1MDY1MDkxNTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQxMzU3MzMwNzkwODc1NjYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQzOTg2NTI1MTUxMTYwMzQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzIwNjU5NTczMzI4MDkxMTY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTEzODA5NzAxNDI4NTYyODA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQwNDE2NTUwMzMxMjAzNTUzODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTc4MDQxODY0NDU3ODg3OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDIzNzU0ODYyNzM3MjI4MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzg3MzUzNjkyOTA2OTY3MDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODE2NDc5NTk0OTUwNjY0MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDQ4Mjk4MjAzNTIxNzk3NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc543ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:02.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzODEyNzAxMTUzODIwMjU3ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjE0MDU0NTE2NjQ5NzAxMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODU0MzY4NjQ4MDU3NDk5OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDkzNDc4MDI5MDUxMjE0NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAxNDMyNjEwMTM3ODM1MDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUxMzE5NDQwMzA0ODk2MzQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTU1NzgxNDAyMTEzNDIyNDMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI2MzI5MDUxNzIwMjYzNjA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTEwMDg5NjU4MDM2NDU3MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MjIwNzQxNzY3OTYzODM1OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTUxMjA0MTMwNzg4MDE2MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTgwMjIxMjMzMjQ0MzU2NjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUzNTU0MDcwNzgyNzUxNjA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTA2NjM4MzM2NzI1MzU2ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDUyMjU1MzAwNDcwNTQyOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTcxNTA1NjU4Mjk2MTg0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTg2Njg1ODA1MTg2MjUxODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQxNjIzODczMTM3OTMwOTk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1OTMwMTAyMjc0ODQzNTQxMjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTg1Mjc0MTczMjgxMjExNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxMzczNzYxNDY0NTI0MjAxNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzYzNDc5ODU2OTAxMDM0NTA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzI5NTczNjE1MDE5OTYzODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjIyNjA4MDMyMTEzODU5MDA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4OTQ5OTgyNzMwOTQ2MTgzODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDQ4ODUxMDMyNjE2Nzk3MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ5MDM0NDg2MzEyMzAxNTExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY3Njc2NDkyOTYyMTEyNzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDY5MTAzMTU1ODUzMTI4MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTU0MDA3MjAzNDIwNTM5Nzk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI0NTE1MjYwNDg0NDUyMDc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI0MDQ4ODIxNTQ4NzMwMTY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc553ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDUwMTc2MjM3MTQxOTk4MjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzE4MDkzMzA0NTM4NDE5OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgyMjI5NDMxNjEyNDM5NDU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODQ2ODQ3NDg5NTk2MjY5MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Nzk2NTgzMjYzMTA5Njk3NjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgwNTkyMjI1NjYwMTExMzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE3NDYyNjk3NTAxNzM5NTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDUzNTY1NzYzOTI4MTMzNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYxMjAwNzkzMDQ2MDI1NzUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzYzNzc3NzM2OTk2Njc0NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODg0NDQ5Nzc5NTYzODI0NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjY4MzQ1MDAxNDMzNTIyNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODI1Mjk5ODgzMzM0MDI1NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDQxOTIxNzA2Njg2NDcyMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTAwMTUzMTc4MDk2MTk5NzExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzQzOTQzMjYxMDg1MjMyMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM3MDMyOTYzMTUxNzU1OTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzE3NjMwNzgyNzI0NDM4NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTY1ODc2MjExMzYxMjIwMzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk2MzU3Njg3MDIwMzg3MjkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYzOTM3NzYyMDI0NTE5NjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM0NDg1NDExNjMxMzYwODMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ2Nzg3Mjg3OTc1OTc0NjE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTMwMjI3NzI3NDkxNzM4NDE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcwOTI0ODQ5NTYwNzMzNDQ1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzE4NTMyNzQ1MDAyMTQ2OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Njk2MTgxOTY3MjQwNjYxMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUwMTg0NzY4MjYyMjQ4MjYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjA3NDk0OTc5MjQ4NzY4ODQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc4MDYwNjA3MDI5NjY2MzkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQwMDI5MzE0MDQ2NDIzNjMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:03.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MzgzMjM4OTU3MjM3NTg0MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc563ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMzODgwMjEwNzQyMjQ4Mjc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MTkyNDAxNDYzMTM0NTM0MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mzk2NDUyNjkxMTU3Njg2NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY5MjY5NDYwNTYxMzc5MTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg2ODQ3MjU3MTQwNzk1MTQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA0MTYzMDE1NTUxNTM1MTM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjk4NjcxNDg4MjMwNzI4NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzM5OTg3MTk5OTQ5NTk2NjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzI0Njc1OTM1Mjk2ODcxNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYzMjYzMjg0NDk4ODMyMjMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQyNTIyMjMzMzc4MTA1MTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzU5MTEwOTg4NjA2NTQ4MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NjkzNTI3NzA3MTA4NDg1NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzQ4NDM4NDM3ODg3MDE0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg5ODgxNzczOTIzODI3MjUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjc1OTY5NzMyNjAzMjAzMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODIxMjc3NDAyMjYzMzUyMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDk2OTAxODA1ODgyNDY1MTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MTk4NTA0OTk0ODM2NzM0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMzNTI5MDI4Mzg4MzExMTA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjk0NDQyMjY1NTI2MjE4OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzU2MjQ0MDIzMzQxNjE3MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzIxNDY0OTg1MTYyMDY2NzQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIxOTUyNjc1MDkzNzQ5MDc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTEwNjk3ODU5MDM0Nzg1ODcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjU5NTk2MTg3NTU5ODk1MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjU1MDA5NTg4MjI2MjYxMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY2MTMzODcxNjE3NzMwMjE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTk3OTMwMjEzMTA2NTQ5ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODk0ODY1NDQzMzY1NTQ3ODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5Nzk4NTg2NDg0Nzc4NTU5MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMxMzU4OTc1MzMyMjM2ODYyNDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc573ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDc4MTQwMTYwMzcwNzc3NzIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkzMDU4ODEzOTM4MTc2NDY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODMyMTc2MzczNTg4NDYwODQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjM3MTc0NDk0NDI5ODM0MDM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODUwMTgzOTc2ODcxMjY4MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzk4OTU4MDIxMzUzMzY1MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTU2NjAxNDA4ODM1MjcyMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzA0NDE2MDI5NzYyNjg4NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMwNTYzMDQ5MjYwODg5NDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzE5MTMyNjY3NzMwNDA4OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODI5NTA3NjY1MDI3Nzc0MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMTcwMTM4NDE3MTU0MTY0MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDM5Nzg4Njk2NDI0Nzc3NTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc2OTEyMDQ2ODE4ODI5NzQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:04.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDk5NjQ0MDQzODE1NzcxMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUzNDEwNTI5NTE4Nzk1MjgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUyNzcxODkzODYyOTM1OTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDc5MjczNzY3Njg3MjIxOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzExMjAyMzcyMDcxMzE0MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQxMjAwNDUyMzMwMjI2OTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzczMjczOTA2NzA4NzU1NzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgzNTg0ODg0MDExMDE0MDg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU3ODE3MDgwNDU0MDQ5NTM5NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTA2MzkyMzQ3OTQ3MDMyMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODM2MjMyMTc3MTY0MTE2MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDk4MDUyMjc4OTg2NTY5OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTY1MjU3Mzk0NTI4NDQyNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjI4NDAxNDk4NTYxMjE4MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE2OTg5MDc3OTkwNDYxODUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ5MDg3Nzc1MjIxNDk5MTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAwNDk1MDA3OTc0NDA2MjIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzYwMzI2OTI0MjI2Njg5OTQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc583ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODA0MjMxNTY2NzAxMzkyOTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk2NzU5ODc5ODg5NjU2NzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTc3OTc2NzUyNDU2MDIwNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA2NzgxNzE5MjUyNjQxNzIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDc2ODgyMjA1NDAwMDc4MjU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDczNDkyMjMwODcwMjA3MjQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIzOTU2ODY3MDY1NDc4NzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3OTA3OTg3MDcyNzY2NjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTY0MDUzNTI4NDg5OTY1NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NDIyNzczMDY3MzI0NjkxMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTk3OTE0NTAzODUzMzgwNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg1NDA0MDE5NTA0MTU4NDk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgyMjkzMjI0OTYxNjE1NjYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTI1NjIyNjYwMzM0MDY1MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTQ0OTE4ODI2MDA3Njc2MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM0ODgxMDg4NDI0NjQxMzUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODI5MjMxNjkxMTQzNDY1NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODgzMDg3MDg5OTA4NTUyNTA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg0OTY5ODg2MTUwNjg5NTg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDU0Njc3ODg0MzA0NTIyMDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA3NTM1Mzk3MzEyNzY5MDE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDA5MDE1NzcyNzIyNzkxMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5Mzk4ODU3ODczMDg4NTUxMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDI3NDQ5MTQ0OTkzNzE2ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY2ODQ0NzEzMDcyMjkzMzcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0MTMxMzAwNzI4NTU2MTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUwNzA1MTU3NTE4NTAwNjM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ2MDQ3NjA0MTMzODQ5OTU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTMwNTEyODQ2NjMxNTgzODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDk0MzM3Njc5MzA1NDI1MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk4MDYzNzI3MjM0NjI0ODAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjk4MTkwMDYwMzUwNTAxNDAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc593ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:05.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM5MTY4MzE4NjU0MDkyMDY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzA5NTIzMTk4ODYyNjU0MTczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA2MzI5OTM2MTc1OTM5MTEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY0Njg0Mjk2MDY0MDQ3NDA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjc2NDUxNTcyMjgzODI1MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDAwNTY1MDgzODY2MzEwNDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDc2MTA4MzUyNDkzODMxNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTExMzA3ODE4Nzk2Nzk1NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTY2OTEzMzQwMTg3NTc5NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDM1NDkzODA3NzUzNzIxMDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgyODg1NjA5MTY5MzkyOTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTcwODU1MTQ1NjE3MTc1NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzMxMTAyMjAwNTUzNTgyOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTY2MzAxNjY2ODU2NTQ2OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIyMzUyMjEzNzQ4MDYwNjc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MjE2NDI2MDkyNTcxMjExMTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjUwOTM5Mzg0MjUwNjc3MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Njc5NjAyMTA2MjU0NDI3NTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDI1NjQwNDQ5NDU3OTIyOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAwNzI1MTE4MDQwMTE3Mzc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzkxNzc0NDMyMzM0ODUwOTU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0MTAxNTk0ODUxODA1NDc4ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEyMjEwNDEwOTE2OTMxMTk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY3NTc5NDk5NzkwODU0MDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYyNjY0OTg5MjExOTU3NDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzMDk0OTU0MjQ4NDk3MzQ2NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjAxMzQ5NjQ1NjYwNTA3MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTc5NDA2NTE5Njg2NDE3NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjYzMzQ2MDMwNTcwNzU5NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTgzMTE3MDc5Nzc5Nzc1MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDYyMjc0NTE4Mzc4MjE0NTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTcwODc0ODIyOTgwNjQxMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5a3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDczOTgxODU4OTI1ODU4OTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODgyNTY1NTg2OTA2MDE4MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTM2ODg2NTE3OTk0Njg0MDc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTY3OTEwMTI3NzI2MDk2OTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Nzc4MDQzMjc0MzQxODE0ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDA2NjM0NTQ2MjQ2OTgwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTgwMDUwODY4MzkxMDk0MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjQ0MzI5NDU3MTEwODIxMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTgxODgwNjIzNTA3MDgwMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM3ODU4MjU5MDE4OTA2OTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzI1NTAwNDkyNDQ1NzEyODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTI4MTc4MDA4OTc5ODI4NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk0MzA2NDEzMTA3NTI4MzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDE4MzQ5Njc3MzE0MzAzMjk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMTEwMjgyNDg0MTIwNDA1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc3NzIzNTM3MDcwNDMyNDgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTM5NDU0MzE0MDY5ODE2MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDU1OTY0MDI3MzEwNDk0NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzk0MjUzODI2MjcwMzE0NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDQ5ODQ2NDU2NzAxOTM1NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2NzI4OTk1ODQ2NjgyODcwNDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:06.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODk5ODA2OTM3MzExMDQxNjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTU5OTEwMDU4OTcxMTI0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDU3NjcxODE4NDI1NDUzMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcwNDU0MDU4NjE4NzA1NTg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTExMDE4NzQyNzkyMjA5MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0OTQxOTAyODE5MjI5NTQzMTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjk4NTY1NzQ5OTc0ODM5NzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTQ3MjcyMjIyMzU2NDE4MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNzgxNzMxOTE3NzM0OTA1OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYzNzU2MTgyNjY3NTY3ODIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY0MTUyMDY5MDcwODQyNjQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5b3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg2MDYxNDQ3Mzc2NDU3MTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzQ4ODUzMTczNTQzMDUwNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTYyOTc4MjY3Nzg0ODI3MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjk2NzQ3NjY1MjA0OTY5MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzIzNDM3OTI4NzY4MDQxNzc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE4MzQxNDc2NjE4MjQ0NjM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzcwNzAyOTI1NzAyMDA1MjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzQ3MTcxNjE5ODA2NDM2MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTgyNzE3NDc2NTY1NzU4NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MzM0NzQwMzY5NTQzMjM4MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDA0ODg2NDkzNTkwODUyNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzcyOTQ5NjQyOTAyMjExMDExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU4NDI5OTYyNzIyODAyOTcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzcwMDUyMDA4MjU4MTQzMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDcxMzcwOTg0ODkwODI2NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODk2Njk5MTM1MjUwNjk0NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDI2ODM5NzEzMzAzNDU0MDk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MTA0NjY1MzM2MjQyNjI1MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2025-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDQ1MzUxMDQ1NDc5MTE0MjExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ5NTkyNzY0MDA5ODY5Mjc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU0MDY5ODY4NDUwMzgwMzU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTI1OTUyNDg5MDcxMDA2NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjMyNTE2NTQ0NTE3ODI5ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODUxMjM2NTAwNDc5ODk5MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkwMTQwNjE3OTYzOTQ4MjAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDQ4MzA1MjA1OTI5NTU1NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYyMjk4Mjc1MjY2MTY5Mjc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTkwNjYxMTQxMDI1MzI1MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTUxNDgzNzk0NDI2NDU5MzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTQ0OTYyNzIxODM3Mzc2MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzU4NzcyNzg0MTExMzUyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjQ0Nzc4NDYwNDE5NDYxMjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5c3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTAyNDkzMDkzOTUwMTYyMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:07.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY2OTI0Mzg4MDg5MzkxNjQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDMzMjA3NjEzNTUwOTk1MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTQwMjgwMjcyNDExNjQxNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExOTAzNDE3NTcwNjg2MzczNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDgzMzE2Mzg0NjI2MzQxMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzQ5NzE3Mzc3NzQ3MzM3MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY5Nzc3MTcyNzIwNDEzMDYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTIyMjUyMDg1NjQxNDM1NTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM0NzQzNjc4MjE4MzEwNzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIwOTE3NDkwODEyNTY4NzE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjA0NDgxMDExODMzMzc2MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4NzQxNjI0NTUwNDA4MzM2MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk4MjY5NTQ2NTkyNjcyMjUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzMzODY1ODUxMDU1MzU4NjEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDc4NDc2NjY2ODQxOTgyODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDcwMzcwMjAxMzAzMTE1MjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzY5NTE3NjQ4MjkwOTYwOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTMzODA3OTE4NTE1NTA0NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgyNTg4MDU4NjIyNjMyNzA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAzNDQ2MTczOTEwNTM2OTU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY1ODU5MTU2NDk4OTIwODg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODc0MDI2MjQxMzg5Nzg3MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjU4MDk4NjM4NTU0MjA4MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTczNzExMDgxNjgwNzYyMDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjc5NjMwNDk2NjgzMjYyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjU3NTY5MTg1NzU5MjA4MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA1MzgwNzI5NzU5ODYzMjI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDMxNTA3MjI2ODMwNzc5MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTk1NDc4OTE0MjQ5NjU5MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTU3ODk4MjgzMTgyMjA0MTgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODE5NTc5NDQyNzA0OTEyNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5d3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzczMjQ5Mjk5MDQyODAwMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4NzEwMDUzOTE5MTY0NzQ1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTEwODQxMDc2ODk1MjAzNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDczNTc0MDE5MDc3ODA4MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODQzOTYzNDAxNjg5MjAyNjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDcyNzc5ODE0Nzc5MTE3Mjg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:08.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODkyOTk3MDcxOTk5OTM0ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUxNDM5MTMyNTgyNjE5NjI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEyNzc3ODU3MTg3MjkwNDM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc1ODY0Nzc3MTU4NjU3NDM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzU1MTY5MDYyNjY2MDQxNTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTc0Mzg1ODE4OTk4MTM0NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA2Mzk5Njc3NDk2NTQ2NzQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDkwMDQxNTA3MTY4MjgzNTY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMzMjY5OTEwMDQ4ODU3ODY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzU0NDczMzkzOTMxMTA2MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Mzk0OTI0MTA1MDIwMDYyMDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTUxNzAwNTkyNDc3MjM1NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDE1MjM4NTIyMTI3MDUxNTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3ODQ4MzIxOTgzMzM4ODg1NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjU1NTQzMjIwODk2NTA3MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDc5OTkxODEyMjAzMjI2OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTgwOTU5MzQ4NDAwMDYwOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzEyNzczODM1MDY3MzQ2NzQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwNTYyMzkyNTk2NTY0NjQwNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ4MTc3NjE5NDA4MTE3MTUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzg0MTUzMDAyMzI0OTE1MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTcwMzcyNTU5MDE2OTYxMzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDc4MTYyMzk3ODU2NDYyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI4OTM2MzEwNTcyMDU3MTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjcyNTM0NjQ0ODUxMzE2MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg0NTgzMzE0NzE2MDAxNjM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5e3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM4MzM3OTEyNTY1NTU0NDQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"045f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzY2OTQ2NTkwMjE1NTc4NjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIxODQzODQyNTQ5NDk4ODE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"145f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY2OTEyNDM5NzEzMTQ4MjAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTc3NDg0OTYzMjg2NDg3NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"245f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDgwNTIwNTMzMzU4NTQzODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzc3MDc2OTEzMDg2NzkzNzgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"345f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTIxNjk3OTQ2ODIwNzgwODYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzE4MDc2MzcxNTI1MTg5NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"445f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk2Nzg2NzYxNTMwNjc0MzIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQzNjE5NzM4NDU5ODY0MjE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"545f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjY5MjY4MjgzNjE5MTk2MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTQyMzk5NzI5MjQ1NjM0MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"645f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM1ODYwMDE3MzEzOTc3MTU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDA5NDQ1NDc5Mzc1Mjk0MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"745f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mzc0NTUyNzI5MDY5MjE5MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTExNjY2MjE0Mjc3ODI5MzEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"845f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEwNTgxMjE4ODE0Njg5OTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzg4NDU5MzE0MDc5NzIxMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"945f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjM4NDE2Mzg2NDAxNTkzNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjExODE1NjAyNjQyNTgyOTgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA2OTg3MDM0MzE0ODgzNzkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDUzOTIxNDQxMzMyNzMxMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTA0MTg2MDMzNTEwOTE1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA5ODUzMDI5MDkwMTE3MDAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjAyNzcwNzI4MzE1NTkwNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODk3ODUzMjk0MTgxNTIxNTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjExNjc3MDY1Nzg3NTMxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODU0NjM2NzkyODQyMzE5MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjkwODM2MzM1NTUzMDI2NTUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI5NTA4ODc1MTU3ODM1MDg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f45f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4NDMxMDQ4NDg4OTk2MDYxODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc5f3ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUwNjEyODI5NDM1MjE0NzcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Njc3MDA4ODEwNzQ1NjE0NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMDc0MTU1MzA2Mjk1MjI2OTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDk0NDEwMDA0MzU4MjY3MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjYyMjM4NjE3NjQ3MzE3NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAzNzczODMyNzk3NjExMTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODM4MjMxNzI4MzU4NTIxMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjE3MTU1MTYxNTk0ODgxMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc4OTYwNTAwMzM2NDg0NDc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk4MjMzMTkyNTUxMDI2ODA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0ODIwOTM2MDQ5NjUyODYwMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk5MDQxNjY3ODU1OTIxMjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:09.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjkzNzIzMDA3MjkwOTgzNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTUzNTQ3NjU2NDU4OTQwMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjQyOTAxNTg2OTgwMjIxMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjM3MTY3NTQ5NTkyMzI5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc2Njk4MjkyMDQ2MDI0OTM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzk1ODk4MTI3MTI2Nzc0ODQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTU4NzgyNjE3NDYyNzEwMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjE1NTI3NzAzODg5NDgzMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTMwMDc1MTAxNjc1MTMyNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzM3NTM1NDY2Nzk4NjAzMjY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUzODA5MjY1Njk0OTY4NTczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk1MjY2OTkzMjMxMzMwOTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUyMDQ5ODU0NTYwMjM1OTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzI5Njg5MTQ5NTcwNTA1NDk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM1MDU1ODEwOTQxMTc3NDU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDk5OTE0NjgwMzI3OTcxNTMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDExNDQ1NzA2MjA4NDM1NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0OTQ1ODczNjc3NjEyMDcwMTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODQ2NTA1MDA2MDQ3ODc5MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjYwNDM1NTM1ODM5MTA0NDk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc603ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE5ODcxNzQwODI4NzMxNjQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDY1MzU0MjM3ODkxMzYxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2MDA5MjA3NDc3ODQ3Njg1OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg5MTYxMTQzNzkwODUwMzcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4NzgzNzU2OTc1Nzg0MjUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDkzMjcyMzkyNDA2MjU5MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTUxMTM4ODc2OTczMDg0MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU2NTQwNzg1NDc1ODI3MTkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjEyNTE0NTE1NDQ4NDA1MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MTI5Mzc0NDU1NDkwNzQ3NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODQwMjc5NTc2NzkzNDY3NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ3Njg1NTg2NzMwMzEwMjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzAyODc2ODgyMTM0OTAyNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzkyMTc2MDQzNTMxMTU1MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MDcyOTk1ODA2NzA2NzMwMTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgwNTAzMTkxMzEyMzk3MjY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDE1ODE0OTgxMjAwMTg5NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTg1ODk5MjgxMjcxMjM1MTA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NzQzMjg4MjgyNDQ2ODgxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjEzMDA5MjgyMzMyMjI1NjcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM4NDAxNjQ2MjQ3NTAyODE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzc1MjM1ODUyNjI4NzY3MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjkxMjgyMjcxMzc3MTg5Nzc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDAwNjE3OTEwNDI3MjEwMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk4MTg3MTY5NjU3NjY5NzE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MzY2MjUxNTI5NDM5NTM3NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTU5MTkyNzM2Mzg0NzQ4MTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI3MzQyOTA3MjM4NTQ2OTQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTU5NDg2MTcxNDM1NDYyMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY4NzI2NjE1MTMwMDA0MTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDE0Mzc1MzYwMjM4ODM1NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDg5NTc2Mzk0MjM1MzM2ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc613ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIwNDUwNDU5NjI3ODIwNDk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTM1ODg0NzIwOTEzMDAwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzQ4ODU1NTczNTgyNjY0OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTk0NTE5OTkzOTYzNjM5Mjc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDMyOTg1NDM4NzQxMTgwNjQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTEyOTc1MDQzMTY0MTIzNjI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc0NDczNzQ1NzQ1MDAxNzAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzQ3MDQ1MTM4NDUwNzkyNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjA1OTUzODA5MTEyNzgwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM5NjQ2Njk3NjcwMzgxMDQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTM1MTM2MDIwMTE5MzYzMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NDA4NzU5NzU5Njg0OTM5MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1OTExOTAwMzc2MTg4NzQ4NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:10.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzNzcwNTc0NTc5NDM3NDk5NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg3ODk1NzAwMjI3MjMxOTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY5NDA4MjM0NTkyNDM0NzEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjI1MzkyMTc3Nzg0MzY2MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyMzc4MzYyMTQ0NjI0MTQ4MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgxMTExMDgyMjkyOTA4ODAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"94623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc2NTI4MjM4NDQ3MDM1OTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9c623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzQyOTgyMzEzNzAyNTA2NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTY5MjAxNzg4OTMzMzIxNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ac623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjc0MTU1NjcwNzQyMzQ5MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg3MDA3ODY1NzMzNzc2NzUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bc623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ2Mjk3NDA2ODgxMDYxMzIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIwNjczOTQ4ODk5NjI2Mjc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cc623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1MDEwODc3MDYxMzA1MTUxNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzAwOTM0MzA5ODkxOTQyODg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"dc623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTMyNzYxODk1MjkwMzE5MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkwNDI4MzI2NTQ3OTk0Njk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ec623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTAwMzUwODUxMTk0NDMyNDE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f4623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODAwODIxNDQ3MTM2NDg1MTE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"fc623ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUyMDUzOTgyNTY0MjExMjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"04633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkyMTg2OTIxNzU2MzEyNDI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk1NjMyODAyNDc5NjE3NzM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"14633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM5NjQxMzc4MTE3NDk1MzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjMyMDgzMjQ5NDkwMzY5OTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"24633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDEyMzM0MzE2MjI3NDc1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTc0MTIzMjcwNDU3MjQ0NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"34633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDg0OTMyNDMwNDQ1Mzc0NTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk0ODQ3NTA4NTU5OTQzMTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"44633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUwNjE3MTM5MTc2NjQwNzQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY0MDIwNDM5NTk5MjE5Nzc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"54633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY4NjAxODc4NzcxNTYyMzkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI5OTQwNjAzMzc2MjMzMjAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"64633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYxNDA5MjMzMTUzMTIxODY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTY2NzM2NzkwMDA0Njg2NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"74633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTY1NzE0MTE0MDgwNTYzMzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDc5NzE0MjM3MjI1OTUxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"84633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg4MDMxNDcyOTgzMjM0MjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8c633ca2-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ2MDAyNTQyMDUzMTk4OTc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f73e35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQxNDE5Njk4MjA3MzI2MTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ff3e35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTc3NDA2NjYzNTg5NTAyMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"073f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcwMjgwMTg0OTUxODkzNjQ3NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjI5MzgwMDQ3OTQ1NjAwMTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"173f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzY1NzQ4NDgwNDY0OTMwNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjEzMzE2NjY4ODM1NzQyNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"273f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI5NTE3ODQyODYzNTMxNjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzODMwOTQzNDg1NjA1Njc0NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"373f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjIzNTE4MDY3NDIzNzg4MTc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzE2MjA5MjE2NTQ2NjMwNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"473f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDQwMTI1MTg4MDIxNzI5MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjkwMzA0OTY2NjEzODc0NDEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"573f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NTE4MjQ4MDA1MDcyOTkzMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA2MjE0MjU1MTkxNjUyMzUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"673f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTc3MDUyNTUzMDUyNTA4MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjU3MjkxMDg5MDU5OTAxNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"773f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:11.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDY4ODU1NjMyOTI3NDc3NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDY1NjY2NzY2Njg2NjI1MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"873f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTEyNTYwOTY0NDA0NDc3NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjk5NjY0OTMxMjkyODU3NjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"973f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTc2OTk0Njg4MDYwMjY1MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9f3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI1OTM3ODI4NDU3ODM3NTc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODg3OTY5NTU2NDgzNTQxNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"af3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjIyMzM3NzQxOTAwOTIwNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTM1NzM5NTc2MjUyMDcwNDE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bf3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NjY4NTg1ODc5OTMxNTQ2ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDg5ODY2NjA1MjE1OTYwMjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cf3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE4MTg0NTkyNTM5NTMxMDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTA5ODk1MDk0MzA4MTM2NzQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"df3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA0NTA0MDg5Nzk1NTMwNjI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTA2OTcyODc0NTgyMDk2NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ef3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYwMTA0MjA0ODc2NzI3Njg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f73f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODY5MTE4NTg0NDQ0ODI3ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ff3f35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjM2MTA4NzU1Nzk2MDgxMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"074035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjA5MzY5MDg0NTIzMTk4MjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDkwNTYwNjkxMTE4MTYzNzUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"174035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzMyMjM4MTA5ODI4MTMxMjk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjM5NTM3ODE0MjQwODI5MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"274035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTgxMDA0ODQ4OTE5MjQxNzk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDM5MDAyMzY0NDQ3OTE4NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"374035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwNTE3NTUzNjg0NDIwMzQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MjYwNDUyNjY1MzA5MjgzNjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"474035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MjUyMDM3NjkxODY4NTQxNjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY1NjgyMzk5MDQ4OTAzNjY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"574035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzgyMjQzODcxNDA3OTk3MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTkxNDg4NDM2ODU2MjU5NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"674035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzkwNjY0Mzg5NTY2NTUyOTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNzE5NzE5MzYxNDY2NzkzODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"774035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ4MDA3NzgzMzg3MDU3ODM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQyOTQzMzc4MzA2NTc4NDU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"874035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjk4NjMxMzY4NjU2NzgwOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTkzNzEzOTM0NTIyNzEyMTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"974035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNjE3OTA0NzAyMDAyNjMwODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9f4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTUwODk0ODczNzEyMzk5NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjY4OTIzNjMzMTg4OTU4MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"af4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU0ODI2NDkxMzQwNzg2NDAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE4MjEyMzg4MjA4NzcwMDA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bf4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg4NDc4NzE2MzczMjMyNTk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI4MTc0NTk1MTU2MTUxOTQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cf4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:12.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTEyNTQxNDQ5NDExMTkxODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTIwMzkzOTc5NTg5NjkwNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"df4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODI4NzgxMjcwOTM5OTEzOTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ5NTczNDE1NzUyMzgzMjk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ef4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1ODk5ODU3MjUyMzgwNzQ4MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f74035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM2MDk1ODg2NTg2OTMyNzIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ff4035a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Njk4NDI1MjMxMzEwNzYwNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"074135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkwMjY0MDQwMjU1NDU4Nzg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTY2NjI3NzkwMzAyMTQ3MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"174135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzUyOTQ5NDA0MDcyMjI5NjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQxODEzNjgyNDgwOTUwMDE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"274135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU4OTg4MTg5ODM2NjIyNTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODEyNjM4ODM5MjIwMzM0MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"374135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY1NzcyMDUyNjYzNTY1MDUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTcxNTk1MDU4NTY3MDM1MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"474135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg4MjM2NTQyMzA2NzA5MzQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3Mjk3NTIzNDEyNDg4MDU0NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"574135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODY2MzgxMzg5OTgyNzQ2NTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDI4MzQ3ODU1NDE4NTM3MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"674135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2ODYxNTc2MDI3NTM4MjgwMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI1MjIzNjI5NDY5OTc2NjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"774135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM1OTA1MDYwMTc4MjA3NzgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk0OTA5MzYwMzgyMTg3MzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"874135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODQ5Mjc1NzEwOTkxNTgzOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTUzOTQ3MzM4ODk0MTIwODMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"974135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjEzODU4MzM2ODQ0NjQyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9f4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDU0MjkzMDIwMjI1ODQ3MzYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjQzODIwODIzODc4ODIwNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"af4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg0NTkyMjIyMzk4OTk1MjUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDY3OTUzNDA4NDk3NjEwNzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bf4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk4MjUwMDgwNjI4MzI2MDIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjE1NDg3Nzc3MjI2NzU3NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cf4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODk4MTMyMjA2NzE2ODY3MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjM1NzkxODU4OTA5MTQ0NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"df4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg5NzU5NTcxMTIxODg5NDM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDM5Nzg0NzUyNTg4NjE2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ef4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:13.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjEyNDA3MTU0NTQzMTUxMTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f74135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ5MTI0MTQ1NjU5OTc4NTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"ff4135a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4Mzg0MzM4OTIwNTI1ODU5MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"074235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjAzMDU4ODc2NDg3OTI4NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"0f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjM2NDg0NzgzMDcxNzY5Njk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"174235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjkyODM1NTg4Mjc4OTUzOTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"1f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI5MDkwNTQyMDUxNjUyMDIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"274235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODM5MTMwMzAxOTAyNjE1MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"2f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjY1NTM1MDM1NjI1MTgxMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"374235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDQyNTc5NDE2NTU1Mzk1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"3f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMTkxODQwNzI2MzI4ODA3NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"474235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Njg2Nzg0MzkyMjExNTAxNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"4f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDY4NzMyODIzMjkwNTAzMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"574235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU3MjI2NTY2NDgyMDQ2MTY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"5f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTUyMzU1MjI1NjQ0OTI0NjU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"674235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDM2OTY5MzgwMDczOTI4NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"6f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDUxNDE5NzczNjEwNDI3NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"774235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTQxMDE2MDczMjkzMjQzNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"7f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY4MTgwMzU4NjIzMDM2ODE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"874235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTYwNjcwNjY3NDAzODY3NTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"8f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjQ5NjM5MDQ1MzU0MDM0MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"974235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDI3MDEyNzY3MDc0NzA5NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"9f4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0MTc4MjU1MDEwMTcwMDE4NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a74235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDk4NTMyMTM4NDA5NjYzMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"af4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM2NjgwMzg1NTM2NzI0Mzk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b74235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzc5MDY3OTU4NTI2MjUyNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"bf4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Njg2NjkzNDE0OTE4NjExMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c74235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMxNzY5MzY3NzcwNDAwMzU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"cf4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Njk4MTM2NDg1OTk3NzE5OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d74235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzQ4ODgyOTI1NjE3ODQzNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"df4235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTY4NTgwMTAzOTI4NDIxOTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQyMjQ4MzIzMjk1MDU1MzcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI3NTk0MTc0MTQwNjIwODM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94235a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MTkzMzIxMTU1MTEzNTY5MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTkwNzM4NDEzMDQyMDQ5OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzcwNTkwNDk4NjU4NjUxNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NTU0MTk2ODgxMDExNjk3ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkwMTc4NzgzMDc1NjU3MTc2MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEwNjA0NDQzNjUwMTIxODUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODMwMTM0NzUzOTE3MTk2MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTEwMDEzMjkzOTI0NjY5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM0MDA4ODgzNDM3NzExMjM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2NTQyNTU5MTY1NjA2NTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI2NzMwMDAyNzU2MDk4Njk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:14.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzI0NTUxNjM5MzEzNTQ3NDEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2026-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA3MzMzNjE3ODgzMzk0ODc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTExNzk4NzY2NjgyMjEwNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTA1Mzg0NTA4OTAyNTc4NjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzkyMTU2NDUzNTQ2NTEyMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDI4MjMwODQ3Nzk5MTU3MTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzQyNjQ3NzIwNzYwNjM0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgxNDI1OTQzNjg0NjI1MDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzIyMzc5MTU1MzA3NDczMjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU4NzI2MjQ1MzUyMTMyODg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDUzNjk2MzcxMjM1NTM2NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE5Mjk3MjUzODQ5ODYwNDU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTI2NjE5MjgyODM0NjIyNzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI3MDc4MDYyODQ0OTU2MTIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzU3ODY3MTU3NjAxNjcxMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTQwNjk0MDI3NzI1MzU1MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTE0NzkyMDM0MzQ4MDk4MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODY2NzYyMjIzNDU2MDg3MTgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk4OTM0OTIxNDE1OTQ5NDQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA5NjA1NTU5Njg5NTAzMzc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDAwMTM2MjI5OTg5MTQ1MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94335a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY0MjA2MjEyMzk3NTc3Njk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE4ODU1MDQwMjkyNzA3NzM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODE5MDg5MTMzNzEwNzI2NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDY0MzE0OTU3MzU0ODczMDY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDcwMjUzNjg1Nzg0NzIzOTU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUzNDA1NjY1NTY5OTg1MDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDg1NjEzMjA0Njk2OTU3NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2NjAxODg5MTIzNjcwNDM1NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjQ0NTkyMjkxNTE5OTgwNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxNDczOTQ0NzMxNDc4NDM0MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjM0NzMyOTkzNjQxOTY5NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDIzNjI1NjAyODQyNTM0NTAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQxNDc3NDQzNzI0NzM3OTA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg3MTkzNzY2MTg1MDEyNTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozk2MzYyNjk2NzUzMDk0MDAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTA0MzE1MzU2NjY4MjYxOTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MTUwMjA1NDU2NzI2NjQyNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTk5NTUzNTIyOTQxNzI2NjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDA3NTU1MjY2OTQwNzk3NzE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:15.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTIzODg5MjA5NTEwNDI4NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE0MDM2OTA0NTE3MzEzMzA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjM1NjQ1NzMzODg3NzIxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Mjk0NTA1Nzc2NzYxMDY3MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjg0NTMwNTA1MDQ3NDAwNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc2NjQ4Njg1MjcyMjE3NTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQwMDI3MTEwMDEyNDIzOTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5Mjk5MzgzODU0OTE3NTA4ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDI4NDc3NTM0NTI3ODAzMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE2MTk3MDk2NTk0MDE5MzE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjEzNTI1OTA3MTkxNjU0MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQwNDU1Mzc4ODE1ODQ5NDQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDg5MjY2Mzc1NzU0MzczNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94435a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTUxNTAyMTg1OTc0OTQ2NzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTQ3NDcxODgzMDUzMDgzMDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODkxNDQ0MDIyODY4OTA2MTU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY4OTU3NjI3NzUxNjEyNTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE2OTQ5NjY4NzEwMzc0MzE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE2MjQwMDY0MjE5NDM0NzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjQyNDE4MDgyMTg1MDU4MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTA2NDY1MjIxOTQ4NDA5MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY4MTU3NzA4NTAyMzIwMjQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU1MTU4NDMwOTA4NzU3OTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE1MjMyMzcwMTY3NzIwNzM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk3NjYwMTMyMzA2MDQwMzQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzYxMzI3NzM4NDQyMTUzMTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE1NTU5NDI3MDUxODIyNTI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODE0ODg4Mzg1NTY3MjIxMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgzNzA0ODY2OTkwNDc4Mjg5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwMzY1NjUyNzA2MzQ1MzQwMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzcwNDU5Mzc0ODc3MDg3MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MjcwNjc0MzU0MjY4NzkxMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDk5MDkxNjE4NTk5MjU2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDY5OTk3NjI5NDY4OTQyMTU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA1MTY0MTUwNDQ1MTAwODcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTUyMzQ3Njk2Mjg5NDI1MDQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg1MzUzMzUzNDE4MTM4MDEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxMTU3MjgyNzQ2OTQxMTgyNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTExMDE1NjM3NDE0OTA1ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzEyNDgzOTI5MzE5MTU1MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzIwNDQ4MTM5OTg0MDk0NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDk0MzEzOTA3MDA1NTQ0MjAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTYxMDEzNTY2MjAwMzIwNTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:16.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI4NzMzMjU0MTI4OTc2Mzk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTY2MDY2MjE1MjYwMTI0MTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94535a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjI0NTA5NTM0Mjc1MDcyMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDkxNTc2NjE0NTA4MTAzOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODc0OTA0ODA0MTQwMzEzNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTQxMDcyOTE4MDc5ODEzMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDk2NjIyNzQxOTM3MjE4NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NzMwOTQyNjQ5MTg3MDM0NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODk3NjAzMTgzMzI5ODcwOTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTk0NTE1NDkxODM5NDAzMTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQwNjM0MjM5NTk1ODc0MDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgyNzQ3NDg4Nzc0OTU3NDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU1MzczNjMyOTQ4NTA5MDY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTE0NzE2MzMyMzY1NDM4NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTc1ODk3NjgxMTk3NDI2MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxOTQ1NzEwODg1MDQ4MTgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzcyNzgyMDUwNDA4MTQ3MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTgwMDc2ODcyNjE1NzU4MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NjM0MzU3NDk5MjYyMzQ3MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTA2MjMxMjA0MTc1NTk5MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTA3MTUyMjk4NjM0NzYwODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDk1ODc3NDU2OTk0OTE1MTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODI2OTc1OTM2NzM2NDY4ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTc4NDY1NTcwMzgyODU1OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzM5MjM5NzUzMjk4Nzc3OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM5NTgzNDYwNTUyNzM2NTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDc4NzE1NzgxNzg3NTc5NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ4MTE0NjM4MzgxNDIxODc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY4MjI3ODc1MDA0NjAwMzc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzQ5OTM5MzYyMDE3NDQ0MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzM4Mjk1NjQ1MTcwMTQ1ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU3MDc4NzA5ODEzODEyMDIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODU1NTY0NDY4MzI5MjYwMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTI4ODM0ODEzOTM4OTM1NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94635a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDcwMzg5MDc0Nzg0OTM3OTcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:17.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzgyNzU4Nzk0MDQxMjg4Nzc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ3MTMyMjAyNTcxMjAwNTgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjExNDA5ODI1NDcxODExNTY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTAwNTgyMDQ0NDUyMjY1MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcwNDA2NjM0MjYwOTgxMjQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMTIzMTQzNDQ2MTQ2Nzk3NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTMzMTM2MDkzMTY3MjE4NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjkyNzUwMjY4NDAyNjg1MTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQyMzcwMzE3NDIzOTQ3NzE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDQ1OTYzMTQ4MjM1NzcxMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTcwMTE4Nzg4NTMyNzEwNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTExNTM2NjQ5MjQ0NDc1NjE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTExNzAxNzUzOTY5ODU2OTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTA4Mjg5MDUxNTIwMzYwNTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODYxMzU4MTM4ODk3MDcyMTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTgyMTAwMDU2OTUxNDMzOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE0NTk0Njk3MTY0NzIxNjMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU1NTYyNTEzNzUxNDI3MzAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM4Njc3NzE3ODc0MTc4MjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MzIxMTg4ODM5ODMwMjY0MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjE1NjU5NzA5MDE5ODA2Nzg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgzNjExMjUwNzQ5NDczMzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NzU5MjY1NzM0ODAxODEzMzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTgxMDEzNTAzNjQ3NDEyNjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjI4MTY2MjQ4MDY0MzcwMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzQ3MzE1NzAxMDY3NTg0MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzM4NDUzODgyMTc0MDQ1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzk5MDIxMDAwNDEyMjg3MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTkyNTI0NDcyOTA4NzUzMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ0ODIwMTk3MTkxMDQ0NTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTEyMDgyODQzMzc3MDMxMDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94735a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzgzODYwNDI3MTMyNjkxMzk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjQxMzc5NTQyMzYwNjE0NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTE2MzE1MDQ0MzE0MzczNDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTY5OTIyODY1MTE5Mjg0NTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzk1MzE1MjI5MDM0NTYxNjYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzg2MTMwNTI0NTA5NDAyNzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTM0NTYxMDE4Njc3Njc4NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:18.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM0Njg2MjkzNjY0NzQxNDE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDAzMDQxMDU0NDIyMDYzNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQwOTM3MDE4MjM3MzEwNDQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg3MjkwODExMjAyMjkyMDM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM2ODE2MjY1NjA5MzQ0MDYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAzMzUxMjA3MTM4NTE1OTU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDcxOTc0NjU5MjMzNDIxNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2MTY2MDk4NjA3MjQ2MTQwMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY1OTgzMTA5MDI1MTkxMjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUyNTQwNjUwODE0Mjg5OTMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTYzMzYxOTI2MjcxOTc5NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzOTQzMzY1NTk5MzgwNDE4NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzQzMjEwNDc2MDA5Mjk0OTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2Njk0Mjg1ODA1MzE5NjE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTg0ODY3Mzg1ODIwMzI1ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYxNDM4MTI1OTU0NTU2MDk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NzE5MzI1ODEyODk5MTczODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQ4OTcxNTE5NTUxMDU2ODM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0ODM3NTc1OTc5MjYyNzk4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwMDk1OTc1MDA1OTkzOTExMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjgyOTk2NzM3Njg5MzI2NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc2OTEzMzU3NDQ2MTkzMTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTgzNDgzMDE2NjEzMjc0MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDk4NDkxODkwMDA2NTg5ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDUzMTQ3OTMyODQ1MzAyMTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94835a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODk3ODAyMzQ3NTA5OTE4MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzA1NTQ2NTk3MDQ5MTEzNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjMxNjE5NzgxNDU0OTEwNzE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyODI3OTc2NTM4Mzg0MzgzMjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDY3OTQ5NTI0ODk2NzI3MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NTc4Mzk1OTI3OTYzMDMzNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQwOTgwMDM5NzcxNTYyODM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTA0MDMyODAxOTgwMjc2MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDU5OTcwMjg3MjczNzg4Nzc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTczMzk5MDIxMzU0ODI1NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE2OTI4MzQ4MDM0NDg0NDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg4OTAwMjk4MjUxOTcxNDQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTAxNTEwNjY5NTEzMjc0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzIxMDcxNTM3MTQ4Mzg4MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDI4OTU5Nzg1NjM2NjExMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTEzOTcxNzQyNjEzODA1MDk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzAwOTEwNDkyMjUxOTQzNjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcyNjY3NjYxMzE2NzUxMDY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDkzMjc4NTIzMTk1Njc1NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:19.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODM4MTE4ODI4NTIyNTU2NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg3MzYxNzM2NTM5Nzk4MjYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODY5ODQxODk3NTQ3NzEyMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDExOTYzODUwMTE0MzkzNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI5NTQ4Mzk5MDc5MzI0MjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjY2MDQ4NzQ1MzA5MjY5NDE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA3ODYyMDg2MzI2NDkyODY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMTI1NjUyNjY4MjE1NDk3NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTIyMjIzNTMwODIyMDM4NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjU5MzQyNzEyODA3NTc0NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU5NTgzMTA2NzE2NDExNDk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg2NTA2ODQ3NDQxMzk2MzM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI3NzkwMzQ5MjQ4ODkxODY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94935a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NDg0MzkxMzQzMDU0NTA5NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQxOTI0NzkzMDAwMTExMDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk5NDE0MTcwMjI0MjA0NzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDg1MDYyODE1NTI1MTU5NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEzMDM3MDAwOTA5MDQxMjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTAwNzA5MTkwNzM0MzU0NDE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQyODg1NDI0NzY0MzkwMjE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDI5Nzc1NTE0MDEzNTg5MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzExNjgzODU0OTU2OTQxMzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDg3ODcyMzc4NzAyODAxODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTQ0Nzc0ODM4MzcyNjMzNDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA5NzcyMDQ0NjU0NjM4OTM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ2MjcyMzkwODg0NTg0MTEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDE0MDY2OTgxMzA2MjAxNjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzODY0OTA4NDQ0MDIzMzIyNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTkxMTAwMzY3OTQ2MTUyMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgxOTczNDE3MTE1NTU2MTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM4MTAxNDE2NDg5OTk5OTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"894a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDc4OTc4ODY2NjkyMTQzMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"914a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUxMjU5NzMxOTI2NDQ3NDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"994a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjg3NTE4NjE5NTAxNzgwMzQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODM3MDY1NDM1NzU1MTk0NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEwMjU3MDA1NDA1NzQ5NDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ2MjQ4MTY2OTM0ODAwMTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTUxNjY0ODU2OTAyMDg3MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzQ0NDY2NTE5NzY4NzQzOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTk1MzA3OTgyNDg1ODY0ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODIwNTcwMzY1OTc2ODgyOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzczODA0NDE0NTc0MjAyNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM1NTgyOTE0NTE2NDcyMTQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzExNjU2MzI1Nzc4NTE1MzY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f14a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTA3NDE2MzcwNTY5NTY1MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f94a35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzOTExMjQzNzI3NjgyMzcxOTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"014b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDg0ODc4MzY4MTQzNjg5NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"094b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg1OTMyNTU4OTAxMDg4NDI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"114b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzgzMzcwMzEzNTE5MDc3MDQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"194b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:20.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTYwMjc4NzA0MzAwMzQyODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"214b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTkxNzczNDYwNTYwNTYwMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"294b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIxOTU5NDkxNTY1MTE5Njk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"314b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEzNTUzMzMyMzU1NjAwMjAwNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"394b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIxNzEwNDY5NTMxNTk3NzEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"414b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk2NDE0NzY2MDU3MDM4MjM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"494b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgyMTA1MDEyMDI0MDIxMzk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"514b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA3MTI0ODAyOTYwMzkyODQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"594b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIxMDExOTI4MjY4ODI1OTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"614b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA1OTkxNjk2NDc2MTE2Mjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"694b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTc1MTkyNDQ1MDIwODI4ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"714b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjY1MzU5NjUzMzA4MjQ4NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"794b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTM5ODQyMTc5NzMxMzcwNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"814b35a8-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUyNDE3OTMxMTQxMzMzODY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"682e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTg2NTEwOTgyMDYwMjY1MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"702e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM3MTE3MzA3Nzk1MTMxMTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"782e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODY1NDk4MDM2NDc4MTAzMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"802e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM3NzkwNzI1MTU0NTc5NTgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"882e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExMjI5NTExNTc2NzA2OTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"902e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTk0MjI2MjU3NzM3MTk0MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"982e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM3Mjg1NjkxMjU0NTMzMDAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzY2MTAxNTMxOTUxMjg0NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM3OTA4MDg5OTQyNjUzNDE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTk0OTcwMjU0OTgxOTQ3NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDY1Mjc2NTQ5NjE4Nzg3MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA2OTAwNDIyOTk0NzMyNzExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQwNzMyNzc4MTg2MzIzNjMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjQ3MDk3ODk4ODMxNjYyOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzMyNTMwMzk4MzA0NDQzOTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTI0NDU0MjM3OTE4NjE4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTM2MzQ1MjYyMjc1ODgwMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f02e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTA4MDk1ODE4OTU2MzY3NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f82e2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NjIwOTQ2MjM0NDQ2OTExMTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"002f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTMxODg0MTEzOTk1MTE1OTY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"082f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTQ0NzkyNTAyNTI0OTAwODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"102f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTEyOTE1MDE1NTg5MDA5MDI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"182f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTg4NDc4MjM4NDc1NTgzMTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"202f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTE4MzQwNDM3ODIxMDkxNTQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"282f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NTY0MDg1OTQ3NTQzNjUwNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"302f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDUyODEyMzg0MjU3NTYyOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"382f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjYxNDU1MjcyNTAxMTcxNjgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"402f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzkzNTk1MzY5Njk2OTM1NzU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"482f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjIzOTY5NzU2NjYxMzg2OTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"502f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:21.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzgxMTUyMjI5MDU4OTIxMTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"582f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTA5MjcyMTY3MDc5NzM3ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"602f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE1MzE4NzgzNjE4NjM1MDg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"682f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTUyNDU0MjQ2NzQzNzU0OTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"702f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTA4NzM1OTM5MTU1NDQwMTQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"782f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjYzMjA3Mjk0NzMyNzM5OTQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"802f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE3MTkzNDE5ODc4NDcxMDExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"882f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzIwMTEyMjM5ODg4OTEzNTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"902f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA1Mjg3MTY5NzkzNzc5ODkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"982f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4ODI3NTAwMzMzMzA1NDU3NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjk4NzY1MDI5MDI2NDEwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDQ2MjA4Mzk3MzQ0MjYwNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI4MTg0MzE0NjkxODI1OTE0NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU1NjQwMzMyMjMyMzgyOTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc1NTUwMjg1NjY1MTM5ODM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzAzMTA2ODEyOTkyNDAxMzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODk4MjM2Nzc5Njg0OTAyNjIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjkwODQ4MDk3MDI4ODUwODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODkwNzk4MjE3MDcyOTUyODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjUzMDkyMTI5NDk2OTg4NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f02f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI3Mjg0OTU3MzQyMDYxODU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f82f2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ5Njc1ODc5MzM2MjAwMzE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg3OTA4ODY3MTU5NTU0NDU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjY1OTc2MzI1MDI2MzU5MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTg3ODc1MDQ5NzM0MTY1NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDk2NzAyNTE3ODgzMTcxMDI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MTkwMjQ2Njc5MjU1Njk3MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjM0MzQyNjEzNjA4NzY0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk3NzUyODkxODE5Nzg0NzQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQwOTY1OTA4MzE1ODIzMzM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzQ3OTg1NTk4ODY5MjExODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzM4NTQyMTY1NTc3Mzk0ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTA0MDEyMjg1MTY5NzQ3MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc1MjY3Nzg1MDE2MTM1ODE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyOTM0MTM0MDM0MzQzMzE4OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTAwOTM0NTM4MDM2NDQxNDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTEwMDQwNDcxOTE1OTk3NjcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTI1MDMzOTcwODk3NzI3ODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDcxMzE4NjgwMjA1MDgyNjE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgxMDA4NDMyODM5ODMxNTM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM5NzUwNTIwMzYwNzYxMDgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTUyNDM1NDYwODg5MDUxNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:22.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTI2ODUzMTAxMjM3ODA1MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzODg5MjIwMjM4NzM0Nzg3ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjE4MjYzMTkzNDY5MDM0NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMTk4Mjg5MjQyNjk5MzUwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODAxODE5NzU0NjQ0ODAyMjQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1NTk3MDU1MzQ4MDg2OTMwNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzMzMjk2MjgwNjI5OTgwMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDg4NzIzNTAxMjIwMTQ5ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTMwMDg5NTczNDIzNDYzNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDMxMTQ2MzU0Nzk0NDg2ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzk5NTMxNTM1MzEyMjMzMDgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8302dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzI4NjYzNjU1MTEwMzIxOTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MzEwNDY5MjAzMzc1MDk3NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjAxODg0Nzk4ODY4NzkxMDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkwNTYzNzM3MDc0NDM4NjA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTk5OTM2OTc0NDAzMDIzNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgzODI0ODcwOTEyNTg3OTAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2ODk2NTc2MzY1NzQ3OTQwNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODcwNDYyMTg1ODAzMDQxOTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQyODM4MDY2ODYwMjk3Mjc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA4NzU5MzEyNTM1MjE4NDIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM0NTY5MTA4Nzk0NzgzNDM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMDUxMTc3ODE3MTA1NjMwMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTA5MTEwOTE4ODA3NDIxMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc4NDM4OTU1NzQ0NDg3NjU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI1ODQ0MDgyNTQzMTU5MjY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzQwMzcxOTY3NDAxNzE3MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NzI0NDgyNDkxMDQ3NTk0NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODUwMTk2NzEzOTIzMDgxMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODU4MjQyMTMyMjE5NDU0OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODU0OTI5MTMwNzE4MjU5MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODM2ODM5MDgzNzI4MzIyNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2027-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:23.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTU3NTc4MzkxNzUwOTQyNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTgxNTU3NDM5NzAxODM5MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU2NTczNzA3NjUyODg5MzMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzgxNjUzNzk0MDg2NDkyMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA1MzgxOTI1NzUzNjg4MzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTUyNjY1Nzg2ODI5MDExOTY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE2MTQ1MzQ4NTc2NjE0NDA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc2MjEzNDI2NDM5MTQ3NDQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODkzNDcyNzE3MTk4MjczMjExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MjAwNzYwNzc0ODIzMzg1ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNTYxNzYwNDU2NTA3NjI4NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8312dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1ODc2MzgzMDE5NjI4ODMwMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDgyNzYzOTcyMzc4NTY5NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NzMxMzA5NjI2Mzk0ODU2NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODMwMjkyNzQzOTg5NDE5ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTQwMzIwMDM5NjEyMjkwMDkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTMxMTM2NTM5ODE0MDgyMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MjcxMTM2NjkxMjU0NjMwMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODY5NjkwMTcwNjAyMzA4NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyMDI1MzgzMzM1Mjk1NTM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA1NzkxNzc1ODkyMjAwMjQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzQ0OTk2MTk3MjQ2OTM1NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkyMDE1NDg5MTczMzUxNTAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5Mzc1NzI1NTI1MDQzMDk3MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjU3OTQzMTUyMTY1Mjc4NzAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY1MDEyNzA5NDA4MDU5MTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzcwNTkwMzgyNjU4NzcwNzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjkwMzEwNzE4NDMyMjgzNTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDI5NTQzMjYyOTE5NzA5OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNjk1OTE5MzI3NTkwODM5NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODg5MzY0Mzk2MzA2OTk0NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExNjEyODUzMjIzNTA3ODU3NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTYyNzI4NDI2NjYxMDI5ODE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTMxNTY3MTYzMjgwMTE5NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTI4MjU0MTYxNzc4OTIzNzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyNTkzNzg0NDk3NDM5MDAzNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTI0Nzk4NzIyMDEzNTI5ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzQ4MTMxMjQ3MjMxODgyNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM2MjY5OTgwODc3NjIxODcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyMTgyNjYxMjMwMzU4NjY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTY4OTQ5OTk2NTEyMjk4MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjY0NjQ5NTE2OTIwMzQ4NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:24.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NDE1NjY0MzU0MTE5NjQ3MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8322dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc0NTU0MTY5NzA0MzA5ODA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjc0MjIyODY5NTU0MTkwMjEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDE1Nzk3NjEwNjUyNjYzMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzgwNzQ5OTU1NjA0MDcxMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjYxOTUzMTY3MTY4NTExODA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzQ1OTY3NzUwMjgxOTkyMjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDU0OTMyMTM4ODYxMTI2NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU1ODE2NjEwNjk1NjI4MzY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDAxMzAzMzcwMDg2Nzk2Mzc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzY5NjU2ODIxNDE4NTQ3OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Njg2NjUwNzIwMDg5Nzg3NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDkwMzg4MjAwNjEyNDQ3MjMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2MTczODk0MTYyNTY3NzY1ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDA2OTYxNTEwMDc1MjEzOTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTkwNzM3NDk0MjAxMjA3MTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEzNTg2MzkyMTY5MzI4OTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MzY5MDEyODgyNTE4OTA3MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-02-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk0NjkzMjA2MzcwNzY1ODMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ0NDQwMTQ0MTE5OTcwODMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4MDMxOTkzNDAxNzc2MDI2NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ5MzY2NTUwMjAzODY2NDA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQ5MDM1MjUwMDUzNzQ2ODEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDEyNDA3NTM4ODg0MjgxNTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTIyNzE5NDY5ODcyMDc4MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzNzU2NTM2MDYyMjcwMTY4ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDA3MTQ4MzYyNDg3MjM0MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc3MDc0MTgzNTE1MDk5MzcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgxOTU0NjMwMDEyNTg0MTY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5OTYyODAwMzI4MzQzOTg1MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjgzNzU3NDk5MzMyNTc1MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NDMyNzg1NTU5OTY5MzUyMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUwOTk5NDc0OTQzOTU0NzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8332dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQwMTgxNDg5Mzc3NzA0MTE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg0MzE4MDk2NTk4MDM1NDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTE3MDI1Njk0MDg2Nzk3NjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODE4NzczNDc1MTIwOTI0MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDY5MjY1NzY3MDA0ODU0NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDQxMDE2MzIzNjg1MzQxOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzU5MjkzMDc0MDgwOTIxODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTU5MjQzMTk0MTI1MDIzODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDkwMTI0MDkwMjk5Mjk4NTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjY0NjAzNjM0Mzk5NTk1MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI5MzE4Mjk1MzE2MjU5MTE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTM0NDI4NjY3MDYxMTk3MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDg4ODUwMDA2NjU4NjY4MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:25.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk0MTI3MDk4NzgwNDEyNTUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzgzNDczMDkzOTQ0NzU1ODU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxNjEzMjAzMDkxNzE3OTAxOTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NTY3ODYzMDc2MzQ1Njk5NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODcyNTQ4MjUyNjgzNDU5OTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQ0MjcyNTQ5NDM3NDEwMDM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzOTQyNzk2OTQ4Nzc1MzA4ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjA0MjU3Mjk3MjAwNjc1NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODU1NzA3OTI3MTgxMDgxNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2NTI1MzM4MjU2NjMxMjI4MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQwNDIzNTk0MDkyMTE1MDQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ2OTg1OTI4MDEyOTk2MDQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODQxNjA5ODM2ODEwNDQ3NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI5ODg0ODQ5NjI3NTkzNzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjI4NTAzNzY4NDMzNzM1OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTMyNzk2MTMwMTM2MjU5ODU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxNTA5NzgyMjYxMjkzODY5OTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkzMDIyNjg3MjIzNjA0NjkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3Nzg3MjIxNTcyMzg3ODU0ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8342dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTcxNjM3ODgzNzYwODE5NzUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzE1NDU4ODk0NTc5NTUwNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMzNzYyNzk3NDE0MTQyMTY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3ODk4MzgyMDExMTg5MTU1MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk3NzYwMDYyMDQ4MzQ0NjM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY5MzAzNjc5OTEwOTE0NjEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc4MTA5ODU1NTQxNjQ0NTI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM3NTc3Mjc1MzcxNzMyMTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTk1ODc0NTkxMzY1MTUyOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjIzMTYxMTQxMTQ4NTcxOTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTA2NTA0MzY0OTY5NDIyNTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg0NjgyMTMyMjc3MDEyOTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk1OTEwNDUwNDg0MjIyNDUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzAyMTIwMTczNDA4NzUzNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg2MTA4Mzk3NjY0ODkyMzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzIyODg1NTQ1MTQ1OTEwNTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTg3NzM3NjYyNDg5NzU5NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg2MTQwNTQ3NDM0NDMzMTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzY0NTE3MTE1Mzk2MDI4NzY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDI1NTA4OTk4NDgzNjc1NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTE2NjMzNjI1ODA2NDQ3OTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTM2NjI4NjM3ODEwODU4MTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjQ5NzU1MzcwNzQyNzQ4NDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQwNTE1ODM0NjIxMzc3ODM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjc4ODM1NzU4OTMzMDc1MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0Nzk2NjU0MzgwMzAzMjU0MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:26.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDc5NDA5Nzg5MDUwNjAzMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg4OTg3OTc3MzEyODc5NTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDQyODkyNDYzMDg5Njg5MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAxMTEyNTYyOTQxMTQxMzkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY1NDIwODI0MjkzMDE4NzYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzE4NjQzMjM3MjY3MTIzNjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8352dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjA3OTEzMzgxNTA1NzExNDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDIwNDQxODk0ODU0Nzg5MDEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDE3MzkyODY2NjA2MDgyNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg4MzAzMTk2ODA1ODQ5MzM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU4NTc5MDEzMzkwOTU0NzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzE5NzAxMzU3NDQ4ODU5MzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE2MjM4OTkyMjYzNDQ1NzQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzUzNDE0MDQ3OTMxNDk0NDc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTk0MDM1MTgzMTc5MTA0NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM5NDI5NzIzMDM1Nzg5NzU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ1MjgyNDE4MTE1NTI1NzIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg1OTM4MjQ5NTU5NzE1NzYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDcwNzA3Mjk5NDc3MzQxMDY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY0NDc0ODA2MzI5NjMzNzYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzAzMDI3MTQ2NzQ0ODk5MjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTg4MjQwMDU1NzMwMDQ1MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTgwNDk4OTc0Mjc5ODQzMDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzYwNzUxNjQ4MzAyOTIyMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDExMDQ1OTEzNTc0OTU1MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI2NTYwNzQ4MDg2OTIwMTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjAxNzkyNTQ2NzI2MDIwOTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTk4Mzg0OTEyMjM4MzMxMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTg2NjUxNTQxMjYyMzYxNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjE2MDE2NDMwNDQ0ODMyMDE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM3MTI2MTIyNDkxNzk1NTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTI5NjU4MDU4ODM2NTkxMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE2NDM0MTc4ODkyNzk2NzYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjA5MTU5MzA5MTYxMTA0NzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY1MTU0ODU0NDYxMTQyMzgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDQyOTUxNTQxNDIzMjA2NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDI0MzM3Njg3NTgxMjY2MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDIxMDI0Njg2MDgwMDcwMzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8362dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYyNjYyODU2NTE0MDgwNDY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODcwOTk1ODY1Nzc5MTczNDM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI4MzYwNDE2NjQyNjcwNzQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MDM4ODc1MjEyNzY2Mjk5OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk3MTAwMTYwNTY5MTE2NDg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:27.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDg3NzQwNTA1NDIyNzAyNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTkwNzIyMjgxNjkyNjAwODI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTUyMTkxMjk0ODk4MTg0NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI0Mzk1ODYzOTgzMjc5MDE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU3MDE1MDU2Mzc1NTYxOTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTI3MjgyNDIwMDQyMzY4MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODExODk0MDUxMzQ2NzA1OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTgyMDYzMDYxMzM1NzkwMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTk0ODk4MDc5NDEwNzQ1MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYyODIxNzM3OTgwMzU2MjkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAxNzM0MzQyODcxNjYxMTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUxMzE0NTU4MDk4OTc3MjIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk3Njg0NTI0NzI0NTc5NTMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI1NTg2MzUwODc5NzkyMzI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzkzNDk3NDk2NDEwODA1NDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMjQ5ODM2MTM2MTgxMDM5NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjQ3ODc1MjA4ODkwODM1MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzU0NjQ0MDUxMTgxNDIwNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc1Njk0MzU0OTEzMjYxMTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTQ3MDk3MzU0ODgwMzMxNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgzODY4NjUwMDExMzA5OTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI5NTkwNDcwODI3MTY0MzA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1OTI1Nzk5MjQ5OTQ4NzMwNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mzc2ODY5MDYzODE0NDg5NDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDQ2ODMzOTk3Njg3NDQ0MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjE2MTI3MTA3NjAxNDQxMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQwNTIzMjU0Nzc0NzYwMTkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8372dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjQ1NDMzMzIxMzc3MDgzNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3MzM5ODM1NDk1Nzg4NzA1NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTg0ODI1MDEyMjk1OTkxNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDY4NTUyMDM2NDIxMzcyMzM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDQ4MzUzNDYwNTM3NTczNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NTExNDAxNjUxNDE1NzI1MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODI2ODkyNzQ4MDY5MTc4MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjYyMDIxODIzOTk2OTQ4MjQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjM1NzMzOTkzNDgzMjQ4OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzUxMzE1Mzk2MTM4OTkyODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc3NDkwMTk1MTY4OTA5NTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY4NjI3NTk0NDEzNTk5NTMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDg0Nzk2MzU3Mjc0NDA2NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MTU1NTc2NzMzMDg2MDcxODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc2NDY2NzY0ODA0NjEyODIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDQxMDM2ODk0NzEyMDQ4MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:28.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzY0ODE1ODgwNTgwMTUyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NjQxNTM3Nzc4ODMzMjg0MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1Mzk4OTE3Nzc5Mzc1NjAxNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM4NjIyNjQyODM5NjA5OTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY4MjY2NTUwNDUwNjQwMjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDA3MzYyMzg2NzY2MDU1NjcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ5NTM4NjIwNzk2MDkxNDcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjI5Nzk1ODM5MDYyMDk5NjQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk3Mjk0MjE5MTI2ODgwNzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1MzY5OTYyMTA0MzM1MDg5MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc4NTY2Mjg5NDcyMzMxOTczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIyNjg3MzI4ODk1MzMyMjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTg0Nzk5NTI3MDU3MzM2NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI2NTE4NzMyMDgwNzE5MTM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc0NTc3Mjg2MjYyNzM4MTM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzE5MDY1NTY0NDI2ODc0NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8382dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDQxMDAxNjkyNjIzMDk0MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxOTYyNzI3Mzg5NjI2ODY3NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyMDgxNjM3NjMzMTk5NDg0NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzAxMzY1MTcxOTEzOTc0NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjgzNzA3NzEwNzU4NDIzMzYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU3MzE0MDM0NzQ1MDE1OTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQxMTE3MzA1MDg2MDcyNDAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTczOTAwODI2NTk3MjkwNTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzkwODgyMTgyODYzODk2NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDEzODMyNjcxNTU1OTkyNzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTI1MzQzNDQzOTg3NjA4NTg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTA5NjExMjU1ODU2NDQ4NTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzIwMDUyOTQ2MjQ1Mjk3ODUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzY5ODA2MDU1NTcxMDg0OTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEwMjU4OTAxNDY2OTUzMzg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjUzODYxMjczNzgwODMwMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYxMDgwMzY2Mjc1OTExNzExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTEzOTYxMDAwNTI3NDI4MzkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODc1Mjc3MzE5NzEwOTIwOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzE2NjQzMzkxOTE0MjM0NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgzODg5ODQ2ODg5NjAwMzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDczMjMyODc5ODcyODcyMDc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc0NDIxOTgyMzA4NTk4MjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTQ1MDQ5NTAyMTgzMjMyNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzQ1Mzk1NTQ3NjU2NjIzNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTUxOTUzODYyMDk4NTI0MDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzUyNDk5MDkzNTkwOTc1OTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI0NDgyMDk0MzEzMTg1MzgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzYzNTIyMTYzMTk2MjgyMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTM1MjcyNzE5ODc2NzY5NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTQ3MTYzNzQ0MjM0MDMxMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzIzMzYxMDE1NDU4ODYzOTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8392dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjIzNDUzMjc4MTE3MzcxMDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"003a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODIxNTM0OTMyNDY1MDk4NjE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"083a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDg3MTI5NzU4OTA5NDQ3MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"103a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzIyNzY3MTk1NzY4MTEwNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"183a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzMxMDI2NzM5NjYwMDM3NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"203a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODU5NjMxMTk5NDExNjMyNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"283a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkyMTM1MDIwOTM3ODczNjQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"303a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM1OTQ1ODgzNTI4NDQ3ODEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"383a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzQxMjUwNTg5OTU4NjQzOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"403a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjY0Mjc0NjQ3ODU5MTY3NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"483a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Mjc2MTY1NjcyMjE2NDI5MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"503a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDc2OTk1MzUxMzEzNjc5MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"583a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1Nzc3NTY3MTA3NTMzNzQ2MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"603a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ5Njk1MzUxMjc3OTkxODY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"683a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY3MDU2MjY2MDE4MTAzOTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"703a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk3MTI4Mzc1NDE5NzgzNzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"783a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMzU0MTMxNzE0ODExODQ1MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"803a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM2MjcyMDM0OTExNjE2NDI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"883a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjUyNDkwMzMwNzY1NDAwNTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"903a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:29.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTgwNjY1NjQzNzQ2MjYyNDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"983a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTQ0NTQwODAwMDQzNjAwNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTE5NDUwODgzMDM4MDUwNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDY2MTc5Nzg0MTk3MTA3MDgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ5NzQzNTI3ODgyOTczNDEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTExODkwNTcwNzI1NzI3MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA0NTk1ODg1MTg3MTQ0NTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODEzODA2MDU4ODc3NDQ2NzIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzkyMjk4MTgwNzk2MTkzNTkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzk3ODkwNDA4MzY0OTI3ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTEyMzIyNDg1NTI1NjU1MDE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ2ODc0NTYzNzI3NjI1NzAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f03a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDkyNzkzNTc3NjYwODU1NTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f83a2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTI4ODc3OTY4NzExMzA4NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"003b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTcwMjQ0MDQwOTE0NjIyMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"083b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEyOTkzODA0OTcwNTg5NTI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"103b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDUxNDgwMjE1Nzg2MzU3MzMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"183b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjIxNzMzOTY0MjI1ODY5NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"203b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDU5ODI2NjgwNDEyOTI1NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"283b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQxMjI3NzUzOTEzNjM1Njc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"303b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzEyNTM2NTc5NTI4NDEzMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"383b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU3OTAwMTEzODQ0NDEyMDAwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"403b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjQ5MDM0MzYyMjg1NDcyNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"483b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODkwNzc4ODE3NzQyOTAyOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"503b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDkwNzU4NTk4NDQ4NzAwMjg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"583b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDMyMDE1ODM5ODk2MDgxNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"603b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzE1MDgyODEyMjQ5MzMwNzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"683b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQzNzQ0MTk4OTQ0NDYyNDcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"703b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU3ODA3NjEzNDk3MTMxMzkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"783b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjQxMTIwNTEzMjIyOTI2ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"803b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU5ODIwODgwMTk5NTEyODgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"883b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODY5NTAyNjUwODQyNTk5MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"903b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDc1NTEzNzY3ODM5NDExNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"983b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTY5MTEwMjAxNzU4MjU0NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTI3MzM5NzI4MzYxOTg5NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc0NTc1MDMzOTkzMjAwMDk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU4MjIxMTA3MjkxMjA2MTIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTg5MjU0NjcwODQ5NTM1ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU2NzA0MTczNTk0MzYyNjA0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:30.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI1ODAxNzYyMTQ3Njc2OTE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjIyMjQyNzI3OTQ1MTM0ODMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxODY3MzcwMzAzMzk0NTA0MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTkyMjUyNDI1MDE2ODE0ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNDg4Mzc1NjM3NzQzMDIwNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f03b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM0NDQ0NjQ2OTkwNjgwOTMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f83b2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTk5ODA1NTYwODgxNzUzNzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"003c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTkwOTAzMjc3MDQ5MjY5ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"083c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTkyNzE1NjAzNTU4MTAwNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"103c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTIyNDIxMDM1OTgxODMxNzgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"183c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ4ODIxOTg1NTg3NTg2MTYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"203c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA5ODEyMDYzMjAyNTQzNDAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"283c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzM5NjI1NjA0MjExOTg0NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"303c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQwMjgyMTMzMTY3NDU2OTcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"383c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDg4Mzg2MjAyNTA5NjM0MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"403c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzAyODk3MzE2MzYwOTUxODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"483c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mjc4NDI3NDMwOTI5MDc3MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"503c2dae-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDQ4NjY0MDc3OTg0MTg4MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjIyMTY4MzEwMzU3OTI3NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYwMzcwNjE4NDY4NjkxMzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM4MDI2MjgzNjMxNjgyODY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4MzkwMDcwNTIyOTIzNDIzNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDI2MjU1OTc0NzQwMDQ5NTU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NTMwMDExNTQ4NTE4MzYzMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODU0MTk3MzE1MDM0MzQzOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUwNjMzMTE2MjcwMjk4NTI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg3MDY1OTQzNTk4Njc3MzIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDU5MzYyNDQxMDIwNjkzMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTI2OTkyMDAzNDE3Mjk4NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjk5MTkxNTY5MjQ4Nzc5ODYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTU2NTcxMzM2MzU4MjUyMzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQwNzA3ODIwMzQ3NzUyMDIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI1ODMxNTU5MTYyMzkzMDA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88a26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU2NDcxMzI2MTM4OTQ0NjgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"008b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM4NTU3MzUyODU5OTE0OTQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"088b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzgwMDI5MTYzMTYyODk4MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"108b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDA5MTU1OTUxMTI3NDk0MDg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"188b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ5OTg2MjgyMDIzODI0ODMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"208b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM1MTEwMDIwODM4NDY1ODE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"288b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:31.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI2NDA4NTU5NzE1MjkwMTI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"308b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1Njk3NzAzMzQwMjI4MzcwMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2028-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"388b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzEwMzc3NTU0NDU5NTIwNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"408b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA3ODI3MjQwNDI2MzkxODUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"488b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzAxNjUwMDQ4ODAyMjg5OTU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"508b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE0MDcxNzIzMTM2NzIxMjc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"588b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg2MDkyODA5MTQyMDMwNzExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"608b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE0MjQyNjI4NjQzNzkzNDczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"688b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTQ3OTIzODIzMTE2NjEyMTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"708b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMDg4NTA3MjUyNzM4NDkxNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"788b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjQwOTc1NzkzNjM1NzYyMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE0MzYyNzEzODcxNDU3NTI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzg5OTg0NTQ1NzQzNzI4NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA0NDg2MjU5MTc5NDUzOTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzY4MzU3NDE2ODI2NDA0ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDEzODY2MTY5NjI4MTY0NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDc3MzI1NDc2NTYzNjAxODQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY5Mjg4MDQxODA3MjkzNTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk0MDMxNTU5Njg1MjcyNzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTY2NTkyNTcyMjcyMzg5NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc0NDc2NDE4MTk4NjIyNTg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1MTM3NzE0Nzg4NjUzMDY1NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MTczMjc5ODkzMTc5MjE4OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzEzNDg1ODEzNjQzNTkxMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE5Mzc2OTI0NTQ3MTkzNTQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODE5NjM3NzkyMjY3MDMxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88b26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjgwOTUxMTUzNjc0NjQwNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"008c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjUxMTUyODk4MDAxMDA5NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"088c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MzI4ODQyNjE3ODc0ODMyMzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"108c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTM3ODEzNDY4MTQ1NDk3ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"188c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODU3NDE4MTAyMDA3NjAwODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"208c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIzNTk1MTg3Nzg0MDU0MDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"288c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA1MTk4NTU4Mjc5NjI0ODM4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"308c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjMyNzI3ODk2MzY2NjgzODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"388c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MjQzNzYxODM5MDQ2NDYwMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"408c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzc1MzkxNDIzNjE1MDA3Njk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"488c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTA1MTgxNTAxODc0NDYwNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"508c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQxMDU4MjYzMTM4MjEzOTU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"588c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM0MTQzMTcwMDkyNzk2NzMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"608c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTUzNTMxMDY0NzIzNjY5OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"688c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk1NjYyMTA3NzY0MjYwNzY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"708c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM5Nzk4NzE0OTg0NTkyMTIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"788c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTkwODM5OTQ2MzM3NjkwMzY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTY3NzEwODkwMzQ1NzY5MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODI4NDIzNjY5MDA1OTg2MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg5ODYwMjYwMTI0Mzc0ODkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ1OTc3NDI2MTEzMjU4MDg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzk5NDY1MzQ3MzI5NTIwMjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjMwODI3OTMyMTc3NDMzMTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:32.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjYwNzM0NzM1ODkwNDUzNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDMxMTgzMzIyNDA1MzYyNjM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5MzcxNzI1MTYwOTM4MjY5MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODI2NDI5MzcyMjYyNzUzNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA2NDc0MTEwNjk4NTYwOTAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDA3ODYyNDY0OTQ3MjAyMjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODcwNjc0OTQ4ODIzOTQ2MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTUzNjAyODU0NjUzOTE2MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM5NDMwMzQxMzI5OTQ2MTg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88c26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDc2NzIwMzk4MjIwMjcwMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"008d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTQ0NDM5OTUwMTQ1MjcyMjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"088d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU0OTI4MDM1NjMwOTUwNjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"108d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY2ODMxODk1NzUzNzY0NjI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"188d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjY2MTU3NDA1MTI2NDg5NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"208d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTU3NTA3MjY3Nzk1NDYxMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"288d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjE4MjIwMDQ2NDU1Njc4MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"308d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDUzOTY4OTYxMTM4ODMyMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"388d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTk0MDM1OTgxNjE5OTY3MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"408d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDEwNDQxNjQxMDk2NTMyODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"488d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI3NDcwODI3NjY3NDA5MDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"508d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQwNTA0Mjg4MTE5NTM2NjAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"588d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg0NTg3ODUzMzk0MzY2NTE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"608d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzcxMDczNDQ0NjIzMjQ1MzU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"688d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjI5NjA2NDkwMDI0MTg5MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"708d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYyMTUwMjUzNjU1NzgwNDMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"788d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTkyNTY2OTE4NjE0NzkzMzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzU0MzQzODE1NzI5NjYzODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzcxODQwODM4NTIzNDMyODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NjQ4MzQ3MDMwMDk2MjIwMDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA5MzcxNjg4MjkxNDc0MjUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjQ1NDQxNTU2OTQ1ODI4ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjgzODkyMjIyNzcxMzQwMzAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODY3NDU1OTY2NDU3MjA2NjMxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU4MTg5Nzg0ODUwMjc4MjQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIyMzE0NDk2NDg5OTY4MjE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDA1NDc3ODYyMTE0MzEzNjUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzM0NjcwOTU1ODMzMTkwNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDgxNTUzMDkyODIwMzc3OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ4OTMxMjM3MDY2OTk1NDA2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjcxNTIxNzM5MTU2ODc1ODE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MzUxNzk0OTMxODU5Njg5MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88d26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDI0NTM5OTI2NTIxNzQ4ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"008e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDIzNDE5NjYxNzYyNjYwNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"088e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjM4NTQ4NDg2MDU3Mzg4MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"108e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDk1MDM4MDg0MDQwOTQ4NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"188e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDc2NTIxMDU2NjgxMjk1MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"208e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODI4NjI0MjM2OTk4NTgxNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"288e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODA4MTY5MTQxMzA0NzQ2NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"308e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTM3NTM0OTMyMjA3NTk0ODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"388e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyODM1NzQ3NDI3MDc0MjQ1MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"408e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYwNDY2NTgxMzAzMTI0NjY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"488e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ3MzI5ODgzMjU3NDM0ODA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"508e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjEyNjEzNjM0NjE2NTMxODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"588e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:33.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDM5NjA1ODc5MzM1MTIzNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"608e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ1MTQ0Njc1Mzk0Nzc5MzI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"688e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgwMzQ1Njc0Mzc5MjIxMTE0NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"708e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTQwNDY4NTAwNDAwMzczMTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"788e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM1NjMzNjA2MDA3MTI5OTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzU1NjYxNjkxODM5OTc5MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTUwNjQyNzQzMTEzNDQ3ODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMDY2MDU5Mjc4ODc3MjI2NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU0NjIzNjg4OTQ1NzE2MjA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTk1Mjc5NTIwMzg5OTA2MjUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDczMzk3MzkyNDYwNDc5MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjg3NTcxNjY5MDQ2MzA2ODQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ4MTE3MzE2NjA2NTQxNDc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTIwNzM3ODkxMzgzNjIyODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzUyNTY4NzcyMzIyODc2NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTg0NTYyNDc0NzMxMzA5NzQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDAyNjU1NTYwNDQwNzQ4NzMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDYwMjM4Mjk5MzgzMjYxOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjE0NTc1ODMyNDg3NzQ2MjIwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjM5OTc2NzczNTM2MDQyMTgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88e26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDg4Mzk4NzAwNTczOTQwNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"008f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ2MTMzMjg1MDI1MzQ3NTI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"088f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTMwOTU1MjkwNTY4ODk2MzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"108f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYzODM2NjIzNjg5MzQyNTg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"188f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTc4MzMzMjE2NzU2Mjc1NTg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"208f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTIyODc2NTczNzg0NTA2NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"288f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA4MTgxNjQwNjExNjI0NTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"308f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNzUxNzQ1Mjk2ODE1MTY5NTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"388f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODAyMjU2NzE3MDc4NDEwMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"408f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDM0NTI1NzgyMDIyMDMzMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"488f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ4NzU0ODM4Mjg4Mjc2NzMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"508f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzYzNzEyMjI4OTM1MTY4MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"588f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Nzk5NjMyMTQ1MjY4OTAzNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"608f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDgxMjA0NTc4Mzg4NTU0OTUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"688f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc4MzM5Mzg5NzU0NDUxMTM1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"708f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzkwNTY5NzU5OTgxNDA2MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"788f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY0Mjc3MDI1OTkyMjQzMjE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"808f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDg3MDgyNDQ1NTQ5NDM0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"888f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzAzOTc3NDA1MjMwNTEzMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"908f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIwNTY1OTcxNjIxMDM5MjI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"988f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDM1Mjc4OTQxMzExNDg2NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE0MzU2OTQ0NjY4OTE2NDQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzMwNTkwMjA4ODc1MDMxMjU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDcyMTYyOTUyMjkyMTY3NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjkyMTIxNjk3ODI5NjI0NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODU4MjgwNDEzODM4ODA5MzY0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg0NzU1ODgwNTQ5NTk5NTAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4Mjk0MzYwNDIwMTU5Nzg1MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMwNTI2MTk0OTc3NjAwNTI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc4MTU2MjQ2ODU3MDgyNzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mzc4MzU5MDUxOTU2ODYwMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f08f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:34.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcxMzg0ODcxODcwMzYzNzcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f88f26b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc3ODc1Mjg0MjQwNjA3MzQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzA3MTc1NTM4MDA5MDgyNjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTc2MTg1NTc4MTY3NjYwODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDIzMTE5NjIwNjA0MzUwNzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTMzMTI3MzM2NDk1Mzg3Nzg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MDA5MTQ3NTIxNDEzMjY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTAyNjk4NDcyMTI1OTczODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDQzNjY2NDAyNjU3MzAxMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDAzODQxNjM1NDQzMzUxNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDg3MDM5MzE2NTk4Nzk4MzkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk0ODQxNTUxNjQ1NDkzNTg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY2MjU3ODEzMDQ5MTYyOTIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTEzMTYwMzE0NzMzNjQ5OTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQ4MDQ5ODc1NTg3NTYxMjQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxOTEyMjI0MDg0MzY0ODg1MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzYzMDE5MzE1ODY0NDk1ODY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzQzMDI3NDkyOTgzODAwNTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg0NjI0NTQxNDU5NDc5ODI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDk0NjQxMDY0MTUwMjIwMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODM0MTg1NDcwMzcxOTcwOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQ5MTEzOTI4MjcwOTg4OTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzUzMzg3Mjk0NTQ5NjY5NDkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkwMjczNDU3ODYyNzA0MjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzYyODczMTQ5MDY4OTM2ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0OTkwNTYxMDA2MDE4MTU1MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg2ODE3NzExMjU2OTUyODczMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM4MTg1ODcyNzc2NzU5NDI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5NjE2MzkzODcwNTAxMzcyMzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDk4ODQ3OTA4NjA4ODUyMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2OTg4NzIyNjI4OTE4MjIzMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTMzMjQ4Njk0MzI1MDYzNTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzIxNjg5MTYxMDkzNzYzMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89026b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTEyNDM3ODE5NzM0NzAwMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzMzMzMjYzMTE1MDEwODAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MzQwMjI5NTc4MDMzOTEyMjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODc5MDAxMjk3ODY2NTE2NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTQzMTYxMTQ1NjQ4MjMxMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODc5MTQ0MDQ0NjcwMzQxOTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwODQwODMwMTYzOTk4OTQ2MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:35.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc4MjczMDEwMjY2MjAwODQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Mzk4MDY0ODU0MDIzNjAxNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzU5OTQ0MDk0NzYwOTkyNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUyODExNzY5OTcwMTYzNzMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTM2OTc3NDgxNDAwOTQzMTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExODc3NTY4OTAzMzg3NjM0MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzIzMzgxODI2OTk5MDQ2MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjgyNzY3MDA5Njk3NTI1MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mzc2NDc3NTQ0NzIxODE2MzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQyMTk3NTA5NjAzMTAxMzI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjEyOTE5MTk5MzQ4MjQxNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjA4ODc4Njk5MDY1MzgyMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg4Nzg5NTk2MzQ5ODcwNDg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDYxNzIyMzI5NTUwMDE4NDY1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNDA5NzA0MjQ4MjE4Mjc0ODIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ1Nzk2OTE2NTY4NDIyMzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTkzMzE4NDQyMjI4OTQwNjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDQ0OTI5MDkxMTMyNjg5ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYxNDc1MDY2OTc0NjM5NjE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4NzE0MDk2NTY1NDA2MDI5NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzQzOTEzODE4ODgyNDQ3MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQzNDE3MzcyMjY2ODUyMjgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjM5NzcwMzgyODIyNTMwNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA5MzM4NTQyNjcyNTg1MjI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjA0NjUxNzI5ODE1NTk4MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89126b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU1Mjg2MzQ3NzE0MTczODA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTM2MTI1MzAyNzgwMTA1NjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzM4NDE1MDA1OTY1MTE1MjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ3MzUyNTg0NzY2NTc1Mzg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA4OTE5NTYzMDY2NDU1NTA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxODY1NzE4OTQ4ODc5MDA2MjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM2ODQwNDg4MjE4ODgwOTgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjY1MTEwMzk3NTM1NTA4MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk3Nzg0NzQ5OTEzMzg4Nzc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg5NDE2ODEwNzExMzYyMTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkzNTQ4MTI2MDYzMTg2NTcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzQxMDc3OTIwNzg1ODczNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1MjIxMDI3MTM4MzEzODEyNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI1OTAyNjk5MTI1OTA4MTM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTk0MjA3MjUwOTUwODc3OTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMDU5MzM3MTEzMDM1MTg2MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5OTg0MDY0MjI1ODY0MTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU1MTg0ODU2NzA1MjkzNTc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTg3NjAwOTMyOTg2NDA1MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDg1MDMzMjgwNTYwNjQyNTA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc2NjUwOTAyMDQ0MTg3OTI2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMwOTc2MzA3NzcyMTk0NzY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDU3NTQxOTYyODk0NTgxMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDc1NDgxMjMzMjY4MjQzODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjMxNTE2ODkyMzU5MjY0MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:36.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDQ2ODY0NDk5ODg2NjQ3MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTI4NzQ1MjAwMDY3OTg3MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIwNTg5NDI2MTI0MzYwMDcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYxNzIzODc2NDQyNTI5OTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDU3NjQzMTgyMzQwNzIxMDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTI4ODQzNzc1ODEzMjI4MDk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODMxMjM3MDIzNjkxMjk3ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89226b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjUyMzQwMjA2MjQ0MzI2MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg0MTk0MjIyNTI0MzYwOTQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNDg2OTQwMTUwODc1NDA0NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY0Mjc3NzM3OTEwMzcyNTkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAzNDEwNzY5Njc3ODczNzUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mjk0MTY1MjcxNTM0NTY1NjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTc2MzMzMzI1NjU3Mjc0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTk0ODA0NDE2MzI0NTkwMTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzk3MTM1NzIwNzExNzMwNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDQ0NzE2MzAwNDkwNjM5NDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc1MDI3MTE4ODA3ODE5ODA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjc3NzIzNDM0MTc1ODY5NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDM2ODcxNTcyMzAwNTc1NzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NjM5NDEzODk0OTc0MTI1MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTE3NDU0Mzc1NjE3NzU4MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODIxNzQ1NjczNzExMzU1MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NTkwMTc3MDk3NzQ2MTk1MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkyNzYxNTQ4ODcyNjMxNDQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI2NzAwODIzMjQyNzI4NTQzMzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM5MDcwNjE3OTM0NDA4NjQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI0NzQxNDM0NzA0NTQ5NTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODUzNzgxMjMxMTUxMjAzMDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg4NzM1ODgxODY1NzM2MjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI1NjI3MzgyMzEyMzYyMDIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODA5ODI5MTQyNjI0Mzk4ODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg4NTQ0MjgyNTU2ODc2NzQ1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjA3ODM0NzU5NDkxOTIxNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzcxNzcwMDQ3NTQzODU4MTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTA1ODU5NjI3MzA5NzIzODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDc3MjgyMTA2NTM0ODQyNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Mjg3NDYzMTIzNjI2ODk3NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjI2MTQyMTg0NTgzNDU0NDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89326b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMTcxOTAxMjg1MDk3ODgxMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTY4NDcwMDgzNjUxNjcyNTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzczNzI0MDcyNDAxODE5MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzc2MTQ3NjY4NjgyNTgwMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjgyNzM3Mjg0NTY3NTg0ODQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODcyOTk4Mzc0MDA4MjY2NTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:37.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzE5NjY3MTQ0NjQwNTgxOTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzYzMzQwMTE1NTc5OTIwMjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzOTUxNzY1MTI0NDI4NTg1OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk5OTg5OTQ5NDA3NzQwMjUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM2MTUwNjUxOTcxMDM4MjkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODk2ODEwNDI1Mzc2Nzk5NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODYyNzIyNTU4MzUxNjI0NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTA4NjMxNjY0Mzg2OTk2MTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExNjA2NTU0MTY5MDc1OTg2NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTM5MDg1NDUyNjAwNDQ0ODMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjgyMjcxODQ5Nzk5NDQzMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY2MzY2MjkzMDk1NjQwMDA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMzA0MjA2MjQ4ODU1MDU4MjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjI2MTMxODUwODUzNTY5MTQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjEzOTkyMTY3OTk0NzczNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM4ODU0NzczMTI1OTI4MDc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzI0MTE1OTc0MTMwMjE1MDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NzkxMjAzNzAzNjEzNjIyMzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyMDExNzg3MzA3NzA3OTk1NzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI0NTU1Mjc4NTA0MzM3OTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk0MTUzMjg4MTA2Njg2MjYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3ODE1NjM2MTA3NDM0MDQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzYzNTQ2MzAzMDc3Nzc0MzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTkyNzY5NjAyNzQ5NTc5ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzkzNjM3Mzg5Njc5MzA1MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTgyMDk2ODQzNTY2ODI0MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89426b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA2ODYwMTkzODU1OTE1NTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA5MDc3MzQ0NzE2NDY4MDcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzY2MTI0NTIyODI0NzUyMDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMyODk2NTQxNzg1MDAzNTQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDI3NDczMzExNDczOTUzNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDgwNTgwNDk5NzczNjk5NjEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODA2MjM4ODI1NjA4NzAxNDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA2NTgyNjg5NDA5NDUzMDg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxOTk4MDQwOTgzMjAzNTQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTg0NDYwMTU4MzIzNDI0ODExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjkzNTA5NjE1MzM1NDIwOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDQ5NjExNDIxNTkyMjU0NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIzMTAwNDc0NTAzNTcxOTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0OTQ2OTU0NjM4NTE0OTE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU2NDM0MzA4MzAyNTU1ODcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:38.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2OTM3NzMxNTc2MjQxMjUwNDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzI2Nzc0NTgxMjMyNDMxNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkzODUyNjcwNTYwNjQ1NjEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDU1NjQ3MDE0NjMyMDAyMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDQwNjA4NzE5MjUyMTMxNjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzM1NDI0NjI2ODMxOTIxMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Mjk4NDMzNjM0MjYxMzY4MzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUxODEzNTIwNDkxNzU5NDQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ4OTMxMDQ4NTUxMzU1OTg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjQ0MDE1ODAyOTk0NTQ4OTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTYwMjM1MTM2ODczMjEyNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTgzNzI0MzExOTIzNjE5MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ4NjM3NTY1NzAwMjQzMjIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTY1MTU3NDA0NjA4MDY3NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1OTU2OTA1MDY1ODAzOTI0MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTc2ODUyNjQ0ODczMDIxNzEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzUzMzg3NDcxOTkwNjY3NDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89526b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE3MDI3NzA1MTQ2MDE3MjM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzc3NjMwMDU0MDQ4OTU0NjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzgxMTU2NTQxNTczNjQzNTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjY0NDE1MDUwODc0MDI5OTY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTA0MTU4NjU4NTU4Njc2MjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTEyMzE3OTM1Mjc4NjAyMjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MTI0MjIzNTE2NDQxNjg0NDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY4NzA2NDQxMTQ2Njk2Nzg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTc0Nzg0MDA5NzE5MTUwODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzU2MDQ3ODMwMzE5MDYxMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTMwNDc2MjM1MDMyMTkyOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE2MjA3OTQ4NDA0OTM0ODQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTcxNDkzODYwMzg3NzI2NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY1Mjg3NDY2MDU3MjgyNDkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzM1MTc0ODAzMzA0MDM0MjQ0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDIzMjMzMDU4NTQ0Njk3Mjc3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQ0NDgwMDAwMzU1OTQ5MjU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODY1ODgzMTY5MDQ3MDMwMjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDQ5Mzg1Mjc4NzI0NDc1NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDg2NDYwOTU0NzkzMzM5MzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTEzNzcyMzY5NDI2ODQyMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2029-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUxMDMyNzYyNjk1MDEwODY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTQ0Mzc4ODQ5NDA3NDMzMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3NDU2Mjk5MDc5NjI5OTI1NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQ4Mjk1MDExMDgxOTk4MTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjA0MzQxNDk2NzA5MTY5ODMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYwODQ0MDM2MzUzNTcwOTY5ODE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU2NzYzMTM0MjM2OTgzODE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjU2Mjg0NDA1OTE4NTY5OTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzYzNTg5Mjg2MDk5OTIzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5MTk5MDc5MDMwOTgxMjY5NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTkzMzA0NTc0MDY4Mzg5OTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89626b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQwNjM2MDI2MTI4NDYxMDk3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzQwODAwMzMyNjIwMDIzMDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTAzNzAyOTIzMzc0ODk5MDY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTY3Nzg1MjE3NzI4NTc1NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODcyNDcyNDQxMjUxNDYxNzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDU3MDk3ODQ1MDgwMDAzMjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzA1NjYxMTIwMTcxNDQ4Mzg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDQwNDY0MTc4MzUyNjQwNTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg3ODIzODg3NzcxMTIxNzMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzI2NDUxNDI4NTQzNzM0MTg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzNTc2NzQ2NTkyNTIxODcyNTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NjE0NDQ4NjA2MTUwNDYyMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzkyMDc2NDc3MzAzOTEzNjM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzExOTU4NDg5NDQ2ODA3NzI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:39.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTAxMzMyMjYyOTI5MDQ4NzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTI2NjIwNDg0MzIyNzkzOTIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk4MjgwMDkzMDg3MjA2Njg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc0NjAxMTgyNzA0NTgwNjI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTk2NTg2NjU5ODUxMzI1NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NTEzODY4OTIyMTE4OTUxNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-01-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTc4MDE5NzUyNTM1Nzc0MDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTIyMzM5OTQ3MzUwNzUyOTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDg5MjA2NzQ2MjM0OTgyOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxMjQ5ODkzNzY4Mzg3NTg4NDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU2MzU5ODE4NDkyMDcyNzU3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzEzMjU1NTEzMDA5NDg4Njg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNzg1NDY4MjE0OTI2MjkzMDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDAzNzU3NzY4OTA3NTAyNzMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Njc3NDYwODkwMjYxMjY5MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0MjE4OTg5NjYzNjk4NzI4MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTk5OTQzODg3MjUzNjEzODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzgyODk5MjgxODYyMDU5NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89726b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzkzMjkwMzIzMjQ0NjM1NjMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY2NjU3NTM2OTc3NDMwMjgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDEwNDIzNTk0NDg1NDIwNDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzAyMDM2NzEwNjI2NjE5NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU1MzY0NzM1OTUzMDM2ODk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY3MTQ5ODA1ODgwNTcxNDg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDg1Mzc4NzQ0NzI4NTUzMDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ4MDM4Mzk1ODQxMzkxNzI3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzU4MTE1NzU1ODMyMTU0MDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjE1OTk5NjU2NDI2MzA4MjI1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjczNzU0NDE3MTMwNTY0NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjkwODAxNTk1NTEwNTU1NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzEzNDY2MTEwNTI1MzM0NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODU1NTc4NzQ4NDY4MTAxNjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTIyNTkyMjAxNjY5ODA0OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI4NDk4Nzc0NjMyODM0NzkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-02-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYzNzI3MTE1MDc4NzAzNjgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMwNDAyNjQwMDYyODM4MDkwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNTI2Mjg1MDI2OTA1NDI3NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"909826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NzIwMDIwOTU3NTc0MjAxMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"989826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NzYxOTY5OTIzODI1ODMxMjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTIwMzU3MDE2MjA3MjQwNDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDE4NTI4MTU1MTYzMzQ1MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMwNjIzNTgzNTQzNDM0MzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM5Mzk1NjgzMDIwNDA5OTQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3ODAyMzIyMzc5MzAyMjQwNDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzIzNDY5NDAxMDUyNTUxOTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI0NDQ0ODk5MzU1MTg4MzQyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTEzNDg5NzgxNTc5OTAwOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDM1MDQ2NDg0MDkyMjY0NjQ4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQ2ODEwOTcwNjU0MDYwNzM3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f09826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTgwNDg0NzEwMzA5NDYyNDkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f89826b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTI0NTE3OTE0MjY5NDEzOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"009926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI1MjUyNDM5MDY4NjgwNjY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"089926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:40.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDQzMjcyMjE4Nzc2NDA0MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"109926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODQ0NDQxMzMyNDMyNzY1MTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"189926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxMzM1Mjg2MDQ2Njc5MDQ1NjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"209926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjE4MjQ0MzkxMjk3OTk5MTcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"289926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODIzODMwOTc4MzA2OTkzMzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"309926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODg5NDYzNjMyMTM5NzE3ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"389926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzYyOTQ1MDgyMDcwNDI4NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"409926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDE4NDAzMzY5Njk3NTAyMzU4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"489926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI4MjU5MTc4NjM5Mjg0MjA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"509926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NjY3MzM0NjA5NzA4Mjc5NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"589926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc1NTY0MzAwNDI0OTk0OTk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"609926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzA3ODAzNjk4MTIxNDk1NTYzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"689926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTczMjUyODgxMjkwNzk4MzQwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-03-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"709926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgzNDg5NDEzODA1MzY3MzA5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"789926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY4NDEyODQ0MDQzMjU0NTUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"809926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzU4OTIwNDQ5NzQ2MTgxNDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"889926b4-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODQ1NjYwMDkxNzkwOTMxMTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY3MjgwMDkwNTYzOTMxMzUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODAyMTEyNzc2NDA5NDM1ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMzMzNTQ3OTM1MjAxODQxMjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzUzNjI1MDA2MjE5NTY5OTcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b423ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzMwODMyNjE0ODcxNjgzMDAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMyODU4Mzk4NTU4MDA0Mzc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA0MTI0NTU0NjU4NTE5MDIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzgwNzg5OTUyODA2OTQwODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDg1MDI2NDgxNzc1NTA5MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTUxOTAxMDM0OTkzOTc1NDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTczNDE3ODExMTUyMTk0ODE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjE2MjcyMTQ1NTE4ODg2NTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzczNjgwNDU0MzU4MzkyNTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzk3Njk2NDczMTE1MTMxNDIzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjExODcwNTQxNDU3MzIyMzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjk4NDg2MDczODU1NzY2NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA4NjEyNDUxMDcxNjEyOTcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODg4MTM0MDkzNjU3MzY2MDY4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTU3MDUyNTY3NDg4OTIzOTQ5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDUxNjE0MjAxODY2MzY3NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc4MDYwNDYxMDE5MzEwMzgzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDY1Njg4MTAxODEzMDM0MzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ1NDAyNDI5MzEzMTI4NTkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzM2MTE4MzI3MTI4MjI0MjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY3NDE5NDA1MzY0NTk2MzcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTA2NzA1NDgyNzYwNjQ1ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-04-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjQ4NDQ2MTY2MTgyNTU1MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjcwMTg0MTExMzU2Nzc0ODE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTE1NTQxNDcxMTg3OTM4ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzA2OTIxMjEzODAwNDAxOTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcwODM4NjY0NzM2OTIxMTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Mzg3NzQxNTAzNjQ0NDkyMDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAzNTI2OTM1MDQwNjA1NDUzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzIwMzUyODQyMDI1OTg1MDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:41.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE0ODk4NTUzMDMwODkwMjcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjA0MTcxNjkwMzM1MDkxNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b523ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM1MDU5NTY2MzkwMDQ2MDgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODM2MjUyNTkwOTA0MTc3ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzUxMDQxNjY1MjI4ODM0OTMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODIwODgxOTM2MDkzMzM3MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDQxMjQ4MzU5NzkzNzYzNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDUzNDcwMjU4OTY4ODQ1NTM2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk5NjY1OTg5NDYwOTE2MjAxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2NjY1ODg3ODUzMDgwODY0MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDAzMzczOTk1NjYwNDY1MDUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEwNjM0MzE0NTE2Nzc2NjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI0ODA4MzgyODU4OTY3NjI5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY1NDYxODE3MjEyMzE0NTUxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk3NjEyNzkxODM3MzA3ODI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTAyNTc4NDUzOTQ2MDk3NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjMxMDIzNzMyMjY1OTEyNzcwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjgzOTU3NzA3NDkyOTQ2NDQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc0NzE4MTQwNTY4MzY0Mzg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzU4Mjc5NDg3MTYzMzg3NTk4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTI5NTQ1NjQzMjYzOTAyMjQ3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjQ5NDYzNTQ1MTM1NzUyMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3OTM0MDE2NjE3MzAwNjY4MjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-05-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTgwOTUwNjU5NzM3MzU4MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU5MDA0NTM5NjcyMDg0NjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MDgyMzA5NzY0ODMxMzUwMTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzM2NTg5Mjc5MzA1MDc2NDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTQ3ODM2MDA0OTI3MjA1MDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDk0MDA1OTgyOTI2MzQ3MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU0NDc3NDAyMjAyNTgyMTIxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MjU0OTI2Mzk4MjcyODcxMzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQzMTYzOTQxMjA3MTcxNzA4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTY5OTA2NDY4NjI5MDE4NzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEzMjMwMjAxMzI4NzU2MTc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b623ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDY1MjcxMzQ1MzIwNjU1NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mzg4NTMyNTg4OTExMjk5MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE5MDAxNzQ3MTkxMjkzODMzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzI2NTAyMDkxMjM3MTczNjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTYzODM1MTAyNjg2MzMxOTgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA5ODk1MjQ0NDM5NjU2NjEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE3Nzk0MzYxNTEzMjA3NzEwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTAwMjA1NDI4MjczMzAwMzkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMTcyNjIxNzQ0Nzg4OTk5NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjgzMjQxOTU2OTk0MDE5MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTMxODQxMDg2MTI5MjAyNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgzMjg4MDE2Nzg0Njc1NzU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3NTg3NTI2MjIyMjE4NDM3MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjE1ODQ1MzM0NTQyOTk5MTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA0MjcxMjAwOTcyOTY5NTc1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjMzNzMwNTMyODMzNjI2ODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTI0ODU1MzUzMjQ2OTExNjIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYwNzA0NDMxMTcwNjY5MjY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzUxMTk2OTgyMDE0MzM1NjkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-06-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTkwODkwNDY3NzMyMjI5NDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDQxMDI3MzAxNjA3NTA5NzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE5MDAxNDExNjkxMDkzOTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjkwMTczMDQ3MjMyNjM0NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDE2ODc1OTMwODg5MDM5MTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTgxMDQ5NjY4MDMyMDM1NzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM2ODgyNzAwNDg3NTYzNTk2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:42.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDA4NjIzMjI3Mzg2NTE1NDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzI2MTU5NDAzNTgwMzQzNTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MzQ2NDA0NzMxNDQxMzkxNzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTk3NzY4ODA4NDE3ODk2OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc5MTU4ODM1OTU4MjY5Mjc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzU2MzAzODgyMjc1MTc3MTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b723ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM0MzAxMDgzMzA1MDA3MTE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU1MzY4Nzg1NzE4MTk4NjQ2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0NTg2NTI4ODA2NzEzNDY3MTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY5ODYyMjMxMjUwODg1OTI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjI2ODYzMjc1MTY0MDA5MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk2ODU2NzM4NTY0ODg0NTIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzczNDYyNTg2MzM0NTM5ODkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTY2MDA0MDEyNDExMzY2ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0MTYxNDA4NDYyODY2NDcxMDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE3MDQwMDc4ODEzNTA2OTU5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2OTI4NDc2NDk1MTk4NTI5MzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTY2Nzk4Njk3MzE2MDA1MjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjE3MjQ5MTI0ODE5ODMwOTIyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MTUwODQ3MjIwMTMwODEyNTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ1MDY1MjQ3NzA3NzE1NzQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjM4NjM3OTQ2Njk2MTU1MjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2OTYyMDQ2ODc1ODM2MzM3NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjAwMjM4ODk4OTU2Mzc4MDI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-07-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDk3NjAzMjEyMTkyMDc1NjgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1MTg0ODk1MzEyNjM2ODY4MzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTIwNjIyNTMyMTE5MjkxMzE2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODQwNjI2Njk5Mzk3NTg1MDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDU3MjYwODM5MTMyNjUzMzQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDE0MDQ1NDc4Mzg4Mjk4MzkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTc4Mjk1ODQ0NDcxMzMwMDU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg5MDIzMjk5NTAxOTY2MDE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjYxODIxMzkwOTk4MzI4MDExMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjEwNjUyMjIxNjUyNDk0NzYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjQxOTg0NzQwNDczMTEyOTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjczNDc2NDc2OTYwODgyOTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDAzNjg3MjE5NDI3NDgxOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjE3OTAxNTk4OTcyMTc0OTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b823ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYyNDkxOTg2MjQ5ODU4MzU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODg3OTA4NjI0OTgwOTcxOTE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzYwMzAxNzUzODc2MDQ1OTU2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjI2NDgxNjgzNjI4ODQyMzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTIwMzk3MTkzNTM5MTMxMjg2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzA1NjQ4Nzk2OTU0MTM1MDQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MDcyMzI1OTIyMTk0MzYxMjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTgwMzcxNzQzMDg4NDU4OTE0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:43.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTEwOTUwNTMwOTQ3NzMwNjAzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODA5MjE0ODQ3OTg1MTYzODgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI2MjE1MzI2MTA3NDUzMzQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU5MTg4MDY1MjQ1OTE0NDcxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk4NzQxNDc3NTI3MTIyMjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5ODY3NDA0MDcwMzk5MDE4NTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcwMTk4Njc5MDg2MzQ1NDc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzgxMzQxNjQ3MTM4NzM0OTkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTEzMTA3NDQyODIzMjM4MTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-08-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODUwMDI2MjcwODMzODgxMTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc4MDAwNTM4NDAyMTUwNjk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzgyMzc2OTI2MjE4NTcxOTg0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg5Nzc5MTQwODU0NTYzODgxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg1NjY3MzI5ODYxMzY2ODE4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODQwNTY1MDA2NTQ4NTkyOTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjMxOTQ0NzQ5MTYxMDU2MDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjU5MTI4ODEyNTQ3OTU0MDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTM5OTI4NDc3Njc4NTk2OTk5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIyNTA5MjMwOTU5OTg2ODMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTEyMTc4OTQ4NDk5NzUxNzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTM5ODc0ODM5ODIzNjg2NTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NTQ3NzYxMjU3NTY4MTQ3NDgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODE5MzUzMzQ4MTM0MjkwNjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM1NTM3Mjc0NDkwMTAxMDU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8b923ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTg4NDUxMDk5MzM5MzY3OTExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTkzNTAwNTc4ODgxODY1MjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDIyODkwNDQwNTQxNTk1MTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTMyOTc3Mjg4MzM1ODc1NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAzOTU5OTYwNDM5ODk2NDEyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTM4MTk1NjQ2NzM1OTI3NTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDY1MDE1OTA4ODM4MjI3NjYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTI3NjM0MjUyOTE2Mzk5NzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMwNDY3OTIwMjgxNjY1Mzc2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQ2ODI1NTE3MDE5NTc0MTA1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MzMwNTQyMDM4MDU0MzkzMzExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODE3NjczNDM4ODA3ODQzMTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTQzNTQ2Nzk1OTQ2NzUzMTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA0OTM3OTE1MDc1OTc2MzAyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDk2NzY3OTg3MjA2Mzc3NDE1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-09-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:44.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODUyNjc1MTAyOTgwMzEyOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MTI2NzE0NTA2OTk1NTYzMTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzYzMTAxMTUzNTYzMzk2Mzg3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzcyNzQyMjE4NTY3MTkwNTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NzQ1MzQwOTY2ODkwMTk4NjExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODU0MTcwODcxMDExNTMwNzAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA0NTc2NzEzODMxNzQ0MzkxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDUxOTM5MDkyNDg3MjAzMjE3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMwMTc3NDgwNzU2MjU3MDgyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDgxNjUzMDU3MTcyNDM1MjY3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTA4Njc0NTg5NTkzMDI5NzIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkwMDQyNzUwOTY2NDkzNDkzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU1Nzc5Njc4MTI2MDE5NTY2MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg0NzE4ODA2OTUwMjc5NjcyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTYxMzUwNjgzNTM5NDkwMDkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjUxNDQ1OTE2MjYwNDkxNDM0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTU3NjM3ODgyNjY0ODQ5OTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8ba23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTMzNDcwNzgzNjk1ODgyMjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzAwMjU4OTEwNTA5NzExNDExOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzM5NjE4OTEyMTMzNTczNDMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTU4MDMwOTg0NzY5ODIyOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTMzNzk0NDU2MjY3NDg5NDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAxMTUyMTE5MTU4NDczNjc0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMwMzU2MDU2MTY1MDU0MjQzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDA5NjQ5Mjg0MzIxODcxNjQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDA2MDQ0ODI0NzcyMzEzOTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyOTUwNTU1MjA3NzEzOTA3NjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NDQxNDQwOTQ1MTQxNjg3MjE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDgyNDM3NDYyNjk1MjMzODQxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzAxMDcwMzc4OTczNDc3MTYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM0OTY4ODc3NTExNjc2OTc5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-10-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzQ2NzgyNDk2Nzg5MzY2MzcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTI0NDQ0MDc0MDYwMzYyNzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzEzMTcwNzE2NzYyODIxNzUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjI2NTczNzIxNzM4ODc0MDg4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjMwNzc4ODAyMDY1ODkxNTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjc3NzgyNDQ0OTE1MzMzMzU0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:45.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDYzMTE0MzU0OTI0NzQ4NTMyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5Njc5NzQyNTEzODEwMDE5NjUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTgyOTA4OTU0Mjk5MjgxODMwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDY5MDU5NzUyMjIxODMxNjcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA0NTMzMDM5MzQzODY3OTkyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjg2MTgwMTYxNzIwODQxNDUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODMxMjYxMDg2MzkyNDI3NjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDE5NzA2NDA4Njk4NzQxOTYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzc2MDI1ODI5ODM2NjA0Njg1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjcyMzgyMzQ5MjUzMzc5MzUwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE2NTY2MTM2MDI5NjU1MDU1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYzODE0NDc5NzQ0Mjg5NTYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8bb23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTk4MzMxMjY4MjcyNzI1NzgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYyOTg5MTUwMDg5ODUzMzA3MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjI5MTc4NjcwOTU4Mjg4NTIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY0NDMwNDk4NTQ0ODk3MDY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTY0OTAxNTY1MDIzMTk2Mjc4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzY5MzUyMjQ5OTgwMDQ2ODcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NDEyMTc3MzU3MzUzNDAwOTE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODAyNzMwMTM0Njk0NDEzNDYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1Nzk4MTUyNDk1NTUyMTc3MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM4MDIwMTE5NzA1MTEyNzI0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDUyMTU2NTYwMTQxMjE4ODUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTc2MTkwNDkwMTIxMDA4NTQxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-11-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"58bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ2MDM0MzMzNzA3NjU5MzYwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-01\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"60bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDg1NjgyNjI5MTE2Nzk0MTcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-02\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"68bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc0OTAxODQ5Mjk5NTk2OTk0MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-03\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"70bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM4ODUzODQ4MTU1NzM1NzM5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-04\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"78bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI1MDQzMzY2MDkzNzMwMjI4MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-05\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"80bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjc0ODkzMzkzOTI0MzU0NjkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-06\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"88bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg3OTM5MTg1OTAxMzc1MDk1MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-07\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"90bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTkzOTk5ODIzNDE3MTg0ODAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-08\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"98bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkxOTY1MDY5MjIwMDgwMTY5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-09\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTk5NDUwODk4ODQyODIyNDIxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-10\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"a8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTE3MzA2MjY5NzgwMDkzMDcxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-11\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ2MzY2NzY1NDQ2NDQ4MTgwMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-12\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"b8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1OTczODMzMDUzODk1NzM5MDE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-13\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzkxOTk3NzU3ODY5NjY0MjMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-14\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"c8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mzc4MjE3ODcwNzc1MTQ1NjAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-15\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODAwNTAyODI1MzM0ODg3OTMxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-16\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"d8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTU5NjUwOTYzNDU5NTk0MTAxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-17\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDc1NjAwNDM1ODA3NzQzOTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-18\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"e8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNTY0ODQ2MTc2NDI4NzgzODkxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-19\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f0bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUxNzIxNjg0ODg3NjQ3NjYyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-20\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"f8bc23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg3NzM4MDc1NDYyMTkwNTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-21\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"00bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDQ4MjY0OTEyNTM3NDkxNjgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-22\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"08bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTE1NDg1NDgxNDg3NzQxMTEzMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-23\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"10bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwODA1NTc1ODk5MTAyNjY4OTgxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-24\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"18bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODcxODY5NTU0MDk0MDE3MDUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-25\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"20bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAwODc4NjAwNzU5MDMxMDYxMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-26\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"28bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDUzNDcyMDA2MDg3NDE0ODYxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-27\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"30bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQyMzcyMzQxODY5NTM2MTE5MTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-28\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"38bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODk5MTc1MDMyNDk1MTMzNTUyMTswMDsn\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-29\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"40bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5NzkwNDM0NjU3NDAxMTMzNzE7MDA7Jw==\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-30\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"48bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTUzMTUzMDA2MTEyMjI3NTUxOzAwOyc=\\\"\",\n            \"planningByRoomTypeDate\": \"2030-12-31\",\n            \"roomType\": \"REAL\",\n            \"systemId\": \"50bd23ba-602f-ed11-97e8-00224882e1a5\",\n            \"capacity\": 0,\n            \"capacityPax\": 0,\n            \"bookingsBookedRoom\": 0,\n            \"bookingsBookedExclPlanning\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"bookingsAssigExclPlanning\": 0,\n            \"blocked\": 0,\n            \"adults\": 0,\n            \"adultsInExtraBed\": 0,\n            \"totChildren\": 0,\n            \"babies\": 0,\n            \"totPax\": 0,\n            \"totPaxExclBabies\": 0,\n            \"arrivals\": 0,\n            \"departures\": 0,\n            \"lateCheckIn\": 0,\n            \"guarantee\": 0,\n            \"pendingGuarantee\": 0,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"roomClassFilter\": \"\",\n            \"statusFilter\": \"\",\n            \"systemModifiedAt\": \"2022-09-08T10:26:46.91Z\"\n        }\n    ]\n}"}],"_postman_id":"ee13a496-343d-4a6b-bd0c-0b449d16fec1"},{"name":"allotmentsRoomType","id":"ccc7996f-548f-49b1-a2eb-57210c8c6861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/allotmentsRoomType","description":"<p>System table:Allot. Planning Room Type HTL<br />Page in Business Central:</p>\n<p>Return the list of the allotments room type.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>allotmentDate</td>\n<td>Date</td>\n<td>Specifies the attribute classification in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>allotment</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>bookingsAssignedRoom</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>lateCheckIn</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","allotmentsRoomType"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"3bedcda8-241a-46a0-96a9-4fd26be72ff6","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/allotmentsRoomType"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/allotmentsRoomType\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDU1NjQyMjU5OTg5Nzk4ODcxOzAwOyc=\\\"\",\n            \"systemId\": \"cd172cbf-2477-ef11-b99e-202b201de956\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"2V\",\n            \"allotmentNo\": \"WEB\",\n            \"allotment\": 32,\n            \"bookingsAssignedRoom\": 5,\n            \"lateCheckIn\": 0\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzUwOTM1MzM1OTcxNTkyNzIxOzAwOyc=\\\"\",\n            \"systemId\": \"d0172cbf-2477-ef11-b99e-202b201de956\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"2V\",\n            \"allotmentNo\": \"WEB\",\n            \"allotment\": 32,\n            \"bookingsAssignedRoom\": 4,\n            \"lateCheckIn\": 0\n        }\n    ]\n}"}],"_postman_id":"ccc7996f-548f-49b1-a2eb-57210c8c6861"},{"name":"Capacity","id":"e4805422-7e76-4053-84ec-e0594e6fd2f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/capacities","description":"<p>Endpoint example for capacity to obtain the capacity from the hotel</p>\n","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","planning","v1.0","companies(< company ID >)","capacities"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"da4460af-5e51-44ae-8c1f-1a6b28f53b0b","name":"Capacity","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/standard/v1.0/companies(< company ID >)/capacities"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"4a68d37a-b660-03e8-654f-16e87b73c641"},{"key":"mise-correlation-id","value":"b25d4077-0abe-4c66-98c5-304f73e310ac"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"Date","value":"Wed, 24 Dec 2025 09:59:50 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/standard/v1.0/companies(< company ID >)/capacities\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODA2NTI2ODU3MzQyODkwMTYxOzAwOyc=\\\"\",\n            \"capacityType\": \"Capacity\",\n            \"allotmentNo\": \"\",\n            \"orderNo\": 4,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2030-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 3,\n            \"roomType\": \"APT\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-08T10:27:18.777Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"bd8061d0-602f-ed11-97e8-00224882e1a5\",\n            \"systemModifiedAt\": \"2022-10-06T11:21:06.667Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMyMzExNjI0MjE2NDA1NTY4MTswMDsn\\\"\",\n            \"capacityType\": \"Capacity\",\n            \"allotmentNo\": \"\",\n            \"orderNo\": 5,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2030-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 3,\n            \"roomType\": \"DBL\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-08T10:28:11.3Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"0eccafef-602f-ed11-97e8-00224882e1a5\",\n            \"systemModifiedAt\": \"2022-09-08T10:28:26.78Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzUzMTAyNTQ2MjcyODY5MDkzMTswMDsn\\\"\",\n            \"capacityType\": \"Capacity\",\n            \"allotmentNo\": \"\",\n            \"orderNo\": 11,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 5,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2030-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 5,\n            \"roomType\": \"FAM\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-10-06T11:22:37.467Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"5435062d-6945-ed11-946f-000d3a25421c\",\n            \"systemModifiedAt\": \"2022-10-06T11:22:47.05Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzMzMDQ0MDg0NTcxNDQ2NDgxOzAwOyc=\\\"\",\n            \"capacityType\": \"Capacity\",\n            \"allotmentNo\": \"\",\n            \"orderNo\": 12,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 2,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2030-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 2,\n            \"roomType\": \"IND\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-10-06T11:23:00.63Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"8a416b39-6945-ed11-946f-000d3a25421c\",\n            \"systemModifiedAt\": \"2022-10-06T11:42:34.047Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjUwMTgxMDAwNTUxOTAwOTQxOzAwOyc=\\\"\",\n            \"capacityType\": \"Capacity\",\n            \"allotmentNo\": \"\",\n            \"orderNo\": 13,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 2,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2030-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 2,\n            \"roomType\": \"JSUITE\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-10-06T11:23:27.893Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"8d065246-6945-ed11-946f-000d3a25421c\",\n            \"systemModifiedAt\": \"2022-10-06T11:23:41.707Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzYzMTMwNzI3MDE3MjM0NzY3MTswMDsn\\\"\",\n            \"capacityType\": \"Allotment\",\n            \"allotmentNo\": \"WEB\",\n            \"orderNo\": 1,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2025-12-31\",\n            \"guarantee\": 3,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 0,\n            \"roomType\": \"DBL\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-07T13:50:19.357Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"b15b2602-b42e-ed11-97e8-00224882e1a5\",\n            \"systemModifiedAt\": \"2023-06-09T07:36:41.067Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTkzMDY1MTM5MDM0NzI3MzkxOzAwOyc=\\\"\",\n            \"capacityType\": \"Allotment\",\n            \"allotmentNo\": \"WEB\",\n            \"orderNo\": 7,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2025-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 0,\n            \"roomType\": \"APT\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-09T11:27:07.52Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"c1e9d955-3230-ed11-97e8-6045bd8e430d\",\n            \"systemModifiedAt\": \"2023-06-09T07:37:41.953Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU4MzUxMDQ3OTkwMTA0NTI0MTswMDsn\\\"\",\n            \"capacityType\": \"Allotment\",\n            \"allotmentNo\": \"WEB\",\n            \"orderNo\": 8,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2025-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 0,\n            \"roomType\": \"FAM\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-09T11:28:21.51Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"2abaf181-3230-ed11-97e8-6045bd8e430d\",\n            \"systemModifiedAt\": \"2023-06-09T07:39:06.817Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Njc4NzgyNjgzNTQwMjY5ODcxOzAwOyc=\\\"\",\n            \"capacityType\": \"Allotment\",\n            \"allotmentNo\": \"WEB\",\n            \"orderNo\": 9,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2025-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 0,\n            \"roomType\": \"IND\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-09T11:28:51.27Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"16eb618e-3230-ed11-97e8-6045bd8e430d\",\n            \"systemModifiedAt\": \"2023-06-09T07:42:29.293Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTE4MTU1MDk3NjI5MTQ2MTkxOzAwOyc=\\\"\",\n            \"capacityType\": \"Allotment\",\n            \"allotmentNo\": \"WEB\",\n            \"orderNo\": 10,\n            \"accumulateOnRealType\": false,\n            \"allotment\": 3,\n            \"balanceGuarantee\": false,\n            \"endDate\": \"2025-12-31\",\n            \"guarantee\": 0,\n            \"hasVariations\": false,\n            \"notes\": \"\",\n            \"officialAllotment\": 0,\n            \"roomType\": \"JSUITE\",\n            \"startDate\": \"2022-01-01\",\n            \"systemCreatedAt\": \"2022-09-09T11:29:32.747Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"58cb38a9-3230-ed11-97e8-6045bd8e430d\",\n            \"systemModifiedAt\": \"2023-06-09T07:43:37.307Z\",\n            \"systemModifiedBy\": \"ef96e2a6-aa79-44a2-9c78-65e2e93a0e7c\"\n        }\n    ]\n}"}],"_postman_id":"e4805422-7e76-4053-84ec-e0594e6fd2f5"}],"id":"d89b6af4-7331-42f6-9904-7ada55adc590","_postman_id":"d89b6af4-7331-42f6-9904-7ada55adc590","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"rate","item":[{"name":"ratesByCustomer","id":"716c2e8b-d4c5-4ade-bf61-b3c2ab34ad82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesByCustomer?$filter=contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')","description":"<p>System table: Rate By Customer HTL<br />Page in Business Central: Rate By Customer HTL</p>\n<p>Returns the rates for each Customer, is neccessary to filter by Customer Name or Customer No like this <strong>?$filter=customerName eq 'ABC'</strong> or this <strong>?$filter=contains(customerName, 'ABC')</strong> for <strong>customerName</strong> and like this <strong>?$filter=customerNo eq 'ABC'</strong> or this <strong>?$filter=contains(customerNo, 'ABC')</strong> for <strong>customerNo.</strong></p>\n<p>Returns the rates for each Customer, you need to filter by customerName or customerNo like this <strong>$filter=customerName eq 'ABC'</strong> or this <strong>$filter=contains(customerName, 'ABC')</strong> for <strong>customerName</strong> and like this <strong>$filter=customerNumber eq 'ABC'</strong> or this <strong>$filter=contains(customerNumber, 'ABC')</strong> for customerNumber.</p>\n<p>With contains it would retrieve values containing customerName or customerNo in their field that are similar to the filtered value, and with eq it would return values that match perfectly.</p>\n<p>It is not neccessary to filter both values at the same time, but you will always need at least one filter to retrieve the values.</p>\n<p>To retrieve more data you can extend with rates and ratesPeriod to get the value of the rates associated with the customer and the period of those rates.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td>Specifies the No. of the rate.</td>\n</tr>\n<tr>\n<td>customerName</td>\n<td>Text[100]</td>\n<td>Specifies the customer name.</td>\n</tr>\n<tr>\n<td>customerNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer no.</td>\n</tr>\n<tr>\n<td>default</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>rateDescription</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>salesChannel</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>webRate</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the locked was modified.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Rates PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>Specifies the No. of the rate.</td>\n</tr>\n<tr>\n<td>ageAFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>ageBFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>ageCFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>allowRoomChoice</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>cancelPolicyStdConcept</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>comment</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>defaultBoardBasis</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>defaultRoomType</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[100]</td>\n<td>Specifies the description of the rate.</td>\n</tr>\n<tr>\n<td>filterBoardBasis</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>filterRoomType</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>globalDimension1No</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>globalDimension2No</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>maxPax</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>minPax</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>nameRateBase</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>notApplyRatesRules</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>onlineRate</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>pricesIncludingTax</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>rateBase</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>rateDeposits</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>recalculateRate</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the locked was modified.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Period PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>rateNo</td>\n<td>Code[10]</td>\n<td>Specifies the No. of the rate.</td>\n</tr>\n<tr>\n<td>ageAFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>ageBFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>ageCFringe</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[150]</td>\n<td>Specifies the description of the rate period.</td>\n</tr>\n<tr>\n<td>startingDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>endingDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>ratePeriodSeq</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the rate period was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesByCustomer"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$filter","value":"contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')"}],"variable":[]}},"response":[{"id":"184587b7-9098-454c-a641-f964f54e1633","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesByCustomer?$filter=contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')?$expand=rates,period,details","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesByCustomer"],"query":[{"key":"$filter","value":"contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')?$expand=rates,period,details"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesByCustomer\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAxNTc1OTQ1MDQwMDM0MDQyMTswMDsn\\\"\",\n            \"systemId\": \"e47805be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"customerName\": \"ABECEDARY\",\n            \"customerNo\": \"ABCDE\",\n            \"default\": false,\n            \"rateDescription\": \"ABECEDARY HOLIDAYS\",\n            \"rateNo\": \"A\",\n            \"salesChannel\": \"\",\n            \"webRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1MDYyODMxMzg0MjQ0MzQ4NTE7MDA7Jw==\\\"\",\n            \"systemId\": \"287a05be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"customerName\": \"ABECEDARY\",\n            \"customerNo\": \"ABCDE\",\n            \"default\": false,\n            \"rateDescription\": \"ABECEDARY BASE RATE\",\n            \"rateNo\": \"TOABECEDARY\",\n            \"salesChannel\": \"\",\n            \"webRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDA4OTQ1NDIxMTQxOTE1MjQxOzAwOyc=\\\"\",\n            \"systemId\": \"5c7a05be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"customerName\": \"ABECEDARY\",\n            \"customerNo\": \"ABCDE\",\n            \"default\": false,\n            \"rateDescription\": \"ABECEDARY2 BASE RATE\",\n            \"rateNo\": \"TOABECEDARY2\",\n            \"salesChannel\": \"\",\n            \"webRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"},{"id":"7127db63-ec04-439f-a3e9-8aaa7186ab1b","name":"Expand rate","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesByCustomer?$filter=contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')&$expand=rates","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesByCustomer"],"query":[{"key":"$filter","value":"contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')"},{"key":"$expand","value":"rates"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesByCustomer\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAxNTc1OTQ1MDQwMDM0MDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"e47805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY HOLIDAYS\",\r\n            \"rateNo\": \"A\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ1NTA4NTg1NjM4MDg1NzA2NzgxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"887805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY HOLIDAYS\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"A\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": false,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1MDYyODMxMzg0MjQ0MzQ4NTE7MDA7Jw==\\\"\",\r\n            \"systemId\": \"287a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ4NTI4MTA1OTI4MjUxNTM2NjQxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"9e7805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY BASE RATE\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"TOABECEDARY\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": true,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDA4OTQ1NDIxMTQxOTE1MjQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"5c7a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY2 BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY2\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzIwOzE3NzU1OTAyNjE0NjY2ODIyNDQxMTswMDsn\\\"\",\r\n                    \"systemId\": \"9f7805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY2 BASE RATE\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"TOABECEDARY2\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": false,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"61bea108-2aac-47bf-bfd3-fb0578bf4820","name":"Expand ratesPeriod","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesByCustomer?$filter=contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')&$expand=ratesPeriod","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesByCustomer"],"query":[{"key":"$filter","value":"contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')"},{"key":"$expand","value":"ratesPeriod"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesByCustomer\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAxNTc1OTQ1MDQwMDM0MDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"e47805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY HOLIDAYS\",\r\n            \"rateNo\": \"A\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE4OzU0NDc4ODYyNjI3MDU0Mzk3OTE7MDA7Jw==\\\"\",\r\n                    \"systemId\": \"7b5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"A\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"W1920\",\r\n                    \"endingDate\": \"2020-04-30\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2019-11-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                },\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzcwMTUyMjkzODM2NjA4NzE2NzcxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"7c5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"A\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"S20\",\r\n                    \"endingDate\": \"2020-10-31\",\r\n                    \"ratePeriodSeq\": 2,\r\n                    \"startingDate\": \"2020-05-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1MDYyODMxMzg0MjQ0MzQ4NTE7MDA7Jw==\\\"\",\r\n            \"systemId\": \"287a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzkyMzk4NjE3ODQxNjQ3OTI5MjkxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"835e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"TOABECEDARY\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"TO ABECEDARY BASE RATE\",\r\n                    \"endingDate\": \"2020-10-31\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2020-05-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDA4OTQ1NDIxMTQxOTE1MjQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"5c7a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY2 BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY2\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzI4NzA2NTY5MzU2OTY1MDgwOTIxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"845e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"TOABECEDARY2\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"TO ABECEDARY2 BASE RATE\",\r\n                    \"endingDate\": \"2020-04-30\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2019-11-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"},{"id":"434eccb9-17dd-4c45-ad3e-af8a7efe2843","name":"Expand rates and ratesPeriod","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesByCustomer?$filter=contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')&$expand=rates,ratesPeriod","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesByCustomer"],"query":[{"key":"$filter","value":"contains(customerName, 'Customer name or similiar, if the value is ABCDE you can put ABC and if it match it will return values')"},{"key":"$expand","value":"rates,ratesPeriod"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesByCustomer\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTAxNTc1OTQ1MDQwMDM0MDQyMTswMDsn\\\"\",\r\n            \"systemId\": \"e47805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY HOLIDAYS\",\r\n            \"rateNo\": \"A\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ1NTA4NTg1NjM4MDg1NzA2NzgxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"887805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY HOLIDAYS\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"A\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": false,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ],\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE4OzU0NDc4ODYyNjI3MDU0Mzk3OTE7MDA7Jw==\\\"\",\r\n                    \"systemId\": \"7b5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"A\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"W1920\",\r\n                    \"endingDate\": \"2020-04-30\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2019-11-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                },\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzcwMTUyMjkzODM2NjA4NzE2NzcxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"7c5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"A\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"S20\",\r\n                    \"endingDate\": \"2020-10-31\",\r\n                    \"ratePeriodSeq\": 2,\r\n                    \"startingDate\": \"2020-05-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1MDYyODMxMzg0MjQ0MzQ4NTE7MDA7Jw==\\\"\",\r\n            \"systemId\": \"287a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzQ4NTI4MTA1OTI4MjUxNTM2NjQxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"9e7805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY BASE RATE\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"TOABECEDARY\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": true,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ],\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzkyMzk4NjE3ODQxNjQ3OTI5MjkxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"835e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"TOABECEDARY\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"TO ABECEDARY BASE RATE\",\r\n                    \"endingDate\": \"2020-10-31\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2020-05-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDA4OTQ1NDIxMTQxOTE1MjQxOzAwOyc=\\\"\",\r\n            \"systemId\": \"5c7a05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerName\": \"ABECEDARY\",\r\n            \"customerNo\": \"ABCDE\",\r\n            \"default\": false,\r\n            \"rateDescription\": \"ABECEDARY2 BASE RATE\",\r\n            \"rateNo\": \"TOABECEDARY2\",\r\n            \"salesChannel\": \"\",\r\n            \"webRate\": false,\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\",\r\n            \"rates\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzIwOzE3NzU1OTAyNjE0NjY2ODIyNDQxMTswMDsn\\\"\",\r\n                    \"systemId\": \"9f7805be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"ageAFringe\": \"0..1\",\r\n                    \"ageBFringe\": \"2..12\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"allowRoomChoice\": false,\r\n                    \"cancelPolicyStdConcept\": \"\",\r\n                    \"comment\": false,\r\n                    \"defaultBoardBasis\": \"SA\",\r\n                    \"defaultRoomType\": \"1D\",\r\n                    \"description\": \"ABECEDARY2 BASE RATE\",\r\n                    \"filterBoardBasis\": \"\",\r\n                    \"filterRoomType\": \"\",\r\n                    \"globalDimension1No\": \"\",\r\n                    \"globalDimension2No\": \"\",\r\n                    \"maxPax\": 999,\r\n                    \"minPax\": 0,\r\n                    \"nameRateBase\": \"\",\r\n                    \"no\": \"TOABECEDARY2\",\r\n                    \"notApplyRatesRules\": false,\r\n                    \"onlineRate\": false,\r\n                    \"pricesIncludingTax\": true,\r\n                    \"rateBase\": \"\",\r\n                    \"rateDeposits\": false,\r\n                    \"recalculateRate\": true,\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ],\r\n            \"ratesPeriod\": [\r\n                {\r\n                    \"@odata.etag\": \"W/\\\"JzE5OzI4NzA2NTY5MzU2OTY1MDgwOTIxOzAwOyc=\\\"\",\r\n                    \"systemId\": \"845e05be-9c4e-ed11-bde8-000d3aaeb76a\",\r\n                    \"rateNo\": \"TOABECEDARY2\",\r\n                    \"ageAFringe\": \"\",\r\n                    \"ageBFringe\": \"\",\r\n                    \"ageCFringe\": \"\",\r\n                    \"description\": \"TO ABECEDARY2 BASE RATE\",\r\n                    \"endingDate\": \"2020-04-30\",\r\n                    \"ratePeriodSeq\": 1,\r\n                    \"startingDate\": \"2019-11-01\",\r\n                    \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n                }\r\n            ]\r\n        }\r\n    ]\r\n}"}],"_postman_id":"716c2e8b-d4c5-4ade-bf61-b3c2ab34ad82"},{"name":"ratesDetails","id":"ac039361-2002-4e8f-8709-7ea805b6aaef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesDetails?$filter=rateNo eq  'Rate No that exist'","description":"<p>System table: Rate Detail HTL<br />Page in Business Central: Rate Detail HTL</p>\n<p>unitOfMeasure will have one of the following values:</p>\n<p>Room</p>\n<p>Person</p>\n<p>Adults</p>\n<p>Extra</p>\n<p>Adults+Childs Rate A</p>\n<p>Adults+Childs Rate B</p>\n<p>Childs Rate A</p>\n<p>Childs Rate B</p>\n<p>Total Pax incl. babies</p>\n<p>Babies</p>\n<p>Childs Rate C</p>\n<p>Adults+Childs Rate C</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesDetails"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$filter","value":"rateNo eq  'Rate No that exist'"}],"variable":[]}},"response":[{"id":"9702e175-bcec-4847-807a-14b9ee466323","name":"ratesDetails","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesDetails?$filter=rateNo eq  'rateInDatabase'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesDetails"],"query":[{"key":"$filter","value":"rateNo eq  'rateInDatabase'"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesDetails\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkyNDA3ODg1MTk4NzIyNDU0MTswMDsn\\\"\",\n            \"systemId\": \"8b5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"rateNo\": \"rateInDatabase\",\n            \"lineNo\": 10000,\n            \"unitOfMeasure\": \"Room\",\n            \"adults\": \"\",\n            \"adultsExtraBed\": \"\",\n            \"ageRange\": \"\",\n            \"amount\": 261,\n            \"autoManual\": \"Auto\",\n            \"babies\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"channelRate\": \"\",\n            \"childrenRateA\": \"\",\n            \"childrenRateB\": \"\",\n            \"childrenRateC\": \"\",\n            \"description\": \"\",\n            \"discount\": 0,\n            \"discountBase\": \"\",\n            \"endingDate\": \"2019-11-30\",\n            \"frequency\": \"Daily\",\n            \"monday\": true,\n            \"tuesday\": true,\n            \"wednesday\": true,\n            \"thursday\": true,\n            \"friday\": true,\n            \"saturday\": true,\n            \"sunday\": true,\n            \"invoiceGrouping\": 1,\n            \"itemNo\": \"ALOJ-TO\",\n            \"offerNo\": \"\",\n            \"qtyApplyDiscountIncrease\": 0,\n            \"rateDetailType\": \"Price\",\n            \"ratePeriodSeq\": 1,\n            \"roomTypeFilter\": \"1D\",\n            \"startingDate\": \"2019-11-01\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\",\n            \"withoutProgram\": false\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODc0MTg5Mzg2MjI0NjE2MjgxOzAwOyc=\\\"\",\n            \"systemId\": \"8c5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"rateNo\": \"rateInDatabase\",\n            \"lineNo\": 20000,\n            \"unitOfMeasure\": \"Room\",\n            \"adults\": \"\",\n            \"adultsExtraBed\": \"\",\n            \"ageRange\": \"\",\n            \"amount\": 285,\n            \"autoManual\": \"Auto\",\n            \"babies\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"channelRate\": \"\",\n            \"childrenRateA\": \"\",\n            \"childrenRateB\": \"\",\n            \"childrenRateC\": \"\",\n            \"description\": \"\",\n            \"discount\": 0,\n            \"discountBase\": \"\",\n            \"endingDate\": \"2023-11-30\",\n            \"frequency\": \"Daily\",\n            \"monday\": true,\n            \"tuesday\": true,\n            \"wednesday\": true,\n            \"thursday\": true,\n            \"friday\": true,\n            \"saturday\": true,\n            \"sunday\": true,\n            \"invoiceGrouping\": 1,\n            \"itemNo\": \"ALOJ-TO\",\n            \"offerNo\": \"\",\n            \"qtyApplyDiscountIncrease\": 0,\n            \"rateDetailType\": \"Price\",\n            \"ratePeriodSeq\": 1,\n            \"roomTypeFilter\": \"2D\",\n            \"startingDate\": \"2023-11-01\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\",\n            \"withoutProgram\": false\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc4NzIyOTI5ODA5MTg5NjI5MTswMDsn\\\"\",\n            \"systemId\": \"8d5e05be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"rateNo\": \"rateInDatabase\",\n            \"lineNo\": 30000,\n            \"unitOfMeasure\": \"Room\",\n            \"adults\": \"\",\n            \"adultsExtraBed\": \"\",\n            \"ageRange\": \"\",\n            \"amount\": 356,\n            \"autoManual\": \"Auto\",\n            \"babies\": \"\",\n            \"boardBasisFilter\": \"\",\n            \"channelRate\": \"\",\n            \"childrenRateA\": \"\",\n            \"childrenRateB\": \"\",\n            \"childrenRateC\": \"\",\n            \"description\": \"\",\n            \"discount\": 0,\n            \"discountBase\": \"\",\n            \"endingDate\": \"2024-11-30\",\n            \"frequency\": \"Daily\",\n            \"monday\": true,\n            \"tuesday\": true,\n            \"wednesday\": true,\n            \"thursday\": true,\n            \"friday\": true,\n            \"saturday\": true,\n            \"sunday\": true,\n            \"invoiceGrouping\": 1,\n            \"itemNo\": \"ALOJ-TO\",\n            \"offerNo\": \"\",\n            \"qtyApplyDiscountIncrease\": 0,\n            \"rateDetailType\": \"Price\",\n            \"ratePeriodSeq\": 1,\n            \"roomTypeFilter\": \"2V\",\n            \"startingDate\": \"2024-11-01\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\",\n            \"withoutProgram\": false\n        }\n    ]\n}"}],"_postman_id":"ac039361-2002-4e8f-8709-7ea805b6aaef"},{"name":"onlineRates","id":"74c33e8d-c9ab-4c61-866b-f6e44f7fe5f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates","description":"<p>System table: Rate HTL<br />Page in Business Central: Rates HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","onlineRates"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"eb3a7b99-9fa8-43b7-a52f-68425caf188a","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/rates\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDIxMzQ4NDA5NDcwMTExNDk0MTswMDsn\\\"\",\n            \"systemId\": \"847805be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"ageAFringe\": \"0..1\",\n            \"ageBFringe\": \"2..12\",\n            \"ageCFringe\": \"13..17\",\n            \"allowRoomChoice\": false,\n            \"cancelPolicyStdConcept\": \"\",\n            \"comment\": false,\n            \"defaultBoardBasis\": \"SA\",\n            \"defaultRoomType\": \"1D\",\n            \"description\": \"No. 10%NO REEMBOLSABLE\",\n            \"filterBoardBasis\": \"\",\n            \"filterRoomType\": \"\",\n            \"globalDimension1No\": \"\",\n            \"globalDimension2No\": \"\",\n            \"maxPax\": 999,\n            \"minPax\": 0,\n            \"nameRateBase\": \"\",\n            \"no\": \"No.\",\n            \"notApplyRatesRules\": false,\n            \"onlineRate\": true,\n            \"pricesIncludingTax\": true,\n            \"rateBase\": \"\",\n            \"rateDeposits\": true,\n            \"recalculateRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ1MTkyMjQ4MDI1MDMzMTE1MTswMDsn\\\"\",\n            \"systemId\": \"857805be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"ageAFringe\": \"0..1\",\n            \"ageBFringe\": \"2..12\",\n            \"ageCFringe\": \"13..17\",\n            \"allowRoomChoice\": false,\n            \"cancelPolicyStdConcept\": \"\",\n            \"comment\": false,\n            \"defaultBoardBasis\": \"SA\",\n            \"defaultRoomType\": \"1D\",\n            \"description\": \"No.2 20%NO REEMBOLSABLE\",\n            \"filterBoardBasis\": \"\",\n            \"filterRoomType\": \"\",\n            \"globalDimension1No\": \"\",\n            \"globalDimension2No\": \"\",\n            \"maxPax\": 999,\n            \"minPax\": 0,\n            \"nameRateBase\": \"\",\n            \"no\": \"No.2\",\n            \"notApplyRatesRules\": false,\n            \"onlineRate\": true,\n            \"pricesIncludingTax\": true,\n            \"rateBase\": \"\",\n            \"rateDeposits\": true,\n            \"recalculateRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDUzODI4OTI0Nzk4NjM4MTExOzAwOyc=\\\"\",\n            \"systemId\": \"867805be-9c4e-ed11-bde8-000d3aaeb76a\",\n            \"ageAFringe\": \"0..1\",\n            \"ageBFringe\": \"2..12\",\n            \"ageCFringe\": \"13..17\",\n            \"allowRoomChoice\": false,\n            \"cancelPolicyStdConcept\": \"\",\n            \"comment\": false,\n            \"defaultBoardBasis\": \"SA\",\n            \"defaultRoomType\": \"1D\",\n            \"description\": \"No.3 BAR\",\n            \"filterBoardBasis\": \"\",\n            \"filterRoomType\": \"\",\n            \"globalDimension1No\": \"\",\n            \"globalDimension2No\": \"\",\n            \"maxPax\": 999,\n            \"minPax\": 0,\n            \"nameRateBase\": \"\",\n            \"no\": \"No.3\",\n            \"notApplyRatesRules\": false,\n            \"onlineRate\": true,\n            \"pricesIncludingTax\": true,\n            \"rateBase\": \"\",\n            \"rateDeposits\": true,\n            \"recalculateRate\": false,\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"74c33e8d-c9ab-4c61-866b-f6e44f7fe5f4"},{"name":"onlineRates","id":"f6680f5c-0ca6-449b-8bb3-a99461bbef3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n            \"ageAFringe\": \"0..1\",\r\n            \"ageBFringe\": \"2..12\",\r\n            \"ageCFringe\": \"13..17\",\r\n            \"allowRoomChoice\": false,\r\n            \"cancelPolicyStdConcept\": \"\",\r\n            \"comment\": false,\r\n            \"defaultBoardBasis\": \"SA\",\r\n            \"defaultRoomType\": \"1D\",\r\n            \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n            \"filterBoardBasis\": \"\",\r\n            \"filterRoomType\": \"\",\r\n            \"globalDimension1No\": \"\",\r\n            \"globalDimension2No\": \"\",\r\n            \"maxPax\": 999,\r\n            \"minPax\": 0,\r\n            \"nameRateBase\": \"\",\r\n            \"no\": \"No.\",\r\n            \"notApplyRatesRules\": false,\r\n            \"onlineRate\": true,\r\n            \"pricesIncludingTax\": true,\r\n            \"rateBase\": \"\",\r\n            \"recalculateRate\": false,\r\n            \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","onlineRates"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"6b84bcbe-1971-4a70-9e0e-889bc1f6aa69","name":"200","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n            \"ageAFringe\": \"0..1\",\r\n            \"ageBFringe\": \"2..12\",\r\n            \"ageCFringe\": \"13..17\",\r\n            \"allowRoomChoice\": false,\r\n            \"cancelPolicyStdConcept\": \"\",\r\n            \"comment\": false,\r\n            \"defaultBoardBasis\": \"SA\",\r\n            \"defaultRoomType\": \"1D\",\r\n            \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n            \"filterBoardBasis\": \"\",\r\n            \"filterRoomType\": \"\",\r\n            \"globalDimension1No\": \"\",\r\n            \"globalDimension2No\": \"\",\r\n            \"maxPax\": 999,\r\n            \"minPax\": 0,\r\n            \"nameRateBase\": \"\",\r\n            \"no\": \"No.\",\r\n            \"notApplyRatesRules\": false,\r\n            \"onlineRate\": true,\r\n            \"pricesIncludingTax\": true,\r\n            \"rateBase\": \"\",\r\n            \"recalculateRate\": false,\r\n            \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/onlineRates\",\r\n    \"@odata.etag\": \"W/\\\"JzIwOzEzNDIxMzQ4NDA5NDcwMTExNDk0MTswMDsn\\\"\",\r\n    \"systemId\": \"8e1648a9-c0c6-ef11-b9d9-202b201de956\",\r\n    \"ageAFringe\": \"0..1\",\r\n    \"ageBFringe\": \"2..12\",\r\n    \"ageCFringe\": \"13..17\",\r\n    \"allowRoomChoice\": false,\r\n    \"cancelPolicyStdConcept\": \"\",\r\n    \"comment\": false,\r\n    \"defaultBoardBasis\": \"SA\",\r\n    \"defaultRoomType\": \"1D\",\r\n    \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n    \"filterBoardBasis\": \"\",\r\n    \"filterRoomType\": \"\",\r\n    \"globalDimension1No\": \"\",\r\n    \"globalDimension2No\": \"\",\r\n    \"maxPax\": 999,\r\n    \"minPax\": 0,\r\n    \"nameRateBase\": \"\",\r\n    \"no\": \"NO.\",\r\n    \"notApplyRatesRules\": false,\r\n    \"onlineRate\": true,\r\n    \"pricesIncludingTax\": true,\r\n    \"rateBase\": \"\",\r\n    \"rateDeposits\": false,\r\n    \"recalculateRate\": false,\r\n    \"lastModifiedDateTime\": \"2024-12-30T15:13:52.07Z\",\r\n    \"secretCode\": \"\"\r\n}"}],"_postman_id":"f6680f5c-0ca6-449b-8bb3-a99461bbef3f"},{"name":"onlineRates","id":"13f1f5c2-76df-405f-8b22-ed9e303f7218","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n            \"ageAFringe\": \"0..1\",\r\n            \"ageBFringe\": \"2..12\",\r\n            \"ageCFringe\": \"13..17\",\r\n            \"allowRoomChoice\": false,\r\n            \"cancelPolicyStdConcept\": \"\",\r\n            \"defaultBoardBasis\": \"SA\",\r\n            \"defaultRoomType\": \"1D\",\r\n            \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n            \"filterBoardBasis\": \"\",\r\n            \"filterRoomType\": \"\",\r\n            \"globalDimension1No\": \"\",\r\n            \"globalDimension2No\": \"\",\r\n            \"maxPax\": 999,\r\n            \"minPax\": 0,\r\n            \"nameRateBase\": \"\",\r\n            \"no\": \"No.\",\r\n            \"notApplyRatesRules\": false,\r\n            \"onlineRate\": true,\r\n            \"pricesIncludingTax\": true,\r\n            \"rateBase\": \"\",\r\n            \"recalculateRate\": false,\r\n            \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","onlineRates"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"16da3754-698c-4eaf-9698-fce80787aa8e","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n            \"ageAFringe\": \"0..1\",\r\n            \"ageBFringe\": \"2..12\",\r\n            \"ageCFringe\": \"13..17\",\r\n            \"allowRoomChoice\": false,\r\n            \"cancelPolicyStdConcept\": \"\",\r\n            \"comment\": false,\r\n            \"defaultBoardBasis\": \"SA\",\r\n            \"defaultRoomType\": \"1D\",\r\n            \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n            \"filterBoardBasis\": \"\",\r\n            \"filterRoomType\": \"\",\r\n            \"globalDimension1No\": \"\",\r\n            \"globalDimension2No\": \"\",\r\n            \"maxPax\": 999,\r\n            \"minPax\": 0,\r\n            \"nameRateBase\": \"\",\r\n            \"no\": \"No.\",\r\n            \"notApplyRatesRules\": false,\r\n            \"onlineRate\": true,\r\n            \"pricesIncludingTax\": true,\r\n            \"rateBase\": \"\",\r\n            \"recalculateRate\": false,\r\n            \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/onlineRates\",\r\n    \"@odata.etag\": \"W/\\\"JzIwOzEzNDIxMzQ4NDA5NDcwMTExNDk0MTswMDsn\\\"\",\r\n    \"systemId\": \"8e1648a9-c0c6-ef11-b9d9-202b201de956\",\r\n    \"ageAFringe\": \"0..1\",\r\n    \"ageBFringe\": \"2..12\",\r\n    \"ageCFringe\": \"13..17\",\r\n    \"allowRoomChoice\": false,\r\n    \"cancelPolicyStdConcept\": \"\",\r\n    \"comment\": false,\r\n    \"defaultBoardBasis\": \"SA\",\r\n    \"defaultRoomType\": \"1D\",\r\n    \"description\": \"No. 10%NO REEMBOLSABLE\",\r\n    \"filterBoardBasis\": \"\",\r\n    \"filterRoomType\": \"\",\r\n    \"globalDimension1No\": \"\",\r\n    \"globalDimension2No\": \"\",\r\n    \"maxPax\": 999,\r\n    \"minPax\": 0,\r\n    \"nameRateBase\": \"\",\r\n    \"no\": \"NO.\",\r\n    \"notApplyRatesRules\": false,\r\n    \"onlineRate\": true,\r\n    \"pricesIncludingTax\": true,\r\n    \"rateBase\": \"\",\r\n    \"rateDeposits\": false,\r\n    \"recalculateRate\": false,\r\n    \"lastModifiedDateTime\": \"2024-12-30T15:13:52.07Z\",\r\n    \"secretCode\": \"\"\r\n}"}],"_postman_id":"13f1f5c2-76df-405f-8b22-ed9e303f7218"},{"name":"ratesPeriod","id":"5c735a42-1426-4af0-8d22-265cbdd4ea57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"Rate001\",\r\n    \"ageAFringe\": \"\",\r\n    \"ageBFringe\": \"\",\r\n    \"ageCFringe\": \"\",\r\n    \"description\": \"W1920\",\r\n    \"endingDate\": \"2025-04-30\",\r\n    \"ratePeriodSeq\": 2,\r\n    \"startingDate\": \"2025-01-01\",\r\n    \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesPeriod","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesPeriod"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"aec8acec-dc4c-4988-a9f2-05edc1f0b6b9","name":"200","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"Rate001\",\r\n    \"ageAFringe\": \"\",\r\n    \"ageBFringe\": \"\",\r\n    \"ageCFringe\": \"\",\r\n    \"description\": \"W1920\",\r\n    \"endingDate\": \"2025-04-30\",\r\n    \"ratePeriodSeq\": 2,\r\n    \"startingDate\": \"2025-01-01\",\r\n    \"secretCode\": \"1,rQ5W](6WN`mdBbczEbV9ElvD'O=SZ_lB%>OBkSH=8cUsFgWW\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/onlineRates"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/rates\",\n    \"@odata.etag\": \"W/\\\"JzIwOzE0MTIzMTA4MDQzMjMwNDk5NzQ5MTswMDsn\\\"\",\n    \"systemId\": \"7ba71fc4-bac6-ef11-b9d9-202b201de956\",\n    \"rateNo\": \"Rate001\",\n    \"ageAFringe\": \"\",\n    \"ageBFringe\": \"\",\n    \"ageCFringe\": \"\",\n    \"description\": \"W1920\",\n    \"endingDate\": \"2025-04-30\",\n    \"ratePeriodSeq\": 2,\n    \"startingDate\": \"2025-01-01\",\n    \"lastModifiedDateTime\": \"2024-12-30T14:31:33.887Z\",\n    \"secretCode\": \"\"\n}"},{"id":"6d904b73-6290-4c03-aa57-0c964098969d","name":"400","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"Rate001\",\r\n    \"ageAFringe\": \"\",\r\n    \"ageBFringe\": \"\",\r\n    \"ageCFringe\": \"\",\r\n    \"description\": \"W1920\",\r\n    \"endingDate\": \"2025-04-30\",\r\n    \"ratePeriodSeq\": 2,\r\n    \"startingDate\": \"2025-01-01\",\r\n    \"secretCode\": \"\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesPeriod"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": {\r\n        \"code\": \"Application_DialogException\",\r\n        \"message\": \"A certain parameter is not valid.  CorrelationId:  7bf1f608-512e-4130-919c-9f8f5ba4d395.\"\r\n    }\r\n}"}],"_postman_id":"5c735a42-1426-4af0-8d22-265cbdd4ea57"},{"name":"ratesDetailOperations","id":"d017cb3e-5f5d-4978-a37c-bbb2879e71fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"TAR1\",\r\n    \"lineNo\": 20000,\r\n    \"unitOfMeasure\": \"Person\",\r\n    \"adults\": \"\",\r\n    \"adultsExtraBed\": \"\",\r\n    \"ageRange\": \"\",\r\n    \"amount\": 50,\r\n    \"autoManual\": \"Auto\",\r\n    \"babies\": \"\",\r\n    \"boardBasisFilter\": \"\",\r\n    \"channelRate\": \"\",\r\n    \"childrenRateA\": \"\",\r\n    \"childrenRateB\": \"\",\r\n    \"childrenRateC\": \"\",\r\n    \"description\": \"\",\r\n    \"discount\": 0,\r\n    \"discountBase\": \"\",\r\n    \"startingDate\": \"2023-01-01\",\r\n    \"endingDate\": \"2024-12-31\",\r\n    \"frequency\": \"Daily\",\r\n    \"monday\": true,\r\n    \"tuesday\": true,\r\n    \"wednesday\": true,\r\n    \"thursday\": true,\r\n    \"friday\": true,\r\n    \"saturday\": true,\r\n    \"sunday\": true,\r\n    \"invoiceGrouping\": 1,\r\n    \"itemNo\": \"HAB\",\r\n    \"offerNo\": \"\",\r\n    \"qtyApplyDiscountIncrease\": 0,\r\n    \"rateDetailType\": \"Price\",\r\n    \"ratePeriodSeq\": 1,\r\n    \"roomTypeFilter\": \"DBL\",\r\n    \"secretCode\": \"Secret Code\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesDetailOperations","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","rate","v1.0","companies(<companyID>)","ratesDetailOperations"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"71d2c249-98aa-4b93-918b-b085653dc283","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"rateNo\": \"TAR1\",\r\n    \"lineNo\": 20000,\r\n    \"unitOfMeasure\": \"Person\",\r\n    \"adults\": \"\",\r\n    \"adultsExtraBed\": \"\",\r\n    \"ageRange\": \"\",\r\n    \"amount\": 50,\r\n    \"autoManual\": \"Auto\",\r\n    \"babies\": \"\",\r\n    \"boardBasisFilter\": \"\",\r\n    \"channelRate\": \"\",\r\n    \"childrenRateA\": \"\",\r\n    \"childrenRateB\": \"\",\r\n    \"childrenRateC\": \"\",\r\n    \"description\": \"\",\r\n    \"discount\": 0,\r\n    \"discountBase\": \"\",\r\n    \"startingDate\": \"2023-01-01\",\r\n    \"endingDate\": \"2024-12-31\",\r\n    \"frequency\": \"Daily\",\r\n    \"monday\": true,\r\n    \"tuesday\": true,\r\n    \"wednesday\": true,\r\n    \"thursday\": true,\r\n    \"friday\": true,\r\n    \"saturday\": true,\r\n    \"sunday\": true,\r\n    \"invoiceGrouping\": 1,\r\n    \"itemNo\": \"HAB\",\r\n    \"offerNo\": \"\",\r\n    \"qtyApplyDiscountIncrease\": 0,\r\n    \"rateDetailType\": \"Price\",\r\n    \"ratePeriodSeq\": 1,\r\n    \"roomTypeFilter\": \"DBL\",\r\n    \"secretCode\": \"Secret Code\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/rate/v1.0/companies(<companyID>)/ratesDetailOperations"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/ratesDetailOperations\",\r\n    \"@odata.etag\": \"W/\\\"JzE5OzQ5OTE4ODYxMDA0NzM3NTg3NTUxOzAwOyc=\\\"\",\r\n    \"systemId\": \"6273ce30-d700-f011-9346-7c1e5287d5ed\",\r\n    \"rateNo\": \"TAR1\",\r\n    \"lineNo\": 110000,\r\n    \"unitOfMeasure\": \"Person\",\r\n    \"adults\": \"\",\r\n    \"adultsExtraBed\": \"\",\r\n    \"ageRange\": \"\",\r\n    \"amount\": 50,\r\n    \"autoManual\": \"Auto\",\r\n    \"babies\": \"\",\r\n    \"boardBasisFilter\": \"\",\r\n    \"channelRate\": \"\",\r\n    \"childrenRateA\": \"\",\r\n    \"childrenRateB\": \"\",\r\n    \"childrenRateC\": \"\",\r\n    \"description\": \"\",\r\n    \"discount\": 0,\r\n    \"discountBase\": \"\",\r\n    \"startingDate\": \"2023-01-01\",\r\n    \"endingDate\": \"2024-12-31\",\r\n    \"frequency\": \"Daily\",\r\n    \"monday\": true,\r\n    \"tuesday\": true,\r\n    \"wednesday\": true,\r\n    \"thursday\": true,\r\n    \"friday\": true,\r\n    \"saturday\": true,\r\n    \"sunday\": true,\r\n    \"invoiceGrouping\": 1,\r\n    \"itemNo\": \"HAB\",\r\n    \"offerNo\": \"\",\r\n    \"qtyApplyDiscountIncrease\": 0,\r\n    \"rateDetailType\": \"Price\",\r\n    \"ratePeriodSeq\": 1,\r\n    \"roomTypeFilter\": \"DBL\",\r\n    \"withoutProgram\": false,\r\n    \"lastModifiedDateTime\": \"2025-03-14T13:21:09.653Z\",\r\n    \"secretCode\": \"\"\r\n}"}],"_postman_id":"d017cb3e-5f5d-4978-a37c-bbb2879e71fb"}],"id":"5924022d-8f8c-4b08-aab4-6fe8a9c650b8","_postman_id":"5924022d-8f8c-4b08-aab4-6fe8a9c650b8","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"room","item":[{"name":"roomTypes","id":"b9c06d1f-d8b6-477e-ac20-d5ac41280e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/room/v1.0/companies(<companyID>)/roomTypes","description":"<p>System table: Room Type HTL<br />Page in Business Central: Room Types HTL</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","room","v1.0","companies(<companyID>)","roomTypes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b7926723-0eba-4b1e-ac83-2c0cc03660a0","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/room/v1.0/companies(<companyID>)/roomTypes"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/roomTypes\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM2NjE1MDcxNzE3OTY4MTEwMTswMDsn\\\"\",\r\n            \"systemId\": \"129fefb9-15e7-ec11-82f8-6045bd8deb29\",\r\n            \"no\": \"ALQUILER\",\r\n            \"description\": \"Ficticia\",\r\n            \"defaultCapacity\": 0,\r\n            \"maxCapacity\": 0,\r\n            \"officialCapacity\": 0,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Fictitious\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": true,\r\n            \"totalBookings\": 0,\r\n            \"totalBookingsPax\": 0,\r\n            \"totalCapacity\": 0,\r\n            \"totalCapacityPax\": 0\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDIzNjU4OTY1MjU5OTk5MzQ1MTswMDsn\\\"\",\r\n            \"systemId\": \"360905c5-2429-ed11-97e8-00224882e1a5\",\r\n            \"no\": \"APT\",\r\n            \"description\": \"Apartamento\",\r\n            \"defaultCapacity\": 2,\r\n            \"maxCapacity\": 4,\r\n            \"officialCapacity\": 2,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 0,\r\n            \"totalBookingsPax\": 0,\r\n            \"totalCapacity\": 9861,\r\n            \"totalCapacityPax\": 19722\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE4MTkwMzU4NjU1NzA1NTc1MTswMDsn\\\"\",\r\n            \"systemId\": \"e2e8500f-2429-ed11-97e8-00224882e1a5\",\r\n            \"no\": \"DBL\",\r\n            \"description\": \"Doble\",\r\n            \"defaultCapacity\": 2,\r\n            \"maxCapacity\": 2,\r\n            \"officialCapacity\": 2,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 95,\r\n            \"totalBookingsPax\": 182,\r\n            \"totalCapacity\": 9861,\r\n            \"totalCapacityPax\": 19722\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzYwNjk5Njg0MTA0MTMxNjgxOzAwOyc=\\\"\",\r\n            \"systemId\": \"139fefb9-15e7-ec11-82f8-6045bd8deb29\",\r\n            \"no\": \"DESVIO\",\r\n            \"description\": \"Desvíos\",\r\n            \"defaultCapacity\": 0,\r\n            \"maxCapacity\": 0,\r\n            \"officialCapacity\": 0,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": true,\r\n            \"totalBookings\": 0,\r\n            \"totalBookingsPax\": 0,\r\n            \"totalCapacity\": 0,\r\n            \"totalCapacityPax\": 0\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjA1MDk5ODQ1NjAyMjMwMzIxOzAwOyc=\\\"\",\r\n            \"systemId\": \"4b2bb190-2429-ed11-97e8-00224882e1a5\",\r\n            \"no\": \"FAM\",\r\n            \"description\": \"Familiar\",\r\n            \"defaultCapacity\": 5,\r\n            \"maxCapacity\": 4,\r\n            \"officialCapacity\": 4,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 20,\r\n            \"totalBookingsPax\": 88,\r\n            \"totalCapacity\": 16435,\r\n            \"totalCapacityPax\": 65740\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc2MTY1ODc0MjY5NDUzNzkxMTswMDsn\\\"\",\r\n            \"systemId\": \"149fefb9-15e7-ec11-82f8-6045bd8deb29\",\r\n            \"no\": \"FIC\",\r\n            \"description\": \"Ficticia\",\r\n            \"defaultCapacity\": 0,\r\n            \"maxCapacity\": 0,\r\n            \"officialCapacity\": 0,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Fictitious\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": true,\r\n            \"totalBookings\": 1,\r\n            \"totalBookingsPax\": 2,\r\n            \"totalCapacity\": 0,\r\n            \"totalCapacityPax\": 0\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODAwNjYwOTUzNTU3NzA0NTUxOzAwOyc=\\\"\",\r\n            \"systemId\": \"d1e59273-2429-ed11-97e8-00224882e1a5\",\r\n            \"no\": \"IND\",\r\n            \"description\": \"Individual\",\r\n            \"defaultCapacity\": 1,\r\n            \"maxCapacity\": 1,\r\n            \"officialCapacity\": 1,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 1,\r\n            \"totalBookingsPax\": 2,\r\n            \"totalCapacity\": 6574,\r\n            \"totalCapacityPax\": 6574\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTUwODE2ODg5OTQwMzY2MDgxOzAwOyc=\\\"\",\r\n            \"systemId\": \"8f9276b6-2429-ed11-97e8-00224882e1a5\",\r\n            \"no\": \"JSUITE\",\r\n            \"description\": \"Junior Suite\",\r\n            \"defaultCapacity\": 2,\r\n            \"maxCapacity\": 6,\r\n            \"officialCapacity\": 2,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 1,\r\n            \"totalBookingsPax\": 3,\r\n            \"totalCapacity\": 6574,\r\n            \"totalCapacityPax\": 13148\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjM2Njc3MTExNzc5MjQ1NTYxOzAwOyc=\\\"\",\r\n            \"systemId\": \"159fefb9-15e7-ec11-82f8-6045bd8deb29\",\r\n            \"no\": \"REAL\",\r\n            \"description\": \"\",\r\n            \"defaultCapacity\": 0,\r\n            \"maxCapacity\": 0,\r\n            \"officialCapacity\": 0,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Real\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": false,\r\n            \"totalBookings\": 0,\r\n            \"totalBookingsPax\": 0,\r\n            \"totalCapacity\": 0,\r\n            \"totalCapacityPax\": 0\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODYyMDA3Mjc2MTQzNDIzNjAxOzAwOyc=\\\"\",\r\n            \"systemId\": \"169fefb9-15e7-ec11-82f8-6045bd8deb29\",\r\n            \"no\": \"TPV\",\r\n            \"description\": \"Ficticia\",\r\n            \"defaultCapacity\": 0,\r\n            \"maxCapacity\": 0,\r\n            \"officialCapacity\": 0,\r\n            \"roomGroup\": \"\",\r\n            \"class\": \"Fictitious\",\r\n            \"fractionOfRealType\": 1,\r\n            \"equivalentRoomType\": \"\",\r\n            \"equivalentRoomType2\": \"\",\r\n            \"joinedRoomType\": \"\",\r\n            \"mainRoomType\": \"\",\r\n            \"excludedPlanning\": true,\r\n            \"totalBookings\": 0,\r\n            \"totalBookingsPax\": 0,\r\n            \"totalCapacity\": 0,\r\n            \"totalCapacityPax\": 0\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b9c06d1f-d8b6-477e-ac20-d5ac41280e68"},{"name":"typesLocked","id":"2ea49cf8-6cda-4753-ad14-0fa7e6d0a6ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked","description":"<p>System table: Type Locked HTL<br />Page in Business Central: Type Locked HTL</p>\n<p>Returns the list of the values that are needed in the lockRooms operations, the typeLockedNo is the value that belongs to lockType in lockRooms</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>typeLockedNo</td>\n<td>Code[10]</td>\n<td>Specifies the No. of the locked type.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[150]</td>\n<td>Specifies the description of the locks.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the locked was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","typesLocked"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"00140cd5-435e-4e45-bec5-29d6cc734e79","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/typesLocked"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"1e82b53d-65ca-eeb9-405d-470c74c886e7"},{"key":"mise-correlation-id","value":"cff65018-756d-48ad-8a95-266fbb57850c"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9f8c1394-7d67-4ece-bcf6-4e581970802f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:03:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/typesLocked\",\n     \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNTIzNjg3NzY2NTU0NjY3NDIxOzAwOyc=\\\"\",\n            \"systemId\": \"34638cda-86c6-ee11-9078-0022489f785d\",\n            \"typeLockedNo\": \"BOOK\",\n            \"description\": \"BOOKING\",\n            \"lastModifiedDateTime\": \"2024-02-08T13:35:02.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTQ1OTU3ODA4ODI4NzI1OTkxOzAwOyc=\\\"\",\n            \"systemId\": \"539630a7-d85e-ed11-8c34-000d3a271616\",\n            \"typeLockedNo\": \"GOTERAS\",\n            \"description\": \"GOTERAS\",\n            \"lastModifiedDateTime\": \"2022-11-07T20:13:37.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM2MjQ1NTM1NzgxOTk5NjM0MTswMDsn\\\"\",\n            \"systemId\": \"78074652-48d6-ee11-904c-000d3aba9a82\",\n            \"typeLockedNo\": \"OBRAS\",\n            \"description\": \"OBRAS\",\n            \"lastModifiedDateTime\": \"2024-02-28T14:47:44.567Z\"\n        }\n    ]\n}"},{"id":"5d2cf187-792e-422f-924d-96f9248b07c6","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/typesLocked"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"10214316-d0e5-4805-bb18-351840323c38","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/typesLocked"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"2ea49cf8-6cda-4753-ad14-0fa7e6d0a6ac"},{"name":"typesLocked","id":"22d90b96-87be-4602-b616-b8eba3f8bbcc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-08-31\",\r\n    \"endingDate\": \"2022-08-31\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","typesLocked"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"26673545-9c15-4bef-b6bc-ce5b7a8e1534","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"typeLockedNo\": \"OBRAS\",\r\n    \"description\": \"OBRAS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/hotel/v1.0/companies(7baa7726-010f-ed11-90eb-6045bd8aa9fb)/lockRooms2(5570daa2-5d30-ee11-9cbf-000d3ad8f09d)"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"da5d5eeb-5abc-60f8-eacc-9c2d2b41f72a"},{"key":"mise-correlation-id","value":"d499a2ea-3a70-4057-8952-dc19e71984da"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"8fe3bf2d-1e8e-407f-87dd-e065e0d0e62a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:22:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<api publisher>/<api group>/<api version>/$metadata#companies(<company ID>)/typesLocked/$entity\",\n    \"@odata.etag\": \"W/\\\"JzE5OzMwNzE4OTEyMzY3NzQ2MzkwMDAxOzAwOyc=\\\"\",\n    \"systemId\": \"505b8186-cce2-ee11-904c-000d3adf6853\",\n    \"typeLockedNo\": \"OBRAS\",\n    \"description\": \"OBRAS\",\n    \"lastModifiedDateTime\": \"2023-02-15T13:04:16.3Z\"\n}"},{"id":"405a4c32-8199-436c-9b9f-2a364f19a3fb","name":"400","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"no\": \"OBRAS\",\r\n    \"description\": \"OBRAS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"53d8a5b1-2bd0-82a4-61ac-8ba15e017acd"},{"key":"mise-correlation-id","value":"8970b1d8-2571-43a0-88f1-f17c33f65925"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"97f5f6c2-5de1-4a79-9a9a-ef862c8d4936"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:53:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"BadRequest\",\n        \"message\": \"Invalid Request Body  CorrelationId:  97f5f6c2-5de1-4a79-9a9a-ef862c8d4936.\"\n    }\n}"},{"id":"fd365ff2-26f9-46f7-a9f0-c62b43109110","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"50b88b96-23e5-4a18-a76e-2525e64dfad8","name":"404","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"22d90b96-87be-4602-b616-b8eba3f8bbcc"},{"name":"typesLocked","id":"605bb9c7-8391-4072-bd73-7810682059cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-09-30\",\r\n    \"endingDate\": \"2022-09-30\",\r\n    \"discountInPlanning\": \"false\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked(<room ID>)","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","typesLocked(<room ID>)"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"de29fe4a-e8e7-4c8d-ac21-832713edcbec","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"typeLockedNo\": \"OBRAS2\",\r\n    \"description\": \"OBRAS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked(<room ID>)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"9952cc4c-dddb-4567-81cc-1bb69c6ca41d"},{"key":"mise-correlation-id","value":"153ae618-6474-4ac0-b921-10dda3645562"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9004f85f-4332-402f-8972-ce4453bed7e9"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:25:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company ID>)/typesLocked/$entity\",\n    \"@odata.etag\": \"W/\\\"JzE5Ozc2NTcwMDc5MjcxMjkzNzcxMDQxOzAwOyc=\\\"\",\n    \"systemId\": \"8372dd45-cde2-ee11-904c-000d3adf6853\",\n    \"typeLockedNo\": \"OBRAS2\",\n    \"description\": \"OBRAS\",\n    \"lastModifiedDateTime\": \"2024-03-15T13:10:01.267Z\"\n}"},{"id":"db89fba9-eb91-4503-a3aa-0056e02a65c6","name":"400","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"typeLockedNo\": \"OBRAS2\",\r\n    \"description\": \"OBRAS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked(<room ID>)"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"54e53f44-d14c-50a5-b74e-f0b1f135b142"},{"key":"mise-correlation-id","value":"7168e1f3-e8a2-4585-830e-a34402f9b130"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"27cb52a3-41ba-4aa8-9f41-2f75c267cb8f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:23:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Application_DialogException\",\n        \"message\": \"This lock is overlap with another lock.  CorrelationId:  27cb52a3-41ba-4aa8-9f41-2f75c267cb8f.\"\n    }\n}"},{"id":"94c0cd20-44b9-4d32-a957-b6eb5d0666b2","name":"401","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"typeLockedNo\": \"OBRAS2\",\r\n    \"description\": \"OBRAS\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked(<room ID>)"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"e268cb48-eee5-40f9-8a4c-bce79570a285","name":"404","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/typesLocked(<room ID>)"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"605bb9c7-8391-4072-bd73-7810682059cd"},{"name":"lockRooms","id":"46029758-221b-48cd-b159-5490dbac9a5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms","description":"<p>System table: Lock Room HTL<br />Page in Business Central: Room Locks HTL</p>\n<p>Returns the list of the locked rooms.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room No. which the lock belongs.</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[20]</td>\n<td>Specifies the room type of the lock room.</td>\n</tr>\n<tr>\n<td>lockType</td>\n<td>Code[20]</td>\n<td>Specifies the Lock type of the set list in the hotel.</td>\n</tr>\n<tr>\n<td>startingDate</td>\n<td>Date</td>\n<td>Specifies the starting date of the lock.</td>\n</tr>\n<tr>\n<td>endingDate</td>\n<td>Date</td>\n<td>Specifies the ending date of the lock.</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>Text[30]</td>\n<td>Specifies the description or reason of the lock.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","lockRooms"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"c122c64a-6c15-49b4-8642-5c9a00deed68","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/lockRooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"1e82b53d-65ca-eeb9-405d-470c74c886e7"},{"key":"mise-correlation-id","value":"cff65018-756d-48ad-8a95-266fbb57850c"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9f8c1394-7d67-4ece-bcf6-4e581970802f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:03:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/lockRooms\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzgyOTUzMzM3MjEzNTQxNjQ4MTswMDsn\\\"\",\n            \"roomNo\": \"203\",\n            \"lineNo\": 4,\n            \"systemId\": \"36cd6286-2829-ed11-97e8-00224882e1a5\",\n            \"roomType\": \"JSUITE\",\n            \"lockType\": \"OBRAS\",\n            \"startingDate\": \"2022-08-31\",\n            \"endingDate\": \"2022-08-31\",\n            \"reason\": \"OBRAS REMODELACIÓN\",\n            \"systemModifiedAt\": \"2022-08-31T12:29:45.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDEwMTM1MDc1MzkwODIyMDI0MTswMDsn\\\"\",\n            \"roomNo\": \"301\",\n            \"lineNo\": 1,\n            \"systemId\": \"6fc04646-2729-ed11-97e8-00224882e1a5\",\n            \"roomType\": \"DBL\",\n            \"lockType\": \"TEMPORADA\",\n            \"startingDate\": \"2022-09-01\",\n            \"endingDate\": \"2023-04-01\",\n            \"reason\": \"CERRADA POR TEMPORADA BAJA\",\n            \"systemModifiedAt\": \"2022-08-31T12:29:03.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTExMDcxODY5NjUzMjUyMTYxOzAwOyc=\\\"\",\n            \"roomNo\": \"302\",\n            \"lineNo\": 2,\n            \"systemId\": \"a0b53952-2829-ed11-97e8-00224882e1a5\",\n            \"roomType\": \"DBL\",\n            \"lockType\": \"TEMPORADA\",\n            \"startingDate\": \"2022-09-01\",\n            \"endingDate\": \"2023-04-01\",\n            \"reason\": \"CERRADA POR TEMPORADA BAJA\",\n            \"systemModifiedAt\": \"2022-08-31T12:29:05.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE4ODgxNTE4MTM5MTQ2MjExMTswMDsn\\\"\",\n            \"roomNo\": \"303\",\n            \"lineNo\": 3,\n            \"systemId\": \"690cba6b-2829-ed11-97e8-00224882e1a5\",\n            \"roomType\": \"IND\",\n            \"lockType\": \"TEMPORADA\",\n            \"startingDate\": \"2022-09-01\",\n            \"endingDate\": \"2023-04-01\",\n            \"reason\": \"CERRADA POR TEMPORADA BAJA\",\n            \"systemModifiedAt\": \"2022-08-31T12:29:07.353Z\"\n        }\n    ]\n}"},{"id":"0bb1a1af-a411-4f52-b44f-29d5ca08ce56","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/lockRooms"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"28053784-d0c7-43a9-a34d-f7fb2f1fe102","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/lockRooms"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"},{"id":"9009bf26-72e2-419d-976b-ec1556aedb0b","name":"Filter by roomNo","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/hotel/v1.0/companies(< company ID >)/lockRooms?$filter=roomNo eq '203'","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","hotel","v1.0","companies(< company ID >)","lockRooms"],"query":[{"key":"$filter","value":"roomNo eq '203'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"4e152510-bdf8-8b6f-8b34-af16d52fe848"},{"key":"mise-correlation-id","value":"d4ef79d5-dec0-4bd7-a422-9a938c71cce2"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"79ff8c4d-667e-4bc8-97c0-3dc176f2a515"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:15:28 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/lockRooms\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzgyOTUzMzM3MjEzNTQxNjQ4MTswMDsn\\\"\",\n            \"roomNo\": \"203\",\n            \"lineNo\": 4,\n            \"systemId\": \"36cd6286-2829-ed11-97e8-00224882e1a5\",\n            \"roomType\": \"JSUITE\",\n            \"lockType\": \"OBRAS\",\n            \"startingDate\": \"2022-08-31\",\n            \"endingDate\": \"2022-08-31\",\n            \"reason\": \"OBRAS REMODELACIÓN\",\n            \"systemModifiedAt\": \"2022-08-31T12:29:45.94Z\"\n        }\n    ]\n}"}],"_postman_id":"46029758-221b-48cd-b159-5490dbac9a5d"},{"name":"lockRooms","id":"96563390-fd03-4203-90e6-89e461ddd4d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-08-31\",\r\n    \"endingDate\": \"2022-08-31\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","lockRooms"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"65c979b3-ad7b-48c7-8b95-808eb223a0ec","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-08-31\",\r\n    \"endingDate\": \"2022-08-31\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/hotel/v1.0/companies(7baa7726-010f-ed11-90eb-6045bd8aa9fb)/lockRooms2(5570daa2-5d30-ee11-9cbf-000d3ad8f09d)"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"da5d5eeb-5abc-60f8-eacc-9c2d2b41f72a"},{"key":"mise-correlation-id","value":"d499a2ea-3a70-4057-8952-dc19e71984da"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"8fe3bf2d-1e8e-407f-87dd-e065e0d0e62a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:22:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<api publisher>/<api group>/<api version>/$metadata#companies(<company ID>)/lockRooms/$entity\",\n    \"@odata.etag\": \"W/\\\"JzE5OzY4NjkwNDEzMzg1NTQzNTM5OTExOzAwOyc=\\\"\",\n    \"systemId\": \"5570daa2-5d30-ee11-9cbf-000d3ad8f09d\",\n    \"roomNo\": \"203\",\n    \"lineNo\": 5,\n    \"roomType\": \"\",\n    \"lockType\": \"OBRAS\",\n    \"startingDate\": \"2022-08-31\",\n    \"endingDate\": \"2022-08-31\",\n    \"reason\": \"OBRAS REMODELACIÓN\",\n    \"discountInPlanning\": true,\n    \"systemModifiedAt\": \"2023-08-01T11:22:03.637Z\"\n}"},{"id":"6af1be44-35f6-4efb-ad5a-e86fccbe9e05","name":"400","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"53d8a5b1-2bd0-82a4-61ac-8ba15e017acd"},{"key":"mise-correlation-id","value":"8970b1d8-2571-43a0-88f1-f17c33f65925"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"97f5f6c2-5de1-4a79-9a9a-ef862c8d4936"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:53:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"BadRequest\",\n        \"message\": \"Invalid Request Body  CorrelationId:  97f5f6c2-5de1-4a79-9a9a-ef862c8d4936.\"\n    }\n}"},{"id":"a9bccfd6-d6ef-4970-894f-33d4e5dea5d8","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"31b023b4-692a-4f89-b358-514dffcc1633","name":"404","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"96563390-fd03-4203-90e6-89e461ddd4d2"},{"name":"lockRooms","id":"1428c184-013c-4061-8f4f-c3105f2c7c08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"tokenName","value":"<token-name>"},{"key":"clientId","value":"<client-id>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"username","value":"<username>"},{"key":"password","value":"<password>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-09-30\",\r\n    \"endingDate\": \"2022-09-30\",\r\n    \"discountInPlanning\": \"false\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms(<room ID>)","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","lockRooms(<room ID>)"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"02b7757a-6bb6-4dca-b223-4b3fe3005abb","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-09-30\",\r\n    \"endingDate\": \"2022-09-30\",\r\n    \"discountInPlanning\": \"false\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms(<room ID>)"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"9952cc4c-dddb-4567-81cc-1bb69c6ca41d"},{"key":"mise-correlation-id","value":"153ae618-6474-4ac0-b921-10dda3645562"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"9004f85f-4332-402f-8972-ce4453bed7e9"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:25:02 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company ID>)/lockRooms/$entity\",\n    \"@odata.etag\": \"W/\\\"JzIwOzE2OTU5NTY3MzkxOTYyNjEyMTAxMTswMDsn\\\"\",\n    \"systemId\": \"5570daa2-5d30-ee11-9cbf-000d3ad8f09d\",\n    \"roomNo\": \"203\",\n    \"lineNo\": 5,\n    \"roomType\": \"JSUITE\",\n    \"lockType\": \"OBRAS\",\n    \"startingDate\": \"2022-09-30\",\n    \"endingDate\": \"2022-09-30\",\n    \"reason\": \"OBRAS REMODELACIÓN\",\n    \"discountInPlanning\": false,\n    \"systemModifiedAt\": \"2023-08-01T11:25:03Z\"\n}"},{"id":"84a9bf45-ceed-49bc-a495-6d1078e87f96","name":"400","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-08-31\",\r\n    \"endingDate\": \"2022-08-31\",\r\n    \"discountInPlanning\": \"false\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms(<room ID>)"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"54e53f44-d14c-50a5-b74e-f0b1f135b142"},{"key":"mise-correlation-id","value":"7168e1f3-e8a2-4585-830e-a34402f9b130"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"27cb52a3-41ba-4aa8-9f41-2f75c267cb8f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 01 Aug 2023 11:23:58 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Application_DialogException\",\n        \"message\": \"This lock is overlap with another lock.  CorrelationId:  27cb52a3-41ba-4aa8-9f41-2f75c267cb8f.\"\n    }\n}"},{"id":"f9a939a2-1656-4d12-b53d-d9818d8ef67b","name":"401","originalRequest":{"method":"PATCH","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"roomNo\": \"203\",\r\n    \"lockType\": \"OBRAS\",\r\n    \"startingDate\": \"2022-08-31\",\r\n    \"endingDate\": \"2022-08-31\",\r\n    \"discountInPlanning\": \"false\",\r\n    \"reason\": \"OBRAS REMODELACIÓN\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms(<room ID>)"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"2a826f2b-13c3-443a-9ea4-75d35b1a55bf","name":"404","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/lockRooms(<room ID>)"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"1428c184-013c-4061-8f4f-c3105f2c7c08"},{"name":"roomAttributes","id":"7e93376d-8d71-4c8b-9767-82c5f5319110","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/room/v1.0/companies(< company ID >)/roomAttributes","description":"<p>System table: Room Attribute HTL<br />Page in Business Central: Room Attributes HTL</p>\n<p>Return the list of plannings.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attribute</td>\n<td>Code[10]</td>\n<td>Specifies the attribute classification in the hotel configuration for this room.</td>\n</tr>\n<tr>\n<td>attributeCaption</td>\n<td>Text</td>\n<td></td>\n</tr>\n<tr>\n<td>value</td>\n<td>Text[20]</td>\n<td>Specifies the value of the attribute defined in the hotel configuration for this room.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","room","v1.0","companies(< company ID >)","roomAttributes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"8d429a8e-3f97-4e1e-9204-651a1ae642e7","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/roomAttributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"c3133ac4-6ebf-b7f1-d4a3-408e8d78b0a0"},{"key":"mise-correlation-id","value":"e09a885c-6be5-478f-b8ea-884c21d84a8f"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"2f2b0ac9-7858-44ab-bd63-ab034c221061"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Mon, 31 Jul 2023 08:34:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/roomAttributes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzIwNjQ3Mzg0ODc3Mzc1MzAxOzAwOyc=\\\"\",\n            \"attribute\": \"1\",\n            \"value\": \"INDIVIDUAL\",\n            \"systemId\": \"006864c7-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU3MjkzNjY1MDg0MDUwOTA3MTswMDsn\\\"\",\n            \"attribute\": \"1\",\n            \"value\": \"KING SIZE\",\n            \"systemId\": \"9ea38b1e-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODcyNjM3Nzk4ODg4MjYyMDExOzAwOyc=\\\"\",\n            \"attribute\": \"1\",\n            \"value\": \"KING SIZE + TWIN BED\",\n            \"systemId\": \"6bcaf4f3-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMwNTAyMDM3NTUyMDI2OTU4MTswMDsn\\\"\",\n            \"attribute\": \"1\",\n            \"value\": \"QUEEN SIZE\",\n            \"systemId\": \"9fa38b1e-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg5OTk2NTAzNTI5Mzc3MDM1MTswMDsn\\\"\",\n            \"attribute\": \"1\",\n            \"value\": \"TWIN BED\",\n            \"systemId\": \"dcbe1d28-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjMzNDA1NDM1MTY3NDEwNTMzMTswMDsn\\\"\",\n            \"attribute\": \"2\",\n            \"value\": \"GRANDE \",\n            \"systemId\": \"07608b32-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDM3MzAxMzU1MzAxODQwNDAxOzAwOyc=\\\"\",\n            \"attribute\": \"2\",\n            \"value\": \"PEQUEÑO\",\n            \"systemId\": \"08608b32-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjEwMjQwNjcyNTg3Mzg2NzY3MTswMDsn\\\"\",\n            \"attribute\": \"2\",\n            \"value\": \"SIN BALCÓN\",\n            \"systemId\": \"cc639037-2629-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzU5ODY4NDc5NTQ0OTI0MjYxOzAwOyc=\\\"\",\n            \"attribute\": \"3\",\n            \"value\": \"NO\",\n            \"systemId\": \"630eac3b-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTQyNDM2MzA4MTQyODAzODI4MTswMDsn\\\"\",\n            \"attribute\": \"3\",\n            \"value\": \"SI\",\n            \"systemId\": \"600eac3b-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjgyMjYyNzExMDQwNDk2NjMyMTswMDsn\\\"\",\n            \"attribute\": \"4\",\n            \"value\": \"NO\",\n            \"systemId\": \"2c9b6142-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU3MDQ3NTI3ODg4OTc3MzgxMTswMDsn\\\"\",\n            \"attribute\": \"4\",\n            \"value\": \"SI\",\n            \"systemId\": \"660eac3b-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NzYwNzE5MjE0Njg0ODA2MTExOzAwOyc=\\\"\",\n            \"attribute\": \"5\",\n            \"value\": \"BAÑERA HIDROMASAJE\",\n            \"systemId\": \"ab4b5088-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzEyMjQ5NzE5MjU1NzMwMTg0MTswMDsn\\\"\",\n            \"attribute\": \"5\",\n            \"value\": \"BAÑERA STANDAR\",\n            \"systemId\": \"361f4349-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0ODQ2MDg0NDc2NDg0OTUxMDgxOzAwOyc=\\\"\",\n            \"attribute\": \"5\",\n            \"value\": \"DUCHA HIDROMASAJE\",\n            \"systemId\": \"d59dc150-2529-ed11-97e8-00224882e1a5\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTc4MTE3MDE0ODg5OTQyMjIxOzAwOyc=\\\"\",\n            \"attribute\": \"5\",\n            \"value\": \"PLATO DUCHA\",\n            \"systemId\": \"351f4349-2529-ed11-97e8-00224882e1a5\"\n        }\n    ]\n}"},{"id":"e03eb180-cb19-475c-808f-940778dbded9","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/roomAttributes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"fc8f8e06-1e42-420a-842b-21215fb41e3e","name":"404","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/planning/v1.0/companies(< company ID >)/roomAttributes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f31ce326-94a2-3d96-32bb-801960cf5d76"},{"key":"mise-correlation-id","value":"31e52171-3682-42ea-848c-f934b60a7774"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d388b5b6-3932-41cc-96fa-3704d360f226"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 28 Jul 2023 12:05:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, 8baa7726-010f-ed11-90eb-6045bd8aa9fb, does not exist.  CorrelationId:  d388b5b6-3932-41cc-96fa-3704d360f226.\"\n    }\n}"}],"_postman_id":"7e93376d-8d71-4c8b-9767-82c5f5319110"}],"id":"08820426-6061-42f6-acc8-a8501e203ed6","_postman_id":"08820426-6061-42f6-acc8-a8501e203ed6","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"sale","item":[{"name":"closingSales","id":"8d0cc9f6-a83a-4a2c-a369-5d196db56ed8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/closingSales","description":"<p>System table: Closing Sales HTL<br />Page in Business Central: Closing Sales HTL</p>\n<p>Return the list of the closing sales.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>Specifies the No. Closing Sale.</td>\n</tr>\n<tr>\n<td>Involved</td>\n<td></td>\n<td>Specifies who or what is affected by the closing sales, the values that this field can have are:  <br />General  <br />Rate  <br />Allotment  <br />Customer</td>\n</tr>\n<tr>\n<td>involvedNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>noSeries</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>emailSent</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>boardBasisFilter</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the closing sale was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","sale","v1.0","companies(<companyID>)","closingSales"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"2e2b4d09-a575-45a2-8bbd-9a38053052f5","name":"closingSales","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/closingSales"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/closingSales\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ1ODA5OTI3ODE1NTQ3MjI1MTswMDsn\\\"\",\r\n            \"systemId\": \"f459e8cf-c8b3-ee11-be83-6045bd8f25a4\",\r\n            \"no\": \"No.1\",\r\n            \"Involved\": \"Allotment\",\r\n            \"involvedNo\": \"\",\r\n            \"roomType\": \"\",\r\n            \"fromDate\": \"2018-05-15\",\r\n            \"toDate\": \"2018-05-15\",\r\n            \"description\": \"\",\r\n            \"noSeries\": \"No.1-CIERRE\",\r\n            \"emailSent\": false,\r\n            \"boardBasisFilter\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzIxMzI5OTQ2ODE5NTEwMjkxOzAwOyc=\\\"\",\r\n            \"systemId\": \"f559e8cf-c8b3-ee11-be83-6045bd8f25a4\",\r\n            \"no\": \"No.2\",\r\n            \"Involved\": \"Allotment\",\r\n            \"involvedNo\": \"\",\r\n            \"roomType\": \"\",\r\n            \"fromDate\": \"2018-06-18\",\r\n            \"toDate\": \"2018-06-21\",\r\n            \"description\": \"\",\r\n            \"noSeries\": \"No.2-CIERREV\",\r\n            \"emailSent\": false,\r\n            \"boardBasisFilter\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODc3NTgxOTgzOTAwNjUzMjIxOzAwOyc=\\\"\",\r\n            \"systemId\": \"f659e8cf-c8b3-ee11-be83-6045bd8f25a4\",\r\n            \"no\": \"No.3\",\r\n            \"Involved\": \"Allotment\",\r\n            \"involvedNo\": \"\",\r\n            \"roomType\": \"\",\r\n            \"fromDate\": \"2018-07-16\",\r\n            \"toDate\": \"2018-07-21\",\r\n            \"description\": \"\",\r\n            \"noSeries\": \"No.3-CIERREV\",\r\n            \"emailSent\": false,\r\n            \"boardBasisFilter\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8d0cc9f6-a83a-4a2c-a369-5d196db56ed8"},{"name":"closingSalesArchive","id":"0e901423-dbb1-4e68-922b-787bd015f706","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/closingSalesArchive","description":"<p>System table: Closing Sales Archive HTL<br />Page in Business Central: Closing Sales Archived HTL</p>\n<p>Return the list of the closing sales.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>Specifies the No. Closing Sale.</td>\n</tr>\n<tr>\n<td>Involved</td>\n<td></td>\n<td>Specifies who or what is affected by the closing sales, the values that this field can have are:  <br />General  <br />Rate  <br />Allotment  <br />Customer</td>\n</tr>\n<tr>\n<td>involvedNo</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>fromDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>toDate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>description</td>\n<td>Text[100]</td>\n<td></td>\n</tr>\n<tr>\n<td>noSeries</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>emailSent</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>boardBasisFilter</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>archivedReason</td>\n<td>Enum</td>\n<td>Specifies the reason why the closing sale was archived, the values that this field can have are:  <br />Manual  <br />Conclused</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the closing sale was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","sale","v1.0","companies(<companyID>)","closingSalesArchive"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"002b2368-e757-4f74-a04c-f0ec9943b5fe","name":"closingSalesArchive","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sale/v1.0/companies(<companyID>)/closingSalesArchive"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/closingSalesArchive\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE2OTU0MTk5OTQ1NzM2MDQ5MTswMDsn\\\"\",\r\n            \"systemId\": \"352v1cxe-2541-hc32-b7a3-724b704dj986\",\r\n            \"no\": \"PC3214001\",\r\n            \"involved\": \"General\",\r\n            \"involvedNo\": \"\",\r\n            \"roomType\": \"2D\",\r\n            \"fromDate\": \"0001-01-01\",\r\n            \"toDate\": \"0001-01-01\",\r\n            \"description\": \"\",\r\n            \"noSeries\": \"CLOSINGS\",\r\n            \"emailSent\": false,\r\n            \"boardBasisFilter\": \"\",\r\n            \"archivedReason\": \"Manual\",\r\n            \"lastModifiedDateTime\": \"2024-10-09T08:03:23.027Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"0e901423-dbb1-4e68-922b-787bd015f706"}],"id":"8be7d312-72bd-46f7-9a35-5e2a8b4126f3","_postman_id":"8be7d312-72bd-46f7-9a35-5e2a8b4126f3","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"standard","item":[{"name":"countriesRegions","id":"c7e60933-7d3f-43da-8460-e50775e990bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/standard/v1.0/companies(< company ID >)/countriesRegions","description":"<p>This endpoints returns the same values as the standard microsoft endpoint get countryRegions</p>\n<p><a href=\"https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/api/dynamics_countryregion_get\">GET countryRegions - Business Central | Microsoft Learn</a></p>\n<p>System table: Countries/Regions<br />Page in Business Central: Country/Region</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","standard","v1.0","companies(< company ID >)","countriesRegions"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"eacb8ba8-92cd-48c4-a4f2-38a3c6642e1c","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/standard/v1.0/companies(< company ID >)/countriesRegions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/countriesRegions\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjY2ODYxMzg3NjMwMzAwMjUxOzAwOyc=\\\"\",\n            \"id\": \"f3583902-f967-4ea9-b535-00be3c3bbeb8\",\n            \"code\": \"PAK\",\n            \"displayName\": \"PAKISTAN\",\n            \"addressFormat\": \"City+Post Code\",\n            \"lastModifiedDateTime\": \"2023-03-07T10:53:44.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjYyNTkzMjE1ODIwMzQ4MzcxOzAwOyc=\\\"\",\n            \"id\": \"1de06a3a-ee97-430f-b80a-024f4f350254\",\n            \"code\": \"TCD\",\n            \"displayName\": \"CHAD\",\n            \"addressFormat\": \"City+Post Code\",\n            \"lastModifiedDateTime\": \"2023-03-07T10:53:45.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTI4OTkxNTg4MDM1NjY3ODAxOzAwOyc=\\\"\",\n            \"id\": \"ffdc5c4a-736f-41aa-8a46-0485414b9cb7\",\n            \"code\": \"BLM\",\n            \"displayName\": \"SAN BARTOLOMÉ\",\n            \"addressFormat\": \"City+Post Code\",\n            \"lastModifiedDateTime\": \"2023-03-07T10:53:42.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDk0ODA1NjQ5NDE0OTk2MTkxOzAwOyc=\\\"\",\n            \"id\": \"8585458f-4905-4b3d-9e87-04dc8b35101b\",\n            \"code\": \"SLV\",\n            \"displayName\": \"EL SALVADOR\",\n            \"addressFormat\": \"City+Post Code\",\n            \"lastModifiedDateTime\": \"2023-03-07T10:53:44.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mjk0MDM5NDEyNDU2Nzg5MDUxOzAwOyc=\\\"\",\n            \"id\": \"d327ca72-7cac-4f0d-8bfc-0587cd8d02d8\",\n            \"code\": \"ALA\",\n            \"displayName\": \"ISLAS ÅLAND\",\n            \"addressFormat\": \"City+Post Code\",\n            \"lastModifiedDateTime\": \"2023-03-07T10:53:42.427Z\"\n        }\n    ]\n}"}],"_postman_id":"c7e60933-7d3f-43da-8460-e50775e990bf"},{"name":"Item Ledger Entry","id":"dea3f61c-b291-4b27-aa8d-bf24631f1d45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"grant_type","value":"<grant_type>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environmentName >/api/< apiPublisher >/standard/v1.0/companies(< companyID >)/itemLedgerEntries","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environmentName >","api","< apiPublisher >","standard","v1.0","companies(< companyID >)","itemLedgerEntries"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"4f4e6875-7846-43ff-9a9c-95e40d5f2cce","name":"Item Ledger Entry","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environmentName >/api/< apiPublisher >/standard/v1.0/companies(< companyID >)/itemLedgerEntries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"be319bfd-b486-7042-2986-db29a52fc369"},{"key":"mise-correlation-id","value":"67f3aa7c-5a7b-4f4d-9d03-2c24aa43fe1c"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"4494163f-7578-4232-9fa5-1dc6a5749da9"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 07 Jan 2026 07:47:31 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/standard/v1.0/$metadata#companies(af9287a9-c938-ed11-97e8-000d3a398287)/itemLedgerEntries\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDUwOTg5NzM5MTM1MTE4NjkxOzAwOyc=\\\"\",\n            \"entryNo\": 1,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 4.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107001\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 75,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 75,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 4.5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 75,\n            \"remainingQuantity\": 75,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:44:07.307Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"ad24e940-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2024-04-18T16:00:42.307Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NDI4Mjk1NDM0MzM1ODI2ODQxOzAwOyc=\\\"\",\n            \"entryNo\": 2,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 20,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107001\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 40,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 40,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 20,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 10,\n            \"quantity\": 40,\n            \"remainingQuantity\": 28,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:44:07.353Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"ba24e940-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2024-04-18T16:22:31.787Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjQ4OTcxODg0MjQyMzE2NDMxOzAwOyc=\\\"\",\n            \"entryNo\": 3,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 4.2,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107001\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 3,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 4.2,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:44:07.417Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"c524e940-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2024-04-18T16:22:31.58Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDA4MDc4MDI2ODUwMjk4NjUxOzAwOyc=\\\"\",\n            \"entryNo\": 4,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 3,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"107001\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 6,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": 6,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 3,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 6,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:44:07.463Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"d024e940-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2023-04-05T12:32:28.03Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjQ3NDEwMzUwMDU0MzczMTkxOzAwOyc=\\\"\",\n            \"entryNo\": 5,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 35,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"COLA LATA 33CL\",\n            \"dimensionSetID\": 24,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107002\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10401\",\n            \"itemDescription\": \"COPA VINO TINTO\",\n            \"itemLedgerEntryQuantity\": 100,\n            \"itemNo\": \"V0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 35,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 100,\n            \"remainingQuantity\": 90,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:47:29.797Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"7eae87bb-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2023-04-03T12:38:35.003Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTkyNjMzMTUzNjczMDQwMDczMTswMDsn\\\"\",\n            \"entryNo\": 6,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 32,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107002\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": 80,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 32,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 80,\n            \"remainingQuantity\": 34,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:47:29.997Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"8bae87bb-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2022-08-16T15:50:41.577Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTUxNDU0OTk4OTY0ODg4NzAxOzAwOyc=\\\"\",\n            \"entryNo\": 7,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 20,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"SPRITE LIMÓN\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107002\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 80,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"SPRITE LIMÓN\",\n            \"itemLedgerEntryQuantity\": 80,\n            \"itemNo\": \"V0000004\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 20,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 80,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-16T15:47:30.06Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"96ae87bb-7a1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2022-08-18T14:01:59.063Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjc5OTg4NTgzMjMwMTExNzUxOzAwOyc=\\\"\",\n            \"entryNo\": 8,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -1.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -25,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -25,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -25,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -25,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:40.42Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"fcd8152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2024-04-18T16:00:42.207Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzI3Mzg2NDExMjcyMjk1MjkxOzAwOyc=\\\"\",\n            \"entryNo\": 9,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 1.4,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:40.857Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"07d9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2023-04-05T12:21:52.307Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY4MjMxMjMwNzM2NTcxMTUzMTswMDsn\\\"\",\n            \"entryNo\": 10,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -10,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": -10,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -10,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:41.31Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"12d9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2024-04-18T16:22:31.753Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ5Mzc5NjM3NjE4ODM3NDQxMTswMDsn\\\"\",\n            \"entryNo\": 11,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -1,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -2,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": -2,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -2,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -2,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:41.373Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"1cd9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2022-08-16T15:50:41.373Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTI2NzA5NzA0ODY2MTA1MTQxOzAwOyc=\\\"\",\n            \"entryNo\": 12,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -3.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"COLA LATA 33CL\",\n            \"dimensionSetID\": 24,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -10,\n            \"itemCategoryCode\": \"10401\",\n            \"itemDescription\": \"COPA VINO TINTO\",\n            \"itemLedgerEntryQuantity\": -10,\n            \"itemNo\": \"V0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -10,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:41.42Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"26d9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2023-04-03T12:38:35.003Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTkyOTAwNjgyNzg4MjAzNDcxOzAwOyc=\\\"\",\n            \"entryNo\": 13,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -18.4,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -46,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": -46,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -46,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -46,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:41.593Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"30d9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2022-08-16T15:50:41.593Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTMwNjI5MjM0NDUwMTI5NzQxOzAwOyc=\\\"\",\n            \"entryNo\": 14,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.25,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"SPRITE LIMÓN\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"SPRITE LIMÓN\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"V0000004\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2022-08-16T15:50:41.623Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"39d9152d-7b1d-ed11-90eb-000d3aaa675e\",\n            \"systemModifiedAt\": \"2022-08-16T15:50:41.623Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mjk2OTI0ODUzMDYwNjkwNDIxOzAwOyc=\\\"\",\n            \"entryNo\": 15,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BOLIGRAFOS AZULES\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107003\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB180822\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BOLIGRAFOS AZULES\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"OF000001\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T12:55:42.527Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"6421ba10-f51e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T12:55:42.527Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODczMjgwMDA2MjA3Njg1NjcxOzAwOyc=\\\"\",\n            \"entryNo\": 16,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FOLIOS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107003\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB180822\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"FOLIOS\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"OF000002\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T12:55:43.293Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"6a21ba10-f51e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:54:01.847Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAzMTA1MTE3MzAxMzk0NTkyMTswMDsn\\\"\",\n            \"entryNo\": 17,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BOLIGRAFOS ROJOS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107003\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB180822\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BOLIGRAFOS ROJOS\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"OF000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 15,\n            \"remainingQuantity\": 15,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T12:55:43.87Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"6f21ba10-f51e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:54:01.893Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTA3OTUyMTM2OTkyNjIzMzUxOzAwOyc=\\\"\",\n            \"entryNo\": 18,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BLOCK NOTAS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"107003\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB180822\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BLOCK NOTAS\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"OF000004\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T12:55:43.9Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"7421ba10-f51e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T12:55:43.9Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk3NDcwODU4NzE4NDEwNTU2MTswMDsn\\\"\",\n            \"entryNo\": 19,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BOLIGRAFOS AZULES\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107004\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 30,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BOLIGRAFOS AZULES\",\n            \"itemLedgerEntryQuantity\": 30,\n            \"itemNo\": \"OF000001\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 30,\n            \"remainingQuantity\": 30,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00030\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T13:59:37.097Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"40a340fe-fd1e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:59:37.097Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5NTM2Njk4OTcyNTI5Nzc1NTE7MDA7Jw==\\\"\",\n            \"entryNo\": 20,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FOLIOS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107004\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 20,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"FOLIOS\",\n            \"itemLedgerEntryQuantity\": 20,\n            \"itemNo\": \"OF000002\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 20,\n            \"remainingQuantity\": 20,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00030\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T13:59:37.533Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"45a340fe-fd1e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:59:37.533Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc4MjYzMTU4MTEyNTY2ODQ4MTswMDsn\\\"\",\n            \"entryNo\": 21,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BOLIGRAFOS ROJOS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"107004\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BOLIGRAFOS ROJOS\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"OF000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00030\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T13:59:37.677Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"49a340fe-fd1e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:59:37.677Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ4MDI3MDc2ODUxODMxMjcwMTswMDsn\\\"\",\n            \"entryNo\": 22,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"BLOCK NOTAS\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"107004\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"304\",\n            \"itemDescription\": \"BLOCK NOTAS\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"OF000004\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00030\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T13:59:37.737Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"4da340fe-fd1e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T13:59:37.737Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NDg4NjU1ODk5NTQ1MzAzNzcxOzAwOyc=\\\"\",\n            \"entryNo\": 23,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 7,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -20,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"SPRITE LIMÓN\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-18\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"109001\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"AB567\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -80,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"SPRITE LIMÓN\",\n            \"itemLedgerEntryQuantity\": -80,\n            \"itemNo\": \"V0000004\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-18\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-18\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -20,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -80,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -80,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2022-08-18T14:01:58.4Z\",\n            \"systemCreatedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"systemId\": \"6dc86e51-fe1e-ed11-90eb-00224882e0a5\",\n            \"systemModifiedAt\": \"2022-08-18T14:01:58.4Z\",\n            \"systemModifiedBy\": \"d835060d-fa7d-4917-82f0-627fb285b2e9\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1Njk3MTc4Njk1MjQxODQzMjQxOzAwOyc=\\\"\",\n            \"entryNo\": 24,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -14,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 22,\n            \"documentDate\": \"2023-04-05\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"103001\",\n            \"documentType\": \"Sales_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"31\",\n            \"invoicedQuantity\": -10,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": -10,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-04-05\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-04-05\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 45,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CONTADO\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2023-04-05T12:21:52.323Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"037cda6c-acd3-ed11-a7c9-002248869243\",\n            \"systemModifiedAt\": \"2024-08-20T10:33:39.277Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUwODk4NjE2MDgyNjcwODMyMTswMDsn\\\"\",\n            \"entryNo\": 25,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -7.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 22,\n            \"documentDate\": \"2023-04-05\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"103002\",\n            \"documentType\": \"Sales_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"31\",\n            \"invoicedQuantity\": -15,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": -15,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-04-05\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-04-05\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -15,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 19.5,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -15,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CONTADO\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2023-04-05T12:32:28.09Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"d0b48fe9-add3-ed11-a7c9-002248869243\",\n            \"systemModifiedAt\": \"2023-06-07T10:10:16.467Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDE5NTkyOTE4Mzc4NTg1NTY2MTswMDsn\\\"\",\n            \"entryNo\": 26,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108006\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"125\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0.5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00001\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-05-10T17:08:09.383Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"ff65ec3b-55ef-ed11-8848-00224888b1e5\",\n            \"systemModifiedAt\": \"2023-08-30T08:46:55.693Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTA2ODc1MTI4NDkxMzUyMTQxOzAwOyc=\\\"\",\n            \"entryNo\": 27,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000002\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000001\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-05-15T09:58:52.1Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"afa89a15-07f3-ed11-8848-00224888b1e5\",\n            \"systemModifiedAt\": \"2023-05-15T09:58:52.1Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE0NzE0NjY4Nzc3MTcwMDUzMTswMDsn\\\"\",\n            \"entryNo\": 28,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000002\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000001\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-05-15T09:58:48.93Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"eba39a15-07f3-ed11-8848-00224888b1e5\",\n            \"systemModifiedAt\": \"2023-05-15T09:58:48.93Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzAyMTkzMDY5MDUzNjM5OTcxOzAwOyc=\\\"\",\n            \"entryNo\": 29,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000004\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000003\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-05-15T10:52:42.837Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"02990198-0ef3-ed11-8848-00224888b1e5\",\n            \"systemModifiedAt\": \"2023-05-15T10:52:42.837Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1OTAxMTUwNDUzNDQyNDk3OTE7MDA7Jw==\\\"\",\n            \"entryNo\": 30,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.2,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000004\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000003\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-05-15T10:52:40.647Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"f8980198-0ef3-ed11-8848-00224888b1e5\",\n            \"systemModifiedAt\": \"2023-05-15T10:52:40.647Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTI0OTUwMDYwNTYyMTE5MTQxOzAwOyc=\\\"\",\n            \"entryNo\": 31,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 7.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 22,\n            \"documentDate\": \"2023-06-07\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"104001\",\n            \"documentType\": \"Sales_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"31\",\n            \"invoicedQuantity\": 15,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-07\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-07\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 15,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": -19.5,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CONTADO\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2023-06-07T10:10:17.163Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"4118617e-1b05-ee11-8f6e-6045bda14e25\",\n            \"systemModifiedAt\": \"2023-06-23T16:41:58.2Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY1MjQyNjc2MDEwODM4NzY4MTswMDsn\\\"\",\n            \"entryNo\": 32,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 21,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2023-06-23\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107007\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"54\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 15,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-23\",\n            \"locationCode\": \"MINIM\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 15,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-06-23T16:12:15.753Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5cd756b7-e011-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-06-23T16:13:08.267Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzQ1MTk5MjUxOTUzNTU2OTkxOzAwOyc=\\\"\",\n            \"entryNo\": 33,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 32,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": true,\n            \"costAmountActual\": -21,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2023-06-23\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107007\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"54\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -15,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": -15,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-23\",\n            \"locationCode\": \"MINIM\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-06-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -15,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -15,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-06-23T16:13:07.107Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"b6554fd6-e011-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-06-23T16:13:07.813Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQ2MzM2Mjc4MzA2MTMwNzkxMTswMDsn\\\"\",\n            \"entryNo\": 34,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-06-23\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107008\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"DADF\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 4,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-06-23T16:41:58.03Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"e60effdd-e411-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-06-23T16:41:58.447Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjg1MDAyNjcxODI3Mzc5OTIxOzAwOyc=\\\"\",\n            \"entryNo\": 35,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": -1.11,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-06-23\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107008\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"DADF\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": -5,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-06-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -5,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-06-23T16:41:58.51Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"ee0effdd-e411-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-06-23T16:41:58.51Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI4MjIzMjg4MDU5OTE4Nzc0MTswMDsn\\\"\",\n            \"entryNo\": 36,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 50,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-19\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108007\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"125\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 100,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": 100,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-19\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-19\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 50,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 100,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-07-12T11:23:41.027Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"01a3ea89-a620-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-07-12T11:29:50.973Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjMxOTE4NDQwNDQ0MDY3NjExOzAwOyc=\\\"\",\n            \"entryNo\": 37,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 36,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -50,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-19\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"109004\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1007\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -100,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": -100,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-19\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-19\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -50,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -100,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -100,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-07-12T11:29:49.043Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"49d7a865-a720-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-07-12T11:29:49.043Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ0NDgwNTA1MDA4MjE2MjAzMTswMDsn\\\"\",\n            \"entryNo\": 38,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-07-14\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"12\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-07-14\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-07-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-07-14T12:22:50.867Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"070fad21-4122-ee11-8f6e-6045bd9d45c4\",\n            \"systemModifiedAt\": \"2023-07-14T12:22:50.867Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA3MjI3NDkwNjkxOTYzNTc1MTswMDsn\\\"\",\n            \"entryNo\": 39,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 14,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-06-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108010\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"12345\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-15\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 14,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 9,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-07-31T07:23:59.733Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"31e33634-732f-ee11-9cbf-6045bd94e38d\",\n            \"systemModifiedAt\": \"2024-02-09T17:47:36.62Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU3OTk0MjM4MTA4NDIwMDYwMTswMDsn\\\"\",\n            \"entryNo\": 40,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": -0.49,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 38,\n            \"documentDate\": \"2023-07-31\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"AV0000001\",\n            \"documentType\": \"Sales_x0020_Shipment\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"10\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"MINIM\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-ALBARAN\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-07-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": -1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 5,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -1,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CL00000095\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2023-07-31T08:49:26.583Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"76104c25-7f2f-ee11-9cbf-6045bd94e38d\",\n            \"systemModifiedAt\": \"2023-07-31T08:49:26.583Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDAxODI3NDIwNjg2MTExMDUxOzAwOyc=\\\"\",\n            \"entryNo\": 41,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108014\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"45234\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-10T14:00:39.577Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"f8b64248-8637-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:07:08.977Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzUwMjcyODY5ODg0NjkxODkwMTswMDsn\\\"\",\n            \"entryNo\": 42,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 41,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"109005\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1011\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -10,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -10,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -10,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-10T14:03:12.59Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"381166a2-8637-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:03:12.59Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEzNjQxNzY2OTUxNjE3NjQ3MTswMDsn\\\"\",\n            \"entryNo\": 43,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 50,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108015\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"3254564\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 50,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-10T14:03:48.767Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"a788c4b9-8637-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:10:05.58Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxNDM3OTYxMzcyMTk4NDM1MDE7MDA7Jw==\\\"\",\n            \"entryNo\": 44,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -25,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-06-30\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000003\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -5,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -5,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-30\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-06-30\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -5,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:04:40.343Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"230f83d8-8637-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:04:40.343Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQwODMzMTExMTAwMzQ0NjkxMTswMDsn\\\"\",\n            \"entryNo\": 45,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -15,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000004\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -3,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -3,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -3,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:06:26.173Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"0a309917-8737-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:06:26.173Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDA4OTYxMDQzNjI4NzY1OTExOzAwOyc=\\\"\",\n            \"entryNo\": 46,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 24,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000005\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 8,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 8,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 8,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:08:28.9Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"1075c860-8737-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:19:57.327Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDUzNzA1OTAxMDgwNjM0NDUxMTswMDsn\\\"\",\n            \"entryNo\": 47,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -19,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000006\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -5,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -5,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -5,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:09:47.763Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"65a4b88f-8737-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:09:47.763Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDIyMjkzMjAwNTc5ODUzMTQxOzAwOyc=\\\"\",\n            \"entryNo\": 48,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -3,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 24,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000008\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000007\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:11:58.127Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"4c8c2cdd-8737-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:11:58.127Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Nzg0NjIwMjQ5MTg0MTg0MTUxOzAwOyc=\\\"\",\n            \"entryNo\": 49,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 3,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 24,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000008\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000007\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:11:57.907Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"478c2cdd-8737-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:11:57.907Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzIwMTcwMzEzNDI0NDE3MzU2MTswMDsn\\\"\",\n            \"entryNo\": 50,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 500,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108016\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"342Q34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 100,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 100,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 500,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 100,\n            \"remainingQuantity\": 30,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-10T14:13:14.017Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5a4d900a-8837-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-10-03T12:29:49.31Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc0MTA3MjI4NzY2NzA1NDY0MTswMDsn\\\"\",\n            \"entryNo\": 51,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -262,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-11\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000008\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -54,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -54,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-11\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-11\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -54,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -54,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-08-10T14:17:21.537Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"f430389e-8837-ee11-bdf5-000d3a38bd11\",\n            \"systemModifiedAt\": \"2023-08-10T14:17:21.537Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTQ3NjAxNzQ3MDIxNDg1OTgxOzAwOyc=\\\"\",\n            \"entryNo\": 52,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 21,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2023-06-23\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107009\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"54\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 15,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"MINIM\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 21,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 15,\n            \"remainingQuantity\": 15,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-17T07:43:52.78Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"3c31ecce-d13c-ee11-9cbf-6045bd8bd87c\",\n            \"systemModifiedAt\": \"2024-08-29T07:18:16.707Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMwMDcyNTAxMjY4NTI2MjE0MTswMDsn\\\"\",\n            \"entryNo\": 53,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 26,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-10\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"109007\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1014\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -0.5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -1,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00001\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-08-30T08:46:55.777Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"9477b6c3-1147-ee11-bdf5-000d3a4c8795\",\n            \"systemModifiedAt\": \"2023-08-30T08:46:55.777Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTc4NDQ2OTYzMTAxMTYyMTkxOzAwOyc=\\\"\",\n            \"entryNo\": 54,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -20,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-11\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000009\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -4,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -4,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-11\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-11\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -4,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -4,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-09-13T16:11:14.717Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"6343fd28-5052-ee11-be6d-6045bd939fd2\",\n            \"systemModifiedAt\": \"2023-09-13T16:11:14.717Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY4ODgxODA2MDU1OTE2Mjc2MTswMDsn\\\"\",\n            \"entryNo\": 55,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -15,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-11\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000010\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -3,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -3,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-11\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-11\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -3,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-09-13T16:16:10.183Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5456a0d7-5052-ee11-be6d-6045bd939fd2\",\n            \"systemModifiedAt\": \"2023-09-13T16:16:10.183Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTQyNjcyNzQ2MDYwNTAwMDExOzAwOyc=\\\"\",\n            \"entryNo\": 56,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -64.41,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-11\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000011\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -13,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": -13,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-11\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-11\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -13,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -13,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-10-03T12:29:49.657Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"3bac3188-e861-ee11-8def-6045bd9eaec3\",\n            \"systemModifiedAt\": \"2023-10-03T12:29:49.657Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg3MTIyNjEyMDc3MjU3Njc2MTswMDsn\\\"\",\n            \"entryNo\": 57,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 123.86,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FRIES\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2023-08-11\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000011\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 25,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"FRIES\",\n            \"itemLedgerEntryQuantity\": 25,\n            \"itemNo\": \"C0000018\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-11\",\n            \"locationCode\": \"MINIM\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-11\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 25,\n            \"remainingQuantity\": 25,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2023-10-03T12:29:52.527Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"40ac3188-e861-ee11-8def-6045bd9eaec3\",\n            \"systemModifiedAt\": \"2023-10-03T12:29:52.527Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BO\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjM0OTU3NDc4ODcyODk1ODY2MTswMDsn\\\"\",\n            \"entryNo\": 58,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 1000,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 67,\n            \"documentDate\": \"2023-06-13\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108012\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"125\",\n            \"globalDimension1Code\": \"506\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 20,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 20,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-13\",\n            \"locationCode\": \"LIMPIEZA\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-13\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 1000,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 20,\n            \"remainingQuantity\": 20,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00090\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-10-17T12:55:43.82Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"7776127b-ec6c-ee11-8def-0022488a651e\",\n            \"systemModifiedAt\": \"2023-10-17T12:55:43.82Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc0MTA1NDU4NTEyNzA3MDc2MTswMDsn\\\"\",\n            \"entryNo\": 59,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 45,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-25\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108022\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1254269454\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 750,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 750,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-25\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-25\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 45,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 750,\n            \"remainingQuantity\": 750,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-10-30T11:23:39.75Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"ae11d8c5-1677-ee11-8def-6045bd896f02\",\n            \"systemModifiedAt\": \"2023-10-30T11:23:39.75Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODUwODczMjI4MzgzMDYxMTQ5MTswMDsn\\\"\",\n            \"entryNo\": 60,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 7,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-06-07\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108009\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"12345678\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-06-07\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-06-07\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 7,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00001\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-10-31T12:31:28.957Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"40ef4464-e977-ee11-8178-000d3aae369d\",\n            \"systemModifiedAt\": \"2024-02-09T17:47:35.973Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY3ODA0MDE3NzYzNjk5NTQyMTswMDsn\\\"\",\n            \"entryNo\": 61,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 20,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 77,\n            \"documentDate\": \"2023-05-25\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108023\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"8\",\n            \"globalDimension1Code\": \"508\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-25\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-25\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 20,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"6504\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-17T08:31:12.477Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"f162faa4-2385-ee11-817b-000d3a3a8e31\",\n            \"systemModifiedAt\": \"2023-11-17T08:31:12.477Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI0NTQ3MDc5NzU5NjkwMTI2MTswMDsn\\\"\",\n            \"entryNo\": 62,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 50,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-25\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108024\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"454\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-25\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-25\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 50,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-17T08:36:50.413Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"add33473-2485-ee11-817b-000d3a3a8e31\",\n            \"systemModifiedAt\": \"2024-08-16T06:35:42.493Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjkyNzIyNzQxOTQ5MDkxMjYxOzAwOyc=\\\"\",\n            \"entryNo\": 63,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 8.5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 80,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107005\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 17,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 8.5,\n            \"purchaseAmountExpected\": 80,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 17,\n            \"remainingQuantity\": 17,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:18:14.63Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"dfe4587e-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2024-08-28T11:56:52.21Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjE2NzEzODU4NzY1MDE4MDYxOzAwOyc=\\\"\",\n            \"entryNo\": 64,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.9,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"107005\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 15,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0.9,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 15,\n            \"remainingQuantity\": 15,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:18:15.32Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"e5e4587e-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2024-08-28T11:56:52.41Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQwNDMwNzI2Mjg0NzQxNTg0MTswMDsn\\\"\",\n            \"entryNo\": 65,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 1.1,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 60000,\n            \"documentNo\": \"107005\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 1.1,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:18:15.577Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"eae4587e-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2023-11-27T08:18:15.577Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODcyMjc2NDg1MDM0NjgzMjk1MTswMDsn\\\"\",\n            \"entryNo\": 66,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 70000,\n            \"documentNo\": \"107005\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:18:15.597Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"eee4587e-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2023-11-27T08:18:15.597Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODIzMTQyOTgzNTEwMjM4MDkxOzAwOyc=\\\"\",\n            \"entryNo\": 67,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 16.72,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107006\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 44,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": 44,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-11-27\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 44,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:20:07.767Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"e3ccbcc5-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2023-11-28T14:29:06.327Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyODYzNDk5Mjk2OTQyODE3MDE7MDA7Jw==\\\"\",\n            \"entryNo\": 68,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CORNETO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"107006\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"204\",\n            \"itemDescription\": \"CORNETO\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"CORNETO\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-11-27\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-27T08:20:07.887Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"eaccbcc5-fd8c-ee11-8178-6045bd962ddf\",\n            \"systemModifiedAt\": \"2023-11-28T14:29:06.997Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODk2NDY3OTkxMjM3NzgwMTAxOzAwOyc=\\\"\",\n            \"entryNo\": 69,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 67,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": true,\n            \"costAmountActual\": -16.72,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 25000,\n            \"documentNo\": \"107006\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -44,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": -44,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-11-27\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -44,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -44,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-28T14:29:05.183Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"1a831a7b-fa8d-ee11-8178-000d3ad9865c\",\n            \"systemModifiedAt\": \"2023-11-28T14:29:06.437Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzExNDI4MTI1NDY3MTY4NTE3MTswMDsn\\\"\",\n            \"entryNo\": 70,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 68,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": true,\n            \"costAmountActual\": -5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CORNETO\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-11-27\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"107006\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB48\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -5,\n            \"itemCategoryCode\": \"204\",\n            \"itemDescription\": \"CORNETO\",\n            \"itemLedgerEntryQuantity\": -5,\n            \"itemNo\": \"CORNETO\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-11-27\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-11-27\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -5,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -5,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-11-28T14:29:06.957Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"23831a7b-fa8d-ee11-8178-000d3ad9865c\",\n            \"systemModifiedAt\": \"2023-11-28T14:29:07Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzQwMzgzNTExMTgzOTk3MTIxOzAwOyc=\\\"\",\n            \"entryNo\": 71,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 50,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"TOMATE NATURAL\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-05-19\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108011\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"125,\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 100,\n            \"itemCategoryCode\": \"20601\",\n            \"itemDescription\": \"TOMATE NATURAL\",\n            \"itemLedgerEntryQuantity\": 100,\n            \"itemNo\": \"C0000010\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-19\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-19\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 50,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 100,\n            \"remainingQuantity\": 100,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2023-12-01T16:23:05.763Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"6fbe90e7-6590-ee11-8178-0022489d924d\",\n            \"systemModifiedAt\": \"2023-12-01T16:23:05.763Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTAxMjAwMTc0NTQzMjM1NjgxOzAwOyc=\\\"\",\n            \"entryNo\": 72,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 38,\n            \"documentDate\": \"2024-03-07\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108027\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"10\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-03-07\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-03-07\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 5,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-03-10T21:57:17.653Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"03b0cd28-29df-ee11-904c-000d3adc8222\",\n            \"systemModifiedAt\": \"2024-03-10T21:57:17.653Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM4Mzc1MDM5MDM2ODAxNjQ2MTswMDsn\\\"\",\n            \"entryNo\": 73,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 200,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 74,\n            \"documentDate\": \"2022-08-13\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108029\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"5445\",\n            \"globalDimension1Code\": \"508\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 100,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 100,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-13\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-13\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 200,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 100,\n            \"remainingQuantity\": 57,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-03-26T08:46:15.053Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"f9460c49-4deb-ee11-a1fd-000d3ada17b1\",\n            \"systemModifiedAt\": \"2024-08-29T09:09:37.117Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTk2MTA4ODI2NDE1NjEyODA4MTswMDsn\\\"\",\n            \"entryNo\": 74,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000010\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000005\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:32:18.763Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"869d5fc1-fe11-ef11-9f88-000d3ada17b1\",\n            \"systemModifiedAt\": \"2024-05-14T14:32:18.763Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MzMwMjQ3MjY0MjcwOTY4ODgxOzAwOyc=\\\"\",\n            \"entryNo\": 75,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000010\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"RESTCART\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000005\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:32:17.93Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"7b9d5fc1-fe11-ef11-9f88-000d3ada17b1\",\n            \"systemModifiedAt\": \"2024-05-14T14:32:17.93Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2ODM2MzE2NjQ4Mzc3MjExNzkxOzAwOyc=\\\"\",\n            \"entryNo\": 76,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000011\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000006\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:45:20.08Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"8e5d3b95-0012-ef11-9f88-000d3ada17b1\",\n            \"systemModifiedAt\": \"2024-05-14T14:45:20.08Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyOTc3Mjc4NTk4OTc5MjU3NjE7MDA7Jw==\\\"\",\n            \"entryNo\": 77,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 27,\n            \"documentDate\": \"2023-05-15\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000011\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"501\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-05-15\",\n            \"locationCode\": \"OFIC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000006\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-15\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:45:19.64Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"835d3b95-0012-ef11-9f88-000d3ada17b1\",\n            \"systemModifiedAt\": \"2024-05-14T14:45:19.64Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ3ODQxMzAzNTczMzc1ODY5MTswMDsn\\\"\",\n            \"entryNo\": 78,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000012\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000009\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -1,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:59:49.347Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"11a15699-0212-ef11-9f88-0022489d56a7\",\n            \"systemModifiedAt\": \"2024-05-14T14:59:49.347Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjE5OTc0MDQ2NjM0MDI4NTAxOzAwOyc=\\\"\",\n            \"entryNo\": 79,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.06,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2023-08-10\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"PT0000012\",\n            \"documentType\": \"Direct_x0020_Transfer\",\n            \"dropShipment\": false,\n            \"entryType\": \"Transfer\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-08-10\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"PT0000009\",\n            \"orderType\": \"Transfer\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-10\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-05-14T14:59:47.957Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"06a15699-0212-ef11-9f88-0022489d56a7\",\n            \"systemModifiedAt\": \"2024-05-14T14:59:47.957Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTQyNDA5NzAwMzUzMTM5MDYxOzAwOyc=\\\"\",\n            \"entryNo\": 80,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 4,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 74,\n            \"documentDate\": \"2024-04-26\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108033\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"TEST1123\",\n            \"globalDimension1Code\": \"508\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 2,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 2,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-04-26\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-04-26\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 4,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 2,\n            \"remainingQuantity\": 2,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00001\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-05-27T08:18:25.977Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"095d3ab0-011c-ef11-9f88-000d3adc8222\",\n            \"systemModifiedAt\": \"2024-05-27T08:18:25.977Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDA1NTk1NDMxODU3MjMxODcxOzAwOyc=\\\"\",\n            \"entryNo\": 81,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 25,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2024-04-26\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"108033\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"TEST1123\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-04-26\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-04-26\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 25,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00001\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-05-27T08:18:26.207Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"1f5d3ab0-011c-ef11-9f88-000d3adc8222\",\n            \"systemModifiedAt\": \"2024-05-27T08:18:26.207Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDMxNTA1ODMwODk2NTYyNTkxOzAwOyc=\\\"\",\n            \"entryNo\": 82,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 10,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-31\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107013\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"DAD\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 10,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-07-16T11:56:42.4Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"ff1ac376-6a43-ef11-a316-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-07-16T11:56:42.4Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTg1ODM5NDIxOTA1ODMzNDUxOzAwOyc=\\\"\",\n            \"entryNo\": 83,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 250,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-05-31\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107013\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"DAD\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-05-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 250,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-07-16T11:56:43.85Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"0c1bc376-6a43-ef11-a316-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-07-16T11:56:43.85Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDk4ODY5NzA1NjM0NjI3MzExOzAwOyc=\\\"\",\n            \"entryNo\": 84,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 10,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN DE MOLDE\",\n            \"dimensionSetID\": 71,\n            \"documentDate\": \"2022-10-02\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"108034\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"2\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN DE MOLDE\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"V0000005\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-10-02\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 10,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"1005\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-12T08:35:22.583Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"c53ff8cf-8558-ef11-bfe4-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-12T08:35:22.583Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"PAQ.\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTkzNTUyNjMxNDg0NTQ0NDIxOzAwOyc=\\\"\",\n            \"entryNo\": 85,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 15,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 71,\n            \"documentDate\": \"2022-10-02\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"108034\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"2\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 1,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-10-02\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 15,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"1005\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00020\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-12T08:35:22.877Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"d13ff8cf-8558-ef11-bfe4-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-12T08:35:22.877Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ1MzYyODUxMjQ1MjQ1NzQwMTswMDsn\\\"\",\n            \"entryNo\": 86,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 230,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"aceite oliva\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-10-02\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108035\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ER34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-10-02\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-10-02\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 230,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-12T12:05:52.15Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"6558f736-a358-ef11-bfe4-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-12T12:05:52.15Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"OLIVA\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTU5MTkyNTcyNzU1MjY3MTQxOzAwOyc=\\\"\",\n            \"entryNo\": 87,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 170,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107012\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 20,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 170,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 20,\n            \"remainingQuantity\": 20,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:24:42.613Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"a26bb935-985b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:24:42.613Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYwMTExNjk4NTU0OTMxODA0MTswMDsn\\\"\",\n            \"entryNo\": 88,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 42.5,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 26,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107012\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"104\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 42.5,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 5,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:24:49.677Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"4115bd3b-985b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:24:49.677Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTIyMzg1NzczMjc2ODI2NjcxOzAwOyc=\\\"\",\n            \"entryNo\": 89,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 12,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 26,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107012\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"104\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": 30,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 12,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 30,\n            \"remainingQuantity\": 30,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:24:50.337Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"4b15bd3b-985b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:24:50.337Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjc3NDg2ODA0MjY5OTQxNzMxOzAwOyc=\\\"\",\n            \"entryNo\": 90,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 1500,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"CARNE HAMBURGUESA POLLO\",\n            \"dimensionSetID\": 26,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 40000,\n            \"documentNo\": \"107012\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"104\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"\",\n            \"itemDescription\": \"CARNE HAMBURGUESA POLLO\",\n            \"itemLedgerEntryQuantity\": 30,\n            \"itemNo\": \"C0000009\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 1500,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 30,\n            \"remainingQuantity\": 30,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:24:50.557Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5615bd3b-985b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:24:50.557Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjQxMzA5MjcyMDg5NDk0NjUxOzAwOyc=\\\"\",\n            \"entryNo\": 91,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 60,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"FANTA LIMON\",\n            \"dimensionSetID\": 26,\n            \"documentDate\": \"2022-08-16\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"107012\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB34\",\n            \"globalDimension1Code\": \"104\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10402\",\n            \"itemDescription\": \"FANTA LIMON\",\n            \"itemLedgerEntryQuantity\": 60,\n            \"itemNo\": \"V0000003\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-16\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 60,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 60,\n            \"remainingQuantity\": 60,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:24:50.647Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"6015bd3b-985b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:24:50.647Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAzNzk2NTYyMzczMDcyMzg3MTswMDsn\\\"\",\n            \"entryNo\": 92,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 1.4,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-25\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107015\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"12545\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 1,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-08-25\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 1.4,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 1,\n            \"remainingQuantity\": 1,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:35:42.113Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"09f8dabf-995b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:35:42.113Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc2NjQ5MDM2ODU1MzYyODU4MTswMDsn\\\"\",\n            \"entryNo\": 93,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": -1000,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2023-08-25\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107015\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"12545\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": -2,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-08-25\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": -1000,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -2,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -2,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:35:42.867Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"17f8dabf-995b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:41:18.31Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"UD\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA1NjM1MTE3NjU3MzU5MzY1MTswMDsn\\\"\",\n            \"entryNo\": 94,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 50,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-10-02\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"107016\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"REVERT_12545\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": 12,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-10-02\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 50,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 12,\n            \"quantity\": 12,\n            \"remainingQuantity\": 11,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-16T06:41:18.387Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5c7ba488-9a5b-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-16T06:41:18.613Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"PAQ.\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzU5NjY5MjgxNDEyNDQzNDI4MTswMDsn\\\"\",\n            \"entryNo\": 95,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 14,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 22,\n            \"documentDate\": \"2023-04-05\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"104002\",\n            \"documentType\": \"Sales_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"31\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2023-04-05\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-AB+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2023-04-05\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": -45,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CONTADO\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2024-08-20T10:33:37.93Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"d07851a5-df5e-ef11-bfe4-7c1e5234177a\",\n            \"systemModifiedAt\": \"2024-08-20T10:33:37.93Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAyNDcwNDQ1NzA5NTE4MjA4MTswMDsn\\\"\",\n            \"entryNo\": 96,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 3,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-30\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107018\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"1234T\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 45,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-30\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 3,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 45,\n            \"remainingQuantity\": 45,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T08:39:40.327Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"30750136-e265-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T08:39:40.327Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI4NTE4NTkzMzEwMzA1ODEwMTswMDsn\\\"\",\n            \"entryNo\": 97,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 4,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-30\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107019\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"3456Y\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 60,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 60,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-09-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-30\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 4,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 60,\n            \"remainingQuantity\": 60,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T08:43:45.887Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"e786fdcc-e265-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T08:56:46.31Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDY5NjkwNTA0OTI3Mzk4OTYyMTswMDsn\\\"\",\n            \"entryNo\": 98,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 5.6,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-31\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107020\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"3456Y-2\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 4,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 4,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-09-01\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 5.6,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 4,\n            \"remainingQuantity\": 4,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T08:46:39.08Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"db4f3434-e365-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T08:56:46.85Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDM2NjQ4MjYzODI1NDk3OTcxOzAwOyc=\\\"\",\n            \"entryNo\": 99,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107021\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"66656Y\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 75,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 75,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 75,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:03:58.15Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"9538779f-e565-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:05:17.123Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxODEyNzQ4MzUxMjA2NzMwODE7MDA7Jw==\\\"\",\n            \"entryNo\": 100,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 99,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": true,\n            \"costAmountActual\": -5,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"107021\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"66656Y\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -75,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -75,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": -75,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -75,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:05:16.687Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"379d71cc-e565-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:05:17.167Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjY3MjM4MjMzOTQ0MDg0MTcxOzAwOyc=\\\"\",\n            \"entryNo\": 101,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 8,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107022\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"87878G\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 120,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 120,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 8,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 120,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:08:33.033Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"8a4a9140-e665-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:14:53.933Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjczMTk1MzM3MzQzMjM4MDQwMTswMDsn\\\"\",\n            \"entryNo\": 102,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -1.05,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107023\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"878787T\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -15,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -15,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -1,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": -15,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -15,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:09:37.153Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"88a87c67-e665-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:11:22.887Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjkwMDgyMTk2MzUyMjYyMTQ3MTswMDsn\\\"\",\n            \"entryNo\": 103,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 101,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -8.4,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"109009\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"89798989\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -120,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -120,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": -8,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": -120,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -120,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:14:53.977Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"d384be20-e765-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:14:53.977Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDQ1ODQ0Njc2MDA5NjQ4MDExOzAwOyc=\\\"\",\n            \"entryNo\": 104,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 1,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2024-08-29\",\n            \"documentLineNo\": 50000,\n            \"documentNo\": \"109009\",\n            \"documentType\": \"Purchase_x0020_Credit_x0020_Memo\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"89798989\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 15,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 15,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2024-08-29\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-AB+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2024-08-29\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 1,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": 15,\n            \"remainingQuantity\": 15,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00010\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-08-29T09:14:54.127Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"dd84be20-e765-ef11-a672-7c1e5235fbc7\",\n            \"systemModifiedAt\": \"2024-08-29T09:14:54.127Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc2NTUwNjQzOTA0MDg0NzY0MTswMDsn\\\"\",\n            \"entryNo\": 105,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 0.36,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-12-31\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000012\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Positive_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 6,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": 6,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-12-31\",\n            \"locationCode\": \"ECONOMATO\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-12-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 6,\n            \"remainingQuantity\": 6,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-09-06T07:32:56.013Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"a172393b-226c-ef11-a671-0022489ca94a\",\n            \"systemModifiedAt\": \"2024-09-06T07:32:56.013Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MzU3NzMyMDA2NTM4OTEzNjE7MDA7Jw==\\\"\",\n            \"entryNo\": 106,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 70,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"Vino\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107024\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB 0123\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"VINO ROSADO\",\n            \"itemDescription\": \"Vino\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000023\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ALMACEN L1\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 70,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-20T13:19:02.827Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"81fbfae6-5277-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-20T13:23:33.097Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BT\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQxODk4MDg0ODMxMTY4MjQwMTswMDsn\\\"\",\n            \"entryNo\": 107,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 35,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"Vino\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107025\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"ALB 0124\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 5,\n            \"itemCategoryCode\": \"VINO ROSADO\",\n            \"itemDescription\": \"Vino\",\n            \"itemLedgerEntryQuantity\": 5,\n            \"itemNo\": \"C0000023\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-16\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 35,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 5,\n            \"remainingQuantity\": 2,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-20T13:21:13.477Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"a93bc934-5377-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:33:07.41Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BT\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjc5ODE4OTA3NTMwNjM2NDc1MTswMDsn\\\"\",\n            \"entryNo\": 108,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 70,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"Vino\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108043\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"FRA 0002\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 10,\n            \"itemCategoryCode\": \"VINO ROSADO\",\n            \"itemDescription\": \"Vino\",\n            \"itemLedgerEntryQuantity\": 10,\n            \"itemNo\": \"C0000023\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"ALMACEN L1\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 70,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 10,\n            \"remainingQuantity\": 10,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-25T09:16:48.337Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"cf5f38de-1e7b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:16:48.337Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BT\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc4NDI2MzM3NDUzMTU1MDQ3MTswMDsn\\\"\",\n            \"entryNo\": 109,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 4.2,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"108043\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"FRA 0002\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 3,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 3,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"ALMACEN L1\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 4.2,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 3,\n            \"remainingQuantity\": 3,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-25T09:16:48.513Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"da5f38de-1e7b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:16:48.513Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTYyNjg2MjA5MTkyNjgzNjQxOzAwOyc=\\\"\",\n            \"entryNo\": 110,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 56,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"Vino\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"108044\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"FRA 0003\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 8,\n            \"itemCategoryCode\": \"VINO ROSADO\",\n            \"itemDescription\": \"Vino\",\n            \"itemLedgerEntryQuantity\": 8,\n            \"itemNo\": \"C0000023\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 56,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 8,\n            \"remainingQuantity\": 8,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-25T09:18:10.987Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"508e0815-1f7b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:18:10.987Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BT\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODk1NDA1MzEyNTQ5NTc1NjkwMTswMDsn\\\"\",\n            \"entryNo\": 111,\n            \"appliedEntryToAdjust\": true,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": 11.2,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 20000,\n            \"documentNo\": \"108044\",\n            \"documentType\": \"Purchase_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"FRA 0003\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 8,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": 8,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 11.2,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": 8,\n            \"remainingQuantity\": 2,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"P00160\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-25T09:18:11.113Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"5b8e0815-1f7b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:33:07.037Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3Mjg5NjEzODgyNTg0NTQzMzE7MDA7Jw==\\\"\",\n            \"entryNo\": 112,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 111,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -4.2,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 23,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"AJ 001\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -3,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": -3,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -3,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-09-25T09:25:55.403Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"c2ad2227-207b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:25:55.403Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzg1NTE1NTcxMDE3NDI4ODcxOzAwOyc=\\\"\",\n            \"entryNo\": 113,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -4.2,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"ACEITE OLIVA\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2022-08-31\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000013\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -3,\n            \"itemCategoryCode\": \"10102\",\n            \"itemDescription\": \"ACEITE OLIVA\",\n            \"itemLedgerEntryQuantity\": -3,\n            \"itemNo\": \"C0000007\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-31\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -3,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-09-25T09:33:07.077Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"10f72d2b-217b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:33:07.077Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"L\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ5NzY0MzM3NDQ3MDYxODg0MTswMDsn\\\"\",\n            \"entryNo\": 114,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -21,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"Vino\",\n            \"dimensionSetID\": 28,\n            \"documentDate\": \"2022-08-31\",\n            \"documentLineNo\": 0,\n            \"documentNo\": \"DF0000013\",\n            \"documentType\": \"_x0020_\",\n            \"dropShipment\": false,\n            \"entryType\": \"Negative_x0020_Adjmt_x002E_\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"154\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": -3,\n            \"itemCategoryCode\": \"VINO ROSADO\",\n            \"itemDescription\": \"Vino\",\n            \"itemLedgerEntryQuantity\": -3,\n            \"itemNo\": \"C0000023\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-31\",\n            \"locationCode\": \"ALMACEN L2\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"DIAP-INVFI\",\n            \"nonstock\": false,\n            \"open\": false,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-31\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -3,\n            \"remainingQuantity\": 0,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -3,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"\",\n            \"sourceType\": \"_x0020_\",\n            \"systemCreatedAt\": \"2024-09-25T09:33:07.47Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"1df72d2b-217b-ef11-a671-0022489d4683\",\n            \"systemModifiedAt\": \"2024-09-25T09:33:07.47Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"BT\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ0NjM0Mzg1NTI2NjA0ODg4MTswMDsn\\\"\",\n            \"entryNo\": 115,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 4.8,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 71,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107026\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"123\",\n            \"globalDimension1Code\": \"151\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": 12,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 4.8,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 12,\n            \"quantity\": 12,\n            \"remainingQuantity\": 12,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"1005\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00003\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-27T07:38:58.577Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"cec24f8c-a37c-ef11-a671-000d3ab9e168\",\n            \"systemModifiedAt\": \"2024-09-27T07:38:58.577Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"PAQ.\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTA4MzY2NDMyNjcxOTA2ODY1MTswMDsn\\\"\",\n            \"entryNo\": 116,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 4.8,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"PAN HAMBURGUESA\",\n            \"dimensionSetID\": 25,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"107027\",\n            \"documentType\": \"Purchase_x0020_Receipt\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"123\",\n            \"globalDimension1Code\": \"153\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10601\",\n            \"itemDescription\": \"PAN HAMBURGUESA\",\n            \"itemLedgerEntryQuantity\": 12,\n            \"itemNo\": \"C0000008\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BUFFETE\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-ALB\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": true,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 4.8,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 12,\n            \"quantity\": 12,\n            \"remainingQuantity\": 12,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": 0,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00003\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-09-27T07:39:52.697Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"cd7ca6a8-a37c-ef11-a671-000d3ab9e168\",\n            \"systemModifiedAt\": \"2024-09-27T07:39:52.697Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"PAQ.\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTU0NTExNzQwMDkxMzgwMTgxOzAwOyc=\\\"\",\n            \"entryNo\": 117,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": false,\n            \"correction\": false,\n            \"costAmountActual\": 0,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": -0.9,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA\",\n            \"dimensionSetID\": 74,\n            \"documentDate\": \"2023-05-23\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"RD0000001\",\n            \"documentType\": \"Purchase_x0020_Return_x0020_Shipment\",\n            \"dropShipment\": false,\n            \"entryType\": \"Purchase\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"508\",\n            \"globalDimension2Code\": \"\",\n            \"invoicedQuantity\": 0,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -15,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"0001-01-01\",\n            \"locationCode\": \"BAR\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"C-DEV+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2023-05-23\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": -0.9,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 15,\n            \"quantity\": -15,\n            \"remainingQuantity\": -15,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 0,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -15,\n            \"shortcutDimension3Code\": \"\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"AC00002\",\n            \"sourceType\": \"Vendor\",\n            \"systemCreatedAt\": \"2024-10-23T09:40:21.667Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"d200cbd1-2291-ef11-8a6b-7c1e521fbb76\",\n            \"systemModifiedAt\": \"2024-10-23T09:40:21.667Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"CAJA\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NDA5MTcwNDEyNzIyNTcwOTcxOzAwOyc=\\\"\",\n            \"entryNo\": 118,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.12,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 87,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 10000,\n            \"documentNo\": \"103005\",\n            \"documentType\": \"Sales_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"11\",\n            \"invoicedQuantity\": -2,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -2,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -2,\n            \"remainingQuantity\": -2,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 200,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -2,\n            \"shortcutDimension3Code\": \"1005\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CL0000008\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2024-10-31T12:39:28.13Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"0b9b2d2a-8597-ef11-8a6b-7c1e521fbb76\",\n            \"systemModifiedAt\": \"2024-10-31T12:39:28.13Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzYwODI4Nzg2OTE3NDI4MTkxOzAwOyc=\\\"\",\n            \"entryNo\": 119,\n            \"appliedEntryToAdjust\": false,\n            \"appliesToEntry\": 0,\n            \"area\": \"\",\n            \"assembleToOrder\": false,\n            \"completelyInvoiced\": true,\n            \"correction\": false,\n            \"costAmountActual\": -0.12,\n            \"costAmountActualACY\": 0,\n            \"costAmountExpected\": 0,\n            \"costAmountExpectedACY\": 0,\n            \"costAmountNonInvtbl\": 0,\n            \"costAmountNonInvtblACY\": 0,\n            \"countryRegionCode\": \"ESP\",\n            \"derivedFromBlanketOrder\": false,\n            \"description\": \"HARINA DE TRIGO\",\n            \"dimensionSetID\": 87,\n            \"documentDate\": \"2022-08-14\",\n            \"documentLineNo\": 30000,\n            \"documentNo\": \"103006\",\n            \"documentType\": \"Sales_x0020_Invoice\",\n            \"dropShipment\": false,\n            \"entryType\": \"Sale\",\n            \"entryExitPoint\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"externalDocumentNo\": \"\",\n            \"globalDimension1Code\": \"101\",\n            \"globalDimension2Code\": \"11\",\n            \"invoicedQuantity\": -2,\n            \"itemCategoryCode\": \"10101\",\n            \"itemDescription\": \"HARINA DE TRIGO\",\n            \"itemLedgerEntryQuantity\": -2,\n            \"itemNo\": \"C0000006\",\n            \"itemReferenceNo\": \"\",\n            \"itemRegisterNo\": 0,\n            \"itemTracking\": \"None\",\n            \"jobNo\": \"\",\n            \"jobPurchase\": false,\n            \"jobTaskNo\": \"\",\n            \"lastInvoiceDate\": \"2022-08-14\",\n            \"locationCode\": \"BPISC\",\n            \"lotNo\": \"\",\n            \"noSeries\": \"V-FAC+\",\n            \"nonstock\": false,\n            \"open\": true,\n            \"orderLineNo\": 0,\n            \"orderNo\": \"\",\n            \"orderType\": \"_x0020_\",\n            \"originallyOrderedNo\": \"\",\n            \"originallyOrderedVarCode\": \"\",\n            \"outOfStockSubstitution\": false,\n            \"packageNo\": \"\",\n            \"positive\": false,\n            \"postingDate\": \"2022-08-14\",\n            \"prodOrderCompLineNo\": 0,\n            \"purchaseAmountActual\": 0,\n            \"purchaseAmountExpected\": 0,\n            \"purchasingCode\": \"\",\n            \"qtyPerUnitOfMeasure\": 1,\n            \"quantity\": -2,\n            \"remainingQuantity\": -2,\n            \"reservedQuantity\": 0,\n            \"returnReasonCode\": \"\",\n            \"siftBucketNo\": 0,\n            \"salesAmountActual\": 200,\n            \"salesAmountExpected\": 0,\n            \"serialNo\": \"\",\n            \"shippedQtyNotReturned\": -2,\n            \"shortcutDimension3Code\": \"1005\",\n            \"shortcutDimension4Code\": \"\",\n            \"shortcutDimension5Code\": \"\",\n            \"shortcutDimension6Code\": \"\",\n            \"shortcutDimension7Code\": \"\",\n            \"shortcutDimension8Code\": \"\",\n            \"shptMethodCode\": \"\",\n            \"sourceNo\": \"CL0000008\",\n            \"sourceType\": \"Customer\",\n            \"systemCreatedAt\": \"2024-10-31T12:41:36.317Z\",\n            \"systemCreatedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"systemId\": \"e190d076-8597-ef11-8a6b-7c1e521fbb76\",\n            \"systemModifiedAt\": \"2024-10-31T12:41:36.317Z\",\n            \"systemModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\n            \"transactionSpecification\": \"\",\n            \"transactionType\": \"\",\n            \"transportMethod\": \"\",\n            \"unitOfMeasureCode\": \"KG\",\n            \"variantCode\": \"\",\n            \"warrantyDate\": \"0001-01-01\"\n        }\n    ]\n}"}],"_postman_id":"dea3f61c-b291-4b27-aa8d-bf24631f1d45"},{"name":"physInventoryLedgerEntries","id":"7fcd8880-efc6-49d3-a20b-031f7679e03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/standard/v1.0/companies({companyId})/physInventoryLedgerEntries","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","standard","v1.0","companies({companyId})","physInventoryLedgerEntries"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"f63081b6-d9da-4038-8f21-17042ce80244","name":"200 physInventoryLedgerEntries","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/standard/v1.0/companies({companyId})/physInventoryLedgerEntries"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"8c840a38-d12f-ea92-bc5f-cd5aa7528bef"},{"key":"mise-correlation-id","value":"9461884d-7668-4e85-a9ac-a788ba46d3b0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"OData-Version","value":"4.0"},{"key":"Request-Id","value":"a97db896-28d3-457c-95ff-1abaea9d4daf"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Mar 2026 11:58:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/standard/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/physInventoryLedgerEntries\",\n    \"value\": []\n}"}],"_postman_id":"7fcd8880-efc6-49d3-a20b-031f7679e03d"}],"id":"e2b2a612-5cbd-4cbf-a0bd-1428b0365311","description":"<p>The endpoints in this group returns the same values as the microsoft standard endpoints, with this group the OnPremise environments doesnt need extra steps to be able to use them and the integrations with SaaS and OnPremise at the same time will be easier.</p>\n","_postman_id":"e2b2a612-5cbd-4cbf-a0bd-1428b0365311","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Online","item":[{"name":"AdditServWebReceived","id":"8a6e9302-2489-43bd-a9ae-0ce5c68757a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/receivedWebServices","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","receivedWebServices"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"b8eca989-de9e-412d-8ba2-ce1fd8502483","name":"AdditServWebReceived 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/receivedWebServices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"712e0755-3a39-86ea-338f-801b5d9bb637"},{"key":"mise-correlation-id","value":"0e203d7a-82fd-4486-aeff-d2b346219ad7"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f5033214-7648-42cb-907a-0e164156bb22"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 21 Jan 2026 07:24:54 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/receivedWebServices\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTEwNjE0OTMwMDI5ODYzNjI5MTswMDsn\\\"\",\n            \"systemId\": \"4be2a7eb-d183-ee11-817a-6045bd969a75\",\n            \"bookingEntryNo\": 2,\n            \"entryNo\": 1000,\n            \"totalAmount\": 6,\n            \"entryDate\": \"2023-08-31\",\n            \"onlineBookingNo\": 81,\n            \"serviceNo\": \"A\",\n            \"unitPrice\": 3,\n            \"units\": 2,\n            \"systemCreatedAt\": \"2023-11-15T16:13:39.657Z\",\n            \"lastModifiedDateTime\": \"2023-11-15T16:13:39.657Z\"\n        }\n    ]\n}"}],"_postman_id":"8a6e9302-2489-43bd-a9ae-0ce5c68757a5"},{"name":"AllotmentByRoomType","id":"deae1dfa-1a1d-40b7-be12-4df34bb17528","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/allotmentByRoomTypes","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","allotmentByRoomTypes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"304282ee-4fd1-4283-ab91-7654fc2ca79b","name":"AllotmentByRoomType 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/allotmentByRoomTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"3a2c7aec-fba0-d3ae-9fd7-126fae840dbc"},{"key":"mise-correlation-id","value":"ba246bb3-043c-4e05-8423-dd5ad185c97a"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"1aa46682-6893-4183-ae40-ebfc597a9435"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:10:05 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/allotmentByRoomTypes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg4MjI0Njc4Nzk0OTE0NDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dbcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU5MjE4ODU1NzEyNDI5NDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NDQ5MTgxOTU1NDgxNzQzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"931eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDU4OTQ5NzA2MTE2OTY4MDE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"886ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzQxMTc4MTExNjU2MDI2MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e3cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NDIxMTM0NDc2Njg3OTg1ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"decde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4ODMzNTYwOTE5OTUwNTYzNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bcbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1OTI1ODY0NzcyNjMzOTYzNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"961eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY2NDc3NjUxNzk1MDM2NDU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8b6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA0OTM5MzI1NzQ5MTk1MDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e6cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjAwNTc1NzE1NDcxNTE3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e1cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTYyMDkyMjUwOTM4Mjk2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bfbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5MzI3Njk2MTUyNjEyMDQ2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"991eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzU2NDE1ODE0OTQxNzA5MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8e6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc5NjQ2MTY2NDYxMDEzNzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e9cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzE4NTY2Mzc5NzMxMDA1OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"710dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA0MzM4NzMxNDE5MzY1MDY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c2bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ0NTgyODM1OTEyMTE5NTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9c1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTIwNDIyMDg1MjQ2NzUwMTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"916ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTM5OTExMzQ4ODE1NjU0NTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eccbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjM2NzQ0MTk0NDQwNDk0MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"740dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU5MTY1ODkxNTc1MzM5NzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c5bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDc4ODIzNzg5NzQ4ODQ2NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9f1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTQzMDEzODc5Njg4NzI4MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"946ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjcwNDE4ODI5NzQxMDQ0MDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"efcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk4MjMxMjg2NzYzMzg1NDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"770dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQyNTQ3MDU5MzAyNzMzMzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c8bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM0NjA0MTY5NDM5ODQxOTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a21eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA5ODc0ODgwMTg3Nzg1MDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"976ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ4ODQyNjg0NjM3MDY5MzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f2cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyODgxOTQ2ODQyNjQ4NTgwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzgzMTk2NjAyMzkwMjAyOTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cbbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE1NjUwMzcxODY3NzMyNjYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a51eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzA1MDMwOTUzNzY2MzExMTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9a6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkzMzk4MTkyNDIzOTM3MTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f5cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTcyNTc5NjAwNzQzNjg0NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzg3NDkwNjQ1MjY0ODI1NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cebce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM4MzgyODY2MTMyNDYxNjgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a81eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE3MDY2OTUxMzUzNTEzNzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9d6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODg5MTMzODc3MDYyMTQzNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f8cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5OTQ4MTE3MTY0MTQ2MDU0MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"800dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTcxMjU4NjgxNTk4MDcwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d1bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjMwMzAwMzE2MTQ0NDQ0MjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ab1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDI1MjExMDk2NDc0MDkxMjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a06ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA4ODU5MTQ2MTQyNDc1NjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fbcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM3MzY2OTkxOTIxOTIyNTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"830dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODM2NzczNjAzNjQxMTYzODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d4bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE2NTMwNTY4MTgwNjkxMzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ae1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI3MTM5MTg3MjQxMTM4MDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a36ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTczMDMzMTUyNjU4OTA5NjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDczMDM3NDYzNDQxNDk5NDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"860dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUzNzQyMTYyMzcwMjI2NjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d7bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg1MDgzMjc1OTkwNTg0NjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b11eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzODE0MzE0Njk3MDg3MTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a66ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NjA0ODkwMzkyNzcyNzcxODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"01ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ2NDg0NTAwNjY3ODY1OTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"890dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE5NDMyOTgyMTI3NjQ0NTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dabce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1MzcyNjI4MDYxODkyNjk0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b41eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTcwODAwOTk1MDk5MDk1Mjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a96ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA4NjY2NzI3MTE2MjIzMDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"04ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjk3MTU2OTc4MjUyNjU2NDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTEwMjgwNDQyMDE2MTc2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ddbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTUzNzkzNjk1NjA0MDYyMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b71eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE0MTM0NzM1NzExMDM1NzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ac6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQwNTYzMDA5MDQ0MDQ1MDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"07ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI4NDEzODAxNTM5NDkyMzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjY2OTQzNjc0MjAxMTQ2NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e0bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MTAyODY2ODAxMzExMTM2NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ba1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE2MTU2NjA1OTEzNTg5OTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"af6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTAxMzAwNjA2OTYxMzc4NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0accca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDk4MzYyNzAyMDYwNjgyNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"920dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc3MzYxMTk1MDkwMzAxMzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e3bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzY0Njc3NDkxMDMzOTIyMTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bd1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTIzNDMxMzQ0MDYxNDM1MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b26ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyMzgwNDU5NjY1MTk3MDYyMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0dccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxOTgxMzIxMjY0ODg0NzY0NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"950dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzIzOTM5MzMzODY2MDc5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e6bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDgzODk0NjI5MDU1NzM1NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c01eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE4NDUyODA2NjE5MTQzMTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b56ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI2Nzc3NDMxOTczMTg2OTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"10ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTE5MDUxMzE3MTQwODkzNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"980dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzAyNDk1NjM3MDE2NzM2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e9bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTUxNTI0ODYyNjg2MzM2NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c31eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM3NjkzMjEyODkyMjc3MTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b86ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM5MTAzNDUzMjI0MDI5Njc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"13ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzI1OTc4MjY4MjcyNzQwOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEzMjQ2NjczMDI4NTU3MzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ecbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODc5MzE5MjYxMDE2ODgzNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c61eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDc2MDkzNzE1OTE2NzcyOTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bb6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjM4OTg4NjA2NDI0NDA4NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"16ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcxODAzNTc0MzQ2OTc0ODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQxMzA3NDMwMzk1NjUxODczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"efbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ4MDI3MTc3ODEzMjgwODA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c91eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI5MzUzNDc4MjMwMDgwNDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"be6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDI1MzI0NjUyODg4MDQ3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"19ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDEyMzQ0MTAyNzI1NzUwNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a10dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI0Njc5NDA1NTYyMzgyOTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f2bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTA2OTE2OTkwMDkwMjg0MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cc1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk2OTM2MjU3NjEwNzAxMTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c16ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4MTc4MzQ4NjkzNjY4MzM4MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1cccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzg4NTY4MTM3MDU2OTM2MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a40dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTc1NDc2NTQ2NDk1MTYyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f5bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzkyNTQ2MDg2OTkxNTQ4MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzY0MzIwNzc3ODIzNDY0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c46ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDMwMzU3OTU3MTA5ODcxNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1fccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODAwMzIzNzE1MTU1NTIyNzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a70dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA2MjU2MTY1OTc3MDY4MDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f8bce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5ODk0MzMzNTA5MjM0NDE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d21eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE3NzY4MjA2NTA5MDI2NzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c76ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjc2MDAxMjUxODQ4MDc5NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"22ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjA2MTQ0MzM3MzUxMDAzMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ0OTQzMTY0OTA2MzIzMjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fbbce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTE5OTgxNTMwMjU3MzQwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d51eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTg0OTU0MzE0ODEzMTM1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ca6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5Mjg1ODUxODMwNjgwMDMzODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"25ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTE4NzE2MDIzOTA0ODY2NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgzMDQyOTc1MjQ5Mjk4NzgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"febce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzM0OTQxOTUxNDA0NzMyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d81eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTA1Nzg0MTA5NTMxMjU2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cd6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDQ4NjkzNzc0NTMzMDA5ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"28ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTA4MTI2NTIzOTM5OTI0NDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b00dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUwNDQ1NDk4OTc1MTUxNzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"01bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTY2MTU2MTQxMTkzMzEwNTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzU1MDY1MjY3NjY3NjMwMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d06ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcxMTk3ODY1NjIzOTkwMDY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2bccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjE1MTE0MTIwODE1MDYxNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b30dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE1MDcxMjg5MTY4NzEyNDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"04bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkwOTI1OTcwMTczMDE0NTU3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4NjIyNDk3MDQ1MTg2NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d36ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjgxOTg3MDI3Njc4OTI4MTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2eccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNDExODQ1ODEyNjAzMjQxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b60dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA3NzQ0OTM2ODY2ODQ2NzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"07bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ5Mzc3MzgwNTc4MjQyMDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e11eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDc3OTQxNDA1NzUzODg2MzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d66ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk2MjAyMzY1MTEyNzYzMTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"31ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTcwNjUyMjY0NzQ4NjQzOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b90dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM4NTg0MDk5NjY1NDcwOTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0abde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTYxNDQ0NDMwNjU1MzI2NTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e41eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzY3MTkxOTIxNTU1MzkxNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d96ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYxOTE3Njg0ODY1Mzg1Nzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"34ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjEyNzU2MTAwMTkyMDgwMjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Njc5NDE5MTk1NTYxMTY4MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0dbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEzMzg2MjIzMDEwNTg3ODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e71eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk1NzE1NjEwMTk5MjY5OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dc6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTI4NDg2NDc2NDA4MzgwODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"37ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTk4Mzg5Njg4OTcxMjkwMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY3MDk3ODIwNTY0MDU0MDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"10bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDA0OTQ2MTA1MjA3NDIxMDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzExNTE5MjkxNDgzMDQ4ODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"df6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTAwMjMwODc5Mjk3MDExMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3accca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU3NjU3NjExNTQ5MDcyOTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c20dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTkzODgyMTE4MzEzMTMzNDcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"13bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MjM5MTc4MTQ5ODc5MjAzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQ3OTgxOTcwNjY2MjYzNDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e26ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDQzMjczNTMyOTgzMzI3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-01-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3dccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MTg5NjI4MjI4NTQ3MDM4NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c50dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDczMDE3ODg0Nzc5MDI1OTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"16bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY2NDQwODA1NTgxMDQ2ODEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f01eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzE5Mjk1MzY2NTYxMzY2MzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e56ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU2MTU0NTQ5NzIxNDk1NjQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"40ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjM5MzEwNjAwNTk2MzYzNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c80dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MTQ0NDAyNTk5ODQwNTY4NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"19bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MjY3NDA4MzE1NTY4NzM4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f31eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk1Mjg5NDA2MzI2MDUwMjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e86ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYwNDgxMDA2NDQxODg4NjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"43ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDk1NTk4NjkyNDM5ODEzOTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI3ODAwODQ0NjI1MTY2MzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1cbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjU2NDkxMjkyNjg1MzMzNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f61eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk1NTU3Mjg5MjkxMDI1NjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eb6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0OTgzNDcyNDMyNzk5MjM1NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"46ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjAzMzQ5Njk2NzQ1MjcxOTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDU4NjU5NjQ0NDgzOTA1NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1fbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzU3OTc3MzIyMjY0MTc3ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f91eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjgyNjE2NTg5MjYxNzUwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ee6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY1NzM2Njc4NjM4NTc2NTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"49ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjc2ODg4OTE4OTc5ODMzMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d10dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQxNjI0MDE2NzU3NDI1MDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"22bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzExMjkwMzMzMDI2OTE0NjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTU5NjIyNjY2NTgyNTA0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f16ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzQzOTgyOTU2MjUwOTQ3NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4cccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzYxMTY0NDY3NDE1MDgyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d40dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDI5NzM0MzI2NTU2MDMwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"25bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODIxMzYyMjc5OTQ3OTAwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk5NTM0OTQ0OTQzOTI5MTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f46ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTkxODQ5NTIxNjMzNTM4OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4fccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0MzM1NjUwNzI3NDI4NTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d70dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM3MjkyNjM0MjEzMjc5Njc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"28bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk1NjIwMzk2NDYyMTU0ODAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"021fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTgyNTM2MDUyMzM3MDQ3NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f76ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY1NjU0NDM1MTc3NTY3MjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"52ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDQzODQ2ODkzNTg4OTA1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjUxNDU1NDgyMTg5Njc3MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2bbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzODc3ODM1ODQ4NjExOTUxNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"051fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTQxOTU3NzE5MTU0NzAyNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fa6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY4NTUzMjY2ODE1MTI1OTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"55ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTI3NzcxMzcwNDcxMzAzNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMzA4MzM1OTc4NzkyMjQwMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ebde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDI1OTIxNzAyMjY0NTA5MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"081fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTUwOTYzNjc2NTc2ODcyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fd6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjQxNTIxODMzMjUwNDg3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"58ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAzMzEwNDU0NDUwNjQ2NzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e00dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI3NjUyNDU3OTU2MDEyNzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"31bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTkzNzU5NDIxNzM3NzE5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDQwODE2NDAwOTQ5NTM3OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"006bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzM5NTI5Mzc3OTM1NTg1ODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5bccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDg5MTEwMDUyOTI0MDEzMTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e30dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQyMjkzNzQ5NDI1NjU3MTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"34bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDExNTc5MTQzMjI5NDEyNTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MzE1NTE3NDQxNTMwNjkzMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"036bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUzODkyMTQ2Njg5NzA4MDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5eccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzgwOTI1NTk1MzA3NDEyNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e60dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDczMjA2OTY2MDU0ODA3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"37bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NDA5NDE0ODU4MjIzNjQ2NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"111fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzEyNjQ0MTQ4NDQxNDc3MjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"066bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcwOTUzNjY2MzI4NzUwNTAzMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"61ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQwOTY0NjI5NTg5NDQwNzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e90dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTIwNDUyNjE2MDAzMzgyNDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3abde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgyMTk0MTAxMDgzNjY2NDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"141fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzIzMTA3NDIxNjQxOTU0OTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"096bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY2NzkzMTA2ODE1MzYxODM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"64ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ1ODk2NTMxNjQ5NTM3MjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTMyODczMzA3NDkwNjE3NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3dbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5OTExNTc2NzM2NjE0ODMyMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"171fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk3ODI2Nzk5MDExNTU2NDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0c6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIxNzQyNjAzNjU3MjM1ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"67ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Nzg0MzIyNTYxNDQzNzcyMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODM0ODAxMjc4NzAwNTk5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"40bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE2MzU0MjkwMjMyNjI2MjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MjgyODExNTExNjE5ODQxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0f6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDY5ODA4NDk5ODg5OTg3MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6accca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNTMyODgyNzUxOTI0MDI1MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f20dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjIxNzIzMzM1ODYyMTY3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"43bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:38.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:38.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk3MTMzNDU0ODEyMjU2MDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjk1ODU4ODg4MDI2NzQzMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"126bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzA4Mzg2MjA5NTEzMjgyNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6dccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgzODA4MzY1OTc2NjkyMzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f50dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjUxMzg3OTQ3MjY1NjI0NTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"46bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY5NDU4MjU3ODE0MjQxMDcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"201fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI5ODc2Mzc1MjI4NjM4Njg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"156bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzA5NzA4NjIwODY3MDg3MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"70ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMwMjM1Mzg5NzAzNDUwMjUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f80dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4Mjc1Mzg1NDAwMTM4NjgzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"49bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODg4NTUwOTM2NTc4NDUxNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"231fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM4NTQ2NTAzNzUyNjA0MTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"186bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjIwMzk5ODA5NDUyMjc0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"73ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE2ODE2MzkwNDg3NTc1MDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM0MTc1NjUzNDM4NTA3MjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4cbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk0NjE2MDMwNzg3ODA4ODk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"261fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMTM2MjI3NTI4MzE4Njk2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1b6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MzAwOTEzNTk3NzI0MzE4NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"76ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjM3MjE1MTk0MDM5ODkxNDg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe0dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MzA3OTgwMTg4MDM2MTA4MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4fbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTU5ODg1OTA5NTU1MDcwNzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"291fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjI1ODQ5OTkwMDg1Njg5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1e6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTkwNDI0NDAxNjk4Mzk2NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"79ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDI4NDkyODM4MDczMDY2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"010eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg4NDM2NDc2OTQzNjI4MTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"52bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk4NjMwMjQ1MTM0NTQ0MDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTcxMTU5MjUwMTA1NzM2NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"216bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMjgwNTUxMDAwMjc3MjUzMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7cccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ1MTE1NDgxNTgwMjE3OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"040eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTQyMzIwODI1MTQ0NzA4NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"55bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjg4NTQ5NTkyNDMzNDU2NjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjM4ODY4Njc5MDA0MjM3NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"246bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDUwNTkwNzA2NjQ5OTcxOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7fccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ1MTc0MzY0MTgzNDc2ODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"070eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc3OTYyMjYxMzM1NjE1OTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"58bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTYyNzA1Mzk1OTcxNzI2MzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"321fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTg0NTYwMjg1MjIxMzQ3MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"276bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTA2MzgzMzE5Mzc1OTU5OTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"82ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ3MjU3NTczNDIzNDU2MzIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDEzOTM2ODAwODA4NTU0NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5bbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTk2MTA3NzAyNzA0MjMzOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"351fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjE4NTQwMDgxNzcyNjEzMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2a6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE0MDcyNTk1ODE5NDQ2ODMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"85ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDU5ODg0Nzk3ODAyMTc2NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ5NzY3OTcxMzQ5MjY0NDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ebde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTA4Nzc1MjQ3MjM4MjY3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"381fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjY4NDY3Mzc2NDgwNDg4MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2d6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjc5NDQyNTM5Njg0OTM5MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"88ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkwMjY2ODQxNDYxNjE0MzQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"100eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzM1NDU5MDY5MTExOTMzODA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"61bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzYwNjk3NDk1Mzk3MTIwNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI0OTU0NzgzMTA2MDk3Njk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"306bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMDU5OTgxMDg2MjgxMzU5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8bccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjQ3Mzc2ODIwNTEyNDMxMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"130eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM1ODM0MDM4MjQ3NjAxMDYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"64bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjM0MDUyNzMwMjQwNTYxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzkzNjY4MDM5MDU1NTAxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"336bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzkxNDkzNjYzMzMyNjY0NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8eccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMzkyOTc0Njc1ODI5NDczNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"160eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIwNDA2MDcwMzI4MTcwODgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"67bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMyMjgzMjMxMTI1OTU0Mzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"411fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTEyMjg0ODA5Mjc3MTgzMjg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"366bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDI1NjQ5NTE0OTk0NjExMzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-02-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"91ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTM5ODMzNDc0OTQ0NTI4NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"190eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIyMjA3OTA3MzI3NjM4NDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6abde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2NzU2OTA0MzkzOTcyNzQwNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"441fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQyMTE4NjAzNTAxMDY0OTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"396bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxODkzMzk5MDM0MTA1MTUxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"94ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Mjc0Nzk5OTM5NTg2MzYzNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzM2NzIwMTQ2MDExODI1MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6dbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQwNTU2Nzc3MjgwNDcxOTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"471fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDE5MjYwNjA5MTQ3NDkwMTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3c6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjI0MDY1OTUxNzM4OTE1MjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"97ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjE1MDkxNzEwODI2OTMxNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzcyNTY2NjgzNjkyODA1Nzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"70bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5NjAyMjc0Mjc4MDI2ODc4MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA4MDk4MTcxMzA4NjM1Mzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3f6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkzMjcxNDkxODExMzkwODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9accca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzUyMDQ4OTMxOTU4Mjg0MjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"220eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDQwMjMzODM1MDcwOTgyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"73bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjUzMzkyNzc2MTc1NzQ2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc4NjM2NTA0MTA0NjIwNzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"426bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA1NDA1MzYzNjUyNzYzNjUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNTkzNTYxNzM0OTcyOTYxNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"250eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTk5NjYzMzQ0Nzg5MDc4MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"76bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NjEyNjcxNTEzNzUxMzg3NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"501fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzMzMjkyMTk1MjUxNjE5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"456bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTQ1NDY4MTQwMjYyMTkyMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTQ0MjI0NTU3MTMzNjE0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"280eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczODY0MjczMTE0NDAyMjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"79bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTA2MDkzNDExMjE2MDY1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"531fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI2MDc0NzAxMTkwOTE3OTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"486bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODg5NjQ0MTczOTgxNjYzMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTAwOTQzNzM4NzE3MjM1NDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzg3NTY0NDQzODIwNDMxMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7cbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzQ5NTgyMDIwNzA3ODU4MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"561fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODEyOTkzMjA5Mjc1MjY5NzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4b6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTc2NzY4NTkwNDMxNzc4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTIyMTc1OTkyODY2NjU0MDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTA3Njc3OTcyMTMxODA0MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7fbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NDE5Mzg4NzA2MjUxNjcxNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"591fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3NTQ4MTk4ODI2MTkxNzM3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4e6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzUzMTc2OTE1NzkxMDE1OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzkyOTI4MTI2ODkxODI3OTYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"310eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQyMTU3MTQxMzcyNDIxOTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTU5NTk5NTUxODQ1OTM1MjA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjQ2MDg3MTQ4ODQyNzkzNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"516bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjExMjc0ODYzNjY3ODA0ODQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"acccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc5MTQ2NDA1OTI3MzA1Mzk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"340eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM0MTYyNTM3NzUxNzY1MzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"85bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzczODI2NDcxODU1NzE3NDA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTk5MjA3MjY3MDI5NDg4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"546bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDM5MDQyNDAwNDIzOTQ2MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"afccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ0ODAyODAxNjA2NzA4MjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"370eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTc5NjY4NzAzMTg0NzE0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"88bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwOTM1ODM0NzM5OTQ2Nzg3MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"621fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY0MTE2NDQzOTc4OTk5MTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"576bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTY4ODQ5MzM0OTY3MzUwNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b2ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg3MDY0ODM4MTU3OTAxNzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjA4NTkyMjU4NDE5MDE0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8bbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzM2MTg5MDI3OTMzNDQ5NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"651fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MTQ5NDc3MTczNzk1NzE5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5a6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjcwNTMwNjUxMjY4MzA2NDUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b5ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjczNzM1NDUyNjk1NzA5MDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ4MTEzOTU4OTc2NzM3NDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ebde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODMyMjkyNTM0OTQ2NTg0NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"681fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTg1MDk1MzU3ODE2MzYzNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5d6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDAxMjkyODEzODIxOTQwODA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b8ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTY1NDYzNDI3MzMyNzgwNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"400eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjU0ODg3ODA3NjgyMzgzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"91bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA1OTc1MTU0NzYyOTYxNDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Nzg1Njg0MTAwNDcwMTEzODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"606bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDIwNTg4MTYzNDc5MjE0NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bbccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIwNTkyNDcyNDc4MjQxNzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"430eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzE2NjYyMDIyNjkxMTE0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"94bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzk0NTEzNTI2MzA0NjUxMTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA0MTI5NjQ4MDg1MzY5NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"636bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNDAxOTQ2NzkwNDA3OTYxODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"beccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA5MzA5MzkxMjgzNzM3Njc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"460eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3ODgwMDE1MjA3OTEyODkxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"97bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTc2OTI4NjI3MjE4NzY2NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"711fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTIxOTIzODgzNjk5MTI3MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"666bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTk1NTM3MzkzNDYzNzU3NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c1ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTIyNDI2MjkyMjcwNzUwMDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"490eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjI3MzEwODMxMzAyOTEzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9abde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDI1MDA5NTQzNTA4NjM5MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"741fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg0ODI0MTY5MjA4Mzg3MTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"696bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzczODM2MTQ2NTI2NTExNDc5NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c4ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Mzk3OTMwNTc5MjkzMDgyMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDk3NjU0MzI0ODEyMTAzODQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9dbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY3NzY5MzAwMTUwMDA2MjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"771fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIxNTcwMTAxMjA5MTU0MjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6c6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjUzNTk3MzM3OTQyNjQ3ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c7ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzM0NDc3MzY2MjIyMzg1NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjcxMjA4MTU0OTM2Mjc0ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a0bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzI4MTI2NDYzMzg3NjU4MjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzYwMzEwMDA0MTYzMjAxOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"706bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzAwMTU2NTc2MzI0NTQwMzA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"caccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjI0Mjc4MTA1ODEzNzQ1MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"520eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM0NTQzMjI4NDczNzA5NTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a3bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTkwNDQ5NzcxODc3MDQxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjUxNDE5ODEwNDcyODE4MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"736bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMzNzYzMDk0OTUxNDk2MTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cdccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODYyMDM4NzgzNDE3MTQzMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"550eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzMxODQ3MzE3NTE0Njg4NTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a6bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzMxMjE5MTIzMDEwMjUxMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"801fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NzQ4NzM0ODU5MDg1Njg1OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"766bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI3Mzg1NTExMjc1ODAwNTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d0ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTUyMzU0MTY0MjQ4MjQ2MDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"580eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDIxMzU0MzExNTYyNjU4MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a9bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg0MDQ0ODcxNTY1MDc5MjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"831fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MjQ4NTI0MDg1MjE5OTE1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"796bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODkwMDIyMDQzMzYwNTczMzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d3ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODMyMDA3NzMzNzk1NjYyNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTY5NTc4OTYyMjU0NzI3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"acbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NDcwNjYzNTE5MTIxNzgzNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"861fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDE4MjA4MjkzNTk4NzQ3NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7c6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg5MDEyOTU2NjA5NDgyNTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d6ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjA4OTMwODg3NzQzMjU4MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODU5OTM0MjgwMzE4MzkzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"afbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI3NzM0NzY3NTg5NjA3MDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"891fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDEyODgwMzIwNjk3OTEzMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7f6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Nzk1NTc2NDk3NzU4MTMyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d9ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTcyMjM5ODIxNTA0Mjc2NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"620eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzczOTgzNzUxNDEwODY1NzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b2bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Njg3NDIxNDcxMjY5OTM0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY1NzYzNjIwMzQ3NjIxODk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"826bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzc3ODUxNjc4MjQwMTQ0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dcccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mzc1NTI1MTY4NTQzMDQzMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"650eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjMzMTU5MDE2NDcyMjAzNjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b5bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzE4NzUzNTczNDkwOTMyOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2ODAyMDE2MDUxNjUzNjIyNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"856bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MjkwNDM2MjEwNzg3ODkzOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dfccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODk1NDY4MjY1MzMxNTgzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"680eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzI0NzY0NzE1MDA5NjQ3MDYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b8bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMTAxNzY1ODE1ODg1NzU2MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"921fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk4ODE3MDk5MDcwODQ3OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"886bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1MDA5MDY2ODMyMjcxOTc4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e2ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTcxMTQ1ODQ4ODYxNTU2MzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTEzNDE3OTcxNjU5MDkyNTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bbbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM2MTk3ODEyNDAwMDgwNzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"951fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgyMjU1NjU2NzEwMjE2MTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8b6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjY2Mzg4ODU0NDQ5Mjc5NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e5ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzI2Mjg5ODE4NDQ3MzIzOTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxNTY0NjA2MDE4Njk0NTQ1MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bebde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwODk4MTM5ODIzMzIwNDY1MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"981fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY1MzA2NjU4MzkyNjM3ODIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8e6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcyMzM5OTY5OTI4OTY3NDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e8ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTM3NzE0NjU0MzIwMzAzNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"710eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDAzOTIxNzg5Nzk4ODE2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c1bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQyMDkxNzkyMzg0ODUwNTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg0MzI5NzA3MjU2MzAyMjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"916bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTYwMTMzNjY5MDM0OTE3ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ebccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM2NzYwNTY5OTE4MjU2Mzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"740eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTgxNTE3OTkyNTczNzg5MjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c4bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjQ4OTUwNzM0MDUyMjUwODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAzNTMwNDU0MDY5MzI0NDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"946bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMTcxMzYzMjM2NjAxMDQ3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-03-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eeccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDY4MDExMTMwMjYzMzIyNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"770eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTYxMzc5NTE1Nzg2MDk3MjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c7bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg1MzIzMDU4MDQxMDA5NDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a11fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc1MDEyMDQwMDIxMzc5MjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"976bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTAzOTc5Mzc5MjEyMDA2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f1ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjU4OTM1ODAzNjAwMDM3ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDAwNTk1OTk3OTU4NDg1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cabde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQxNTI4NzQ0Mjg0MjQwNDgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a41fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzU4NDg1MzM0Njc4ODEzMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9a6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzg2NjYyMDg0Mjg2OTIzNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f4ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTE0ODk2NzcyMjU0MTY0NjM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc2NDM3NDExNTc3OTg1MzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODY4MTA4NDEwNjg3Nzg4OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a71fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTkyNjcwODc5NDU4NTQzNTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9d6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA2MzM1MzgxNDM1NjA1MjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f7ccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjk3MzgxOTk2MTUwNzAxNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"800eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTE5NzM5MzQ1NzAwMzgzNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTgwMDI0MDQwMTQ0MTQwODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxNTgwNjE0NDAwMjczOTUwOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a06bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjAxOTg3NDU5MzY3MDU3MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"faccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjY2ODIyOTQyMjMyNjUyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"830eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ5MDQ3OTU0MTk1MTgzNDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODg5NjM0OTMzNTQyMzUwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5NjQ5Nzc3OTkxNTI0Nzk2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a36bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzODQxOTE2MjQxNDA3MjA0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fdccca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzA2NDM5NDE3ODY0NzU0NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"860eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI3MDg3MzEyODU4Mjg2MjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjE4ODc2MjM0MDg0ODQ5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b01fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE5MjU0NDIwOTgzMjYyMzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a66bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg2NDYwMDU4NDc2MDMyNDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"00cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQ3MDQ2NDAxMDkzMTgzODkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"890eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzYwNDcxNjQ1NjA1MjAxNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Nzc2NjI0MTMyNTUwNzczNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b31fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjEzMTI5ODk3Mzk0ODMwNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a96bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg1NTg4NjExMjUxNzM2OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"03cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTA3MTUyOTQyMDEwMjYwNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzcyMjM0OTUxMDU1MDc3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dcbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTA1MTcwNDQzNzA4ODcwODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b61fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkxNjEwNDY1MDg2OTQwNjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ac6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk1MDI5NTkxNzkwMzA2NDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"06cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTYxMjczNDIxMzIwMDQxOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzUzOTA3NjExMDcwNzI4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjA4OTgzMzYzMjM3NzY0MjI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b91fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMTM0MDE4NTM1MTQ0NDQ1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"af6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzI4MDc5MTU1NjA3MTE5MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"09cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3Njc5OTk5ODM2MDE5OTQwMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"920eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5NjYzMTQ2MTEwNzc3NTgwMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkzODI3NzQzOTI2OTEzNzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTg4MTMzMzMxMDU4ODE1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b26bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTQxNTkxOTQ3NTU0ODIwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc4Mjg0MTI4MjE3MjkxNDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"950eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ0MDM0MzQ1MzAwMjUxODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDc1NTUxODg4NzgwMDk4NDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkzNDI0OTQwNDIyNTU4OTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b56bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjI2MzQwODQ5Njk2ODExNTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0fcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQxODAyODY5NjY4MDMzOTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"980eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg0NjE3NzQ0MjIwMTAxNzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NTczNzkxMDk0Njk0MDgzMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c21fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk3Njg5MjgxOTY1NDE2NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b86bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM2Nzc0MzgwMTgzMjMyMjk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"12cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM3OTUyMjY3OTkwNzA2Mzk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc2Nzc5MzU4NDE5OTE2Nzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg2NzYzMzYzODQ0MzEwMTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c51fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTYwOTgxNTcxNzMyNDMzNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bb6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODczNTYxNDAzMzI5Nzc0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"15cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTgwNDYxMTI4MjM1MTYzNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE5NTc5NjM0NjQwNDE3ODIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eebde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTIzOTIwODIzMDMwMDM2MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c81fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTE1NzczMDYyNTcyMzc3NDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"be6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk5MTY4NDcwMjU2MzA3Mzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"18cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODYzMzc3MjU0NjQ4NTE2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a10eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDA4MjY4OTkzMDM5MjI3NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDA2NDE4OTk3NDg5NjEzMTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzk3MTA1NzQ3NDQzMzY2NzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c16bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzU4Mjk1MDc2MDEwNDc5OTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1bcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODAxMTc0NDcxOTAwMzIyNTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a40eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjkzMDc3MTM5MzgxMzE0MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODM5NjI5NjI5ODQ4MTgyOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjAxNTYxNjIzMjEyNjg5NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c46bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MDg0MDQ1MDU4Njk5NDIzNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ecdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzMTk4NDUwNDM5NTkyMzY5NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a70eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTgzMzI3NDcyNzcxMjEwMDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7bde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODQ2ODYxMzYyNjk1MjQzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d11fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQxOTMxMTY3MTkwMTkxNzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c76bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTE4NDQ0OTQ1OTk1OTIzMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"21cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg2MTQwNTA3Nzc0MTUxMjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NzEwNDgxNTg4MDg4Nzg2NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fabde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY2OTM3NTExOTA0MzQ0NDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d41fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDIyMjg5NjYzNDU1ODg3MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ca6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5NDk2NzY0MTE5MTMwOTgxMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"24cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ1MTkxNTMzNTk0MzY1MDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjcxNDEzNjk1MzI0OTEyNTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdbde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk2Njk3NDAwMDc3OTkwMDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d71fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIwMjM2MzgzMjE0MzM3NDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cd6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEwMTIxNjY5MzcyODM0Mjc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"27cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODYwODQyMTg4NjkzNTMzMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b00eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU0NTI3MzY0MzI5NTU1MjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIyMDgwMTk3NjE4Njk1MzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM2OTEyMTY5NTIwOTcyNjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d06bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzQ1MTQ3ODc2NDA1NDY1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2acdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDQ5MzQwODMxNzE1NzY3MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b30eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzA0OTEzOTI3NDkyNTMyODkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzQ1ODc0NTY5ODY5ODU4NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI0NzI2NjMzMzM0NjEzODcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d36bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDc4ODg4MzQ2NjU5NTM5OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2dcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDc2NzAyODc1OTYzMjMwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b60eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ1NTgzNjUxMjY3OTcyNzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTAwNjM2ODQ3NzIwOTAwNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e01fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI5MjYwNjI2MTYzNjkwMDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d66bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjQxMDEyMDYxNjU5MDM3MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"30cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTA0ODIyMzg1MDA5NDU4NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b90eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzY2NzgyNDk0MTgzOTEyNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzUwNzc3MjIzMTY5OTE1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e31fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzA1NzcxMjgwNTc5MjI5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d96bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk0ODM5MTQ1NTc2MTU0ODI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"33cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTAwOTczMTUxNzM1ODk2OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMzQ3MzY3MjQ0MDgxMDg5MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0cbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU3MTk5Njg4NDg1MjI5MTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e61fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQzOTkyNjM2Mzg1Nzc4MDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dc6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDU0NzE3NDk1NDQ0Mzc1ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"36cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA1Mjk0MTIyMDg4NDM1MTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg5NTAzNDgyODQzOTEwOTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEwOTI1NzExNjkyMzQyNzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e91fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTI5NjQ5NTU1MzkwNTE3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"df6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgyNzc0MTgwODAyMTU0ODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"39cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzMwMzI4ODUyMTAwMDU5MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c20eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzE3MTI0MDIyNTcxNDc2NjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk1ODk0NjA1NTc4OTIyOTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0ODc5MDU4NDY5NTU5Njk5MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e26bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDMwMDQyNDIxNzc2OTcyMTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAyMzIzNTIwMDI4NzY1NDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c50eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQwOTE1MDg5MDIzMDEzOTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgwODE2MjI5NjU3MzI5NjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTYxMTY3NzYwODQ1ODA0MzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e56bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDgxNjYwMDQ4NTA2ODAyNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3fcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDQyMDMxMDM5MjAyNDEzMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c80eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcwNjUwNDcyODk1ODU3MDY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzcxMjMwNjY4OTU0ODIzMzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f21fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDY4ODA0NDc2NTM1MzI5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e86bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjY4MzA4NzYzMzg4NTA4NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"42cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDAxMjY5NjUyNDIxMDU4NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk1MTUwMDc2NDAzOTI0NTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODgyMzY1NTY5NTM4ODQ3NDUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f51fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzkwMzU4MTM0NDY0NzI0OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eb6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDAxNjY0OTM3NjQwOTk0NjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"45cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQwNzIzMTcxNjY3NTgzNjM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODgxMTkwMzc3NzUzODQ2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ebee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY5NjA2MTk0Nzk2MzI2NDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f81fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDk5OTkyMTE2ODY0MDQyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ee6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2NzE5ODAyNzc2MzU3Mjk1NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-04-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"48cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDAxMTA2NTQzOTk3NDA1MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d10eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTE4MjQzNzU5ODc3MzU0NTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA2NDYyMDQ3ODAxMjA4OTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzIxOTYyNDE1MTA5MzUxNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f16bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM4ODAyMjM1MDA0MjQ3ODI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4bcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzkzNTMxMjQwOTAzMjcyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d40eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4Njg0OTY3NDk3MjAyMzU5MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTg0NTc5MzYwMTIzOTU5NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe1fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY5MDYwOTkwMTY5MDAyNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f46bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODM2Mjg3NDQyMzUxODQ0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ecdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDEwOTUyNDkyMzQ3MDk1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d70eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTY4MjEyNjQyNTA5NDYyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NzQzOTgzNjIxMDM5MTk1MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDk2MDE1MzA4MDkwNjE1MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f76bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTYyMjAwNTcyNDcxOTU1OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"51cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgxOTcxODc0OTUwODExNjQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDI4OTU1NzMwMzc4Njg2MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2abee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjEzMjY3MDI3OTI4NjM3NzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjY1ODI5NjQ0NjM3MTgwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fa6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzExNjY1MDE3ODI2NzkxNTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"54cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI4Mjk4MDI4MjYxOTYzMTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjcwNzY3NDI1MTMzNDQwNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzQxNjU3NTgzNDMzNzIyMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2MzEzNzIwMTA0NjA0MzQ4OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fd6bd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTA1MTI1NzkxOTAwMTA1MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"57cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NjUzMzQ2MDAxMzM1NzYzMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e00eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTEwMTIzMDI4MDY3NzQ5NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDk1OTI4MzI5Mjc0OTA4NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUwMzM5MjkzNTM5NjIwMTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"006cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODIyNDkwNzI1OTgxMjI3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5acdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MzkzMjI5MzUzNTY5MTE1NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e30eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTA2OTkwNzA3MTUzNTIwMTQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDc1MzM5NTI0MjkzODczMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Mzc4Mjg5MzA3NTY2ODEwMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"036cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NDc2OTg2NTE2Mjk1MTYyNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5dcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMwMzE5NzUxNjUyODM1Mjk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e60eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI0MDAxNzUzMDA0NjY4NTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjQ0MTY1NjMwMzE4MTA1NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1020da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg0MTE4MTAwOTkxNTI0OTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"066cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODU5MjkzOTM5MDQyMzM5NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"60cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTQ2NTQ2NDY5NzY5MDY2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e90eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU2MzQ4NTU2NTU0OTk2MDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjM0MTg5NjMwNTY0NjMzMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1320da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzMzOTkxMzc3MzE0ODE2NDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"096cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA1MzAyMzQ0ODkzNDAyMzIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"63cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk0OTEyMTk4NDE2MDQ4NTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDgxMjg0NjI4NzU4MDYyODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3cbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQ0NjgxNjUwOTYwMjU1NzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1620da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDI2MTc2NzU5NTk0MTA5NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0c6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTE4NjgyODk3OTczMDgyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"66cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDE4MDcyMjExNTQ1NjY0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ5MzI0NzAzMDU5NzE3NjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODExOTQ1NjAxODc5MjQ3MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1920da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI2MzgwMDg1MDk2MTcxNjU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0f6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODk1ODA2NzAxMTk3MTY3MDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"69cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjIwMDIxMjE0MTc3NTM4NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f20eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzg4NTU2MDQyMjQ0OTI1MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODY4ODUxMjA0MTQzMTkzNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzY4MjY3NjcyNDI5MTUyOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"126cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYwNjQ5MDM5MzA1NzY2OTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6ccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ1OTQ3NjQ0NzAzNjI2ODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f50eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMzMjUzMzkwODgxNTI3NDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjIxMzU0MTk0ODM3NzU2NjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTk1MjM3OTIyMDYwNDYyMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"156cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTMxOTQ1NzI3NzQwNTc3MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6fcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc4NzAxNzUxODcxNTc4NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f80eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzk4MzkzOTM1OTY0MDg1NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODI4NzkwODQyOTIxMTI4MjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2220da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODYwODE0MDEyMzI0ODI0ODk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"186cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3Njc5MTkzODEyODcxMTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"72cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3ODcyNjMxNTYwODMwOTQyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzMwMDMxMjQ5MjI1OTc1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU2ODM3NDA0ODAzMDMxNzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2520da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Nzc1MzQ0MTAyNDIxNDcxODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1b6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Mzk5NjY2NTgyMzI0Mzk0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"75cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTczNTAwMTMwNDU0NjM3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe0eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMjUxNDk3MzM0ODk4MjE4OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ebee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDI0MDk4MDk5NDg4OTYzOTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2820da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgxODI0MzM2MjcwNzM0NjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1e6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTIzMzA1NTQ2MjMyOTU1MzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"78cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTExMzIwMjg2Mjk2NjUzNDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"010fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjYyMjYzNDMyMTg2MTY4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjI1OTk3ODc2NDE3MjIzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTY4NDUxMTU3ODA3NTc4MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"216cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkwNjk3OTgyOTM2Nzk5MzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7bcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjQ3MTA3NjQ5MDQ3OTQ0MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"040fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDk5MjA1ODU5MjU3OTkxODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDYxNTQyOTYxMDE2NjAzOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjY4NDA5MTA0OTA1OTMwOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"246cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUyNDgxMTI4NTM3MzUyMDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ecdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY0MjYzMzMwNDg0MjU4NjAzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"070fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODE5ODc4NTE3NTIxMjkxMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg4Nzk2NDk3Nzc2MzEwOTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjIxNjU3MjcyMTc0MTk1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"276cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzAzMjM4Mzg3MDE1MzE2MTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"81cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODEzODMyMDk4NDAwNTgxNzc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzU0Nzk3MTExMDkwNjE3MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5abee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTY1MTEzNjQ1Nzk0ODM3MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkwNDcwNTI0NTk4MTE2NDI2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2a6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDE3OTM4OTY5NDgwNTg5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"84cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTMyMjUyNDEzMzk1MTUxNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NjEzMjAzOTUyNTg0NzE0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzNTc5NjUyMzY4MzA1MzA0MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDUxMDA2MjMzOTM1NzQxMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2d6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDMzODI1NDg2MjU5MzQyMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"87cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NjI4NzY2MTI1NzM2NDAzNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"100fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNzM1Mjg5MzAxNTg1MDUzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM4MTg2NjIxMzUzNjIwNjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE4MTY3NDYyMjAzMTI2OTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"306cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MzE1NzE5NzgwNzgzMTg4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8acdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Nzc0NDI3MDI0Mzg4OTc4MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"130fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjUwNzA1MzMzMTEyNDAzMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDM0MjA0MTYxNDUzNTA4MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ3MDI0MDExNDM4ODkzODE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"336cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM2NzIyOTI1MDc5OTg5MDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8dcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNDE2NzYxNTc1ODIwODE1MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"160fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzA3NzgwOTIwNzI4MTgyMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTIwNzk5NDE4ODM1MjM0Nzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4020da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM1MTA4ODUzNzE2ODI5Nzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"366cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTU0NTk3OTM5NTI0MDI5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"90cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjAzNjgxNjY3NjUyNzgyNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"190fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc0MTU4Mjk4NTI3MDA5ODEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM1NTk4NjQ2OTYyMTg5OTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4320da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTE3MTc4MDM5MTI1MTgyMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"396cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk2MjUwMjYxNTU2NzI1OTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"93cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjAzMDI1NTE2NTkxODE5MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5MzY0MDQ1OTY2NjUxNzUzMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6cbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyMDM2MTE2Nzk1Mjk1NTgyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4620da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDcwMzQyNjI5NzExMzE2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3c6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDI0MTM2NTI0Mjk4ODE4MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"96cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU2MjUxODUyNTYzNjk1ODIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgyMjExMjgyMjk3MzU1MTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNzA5MzI2ODM2MDAyNTY3NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4920da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE0NTcwMzA5MzM4ODU3MTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3f6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTQ5NDA2MjI5NzMxMDE1NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"99cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5NzUwMTI0NDU2MzM5MDcyODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"220fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NjQ1ODQzODQzMTgzNDQxNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjcwMTk5Njk5NTA3NDM5ODEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzcwMzA3OTMwMTUyMjQwMDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"426cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODAxNTI4NjI0NTAwMTQ3ODMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjI5OTc3ODEyNjA0OTE3NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"250fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI4OTczOTc1NDA1NzYwMzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc0NTkyODExOTkzOTAwMDc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTAyNjc2MDIwMjgzNzY0OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"456cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzI5MDMxMDYwNDgyMDA0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9fcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDc5Mzg2NTg0NDU0Njk2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"280fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY4ODgxNzM1NzAzMTc1Nzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIxODM1NzUzMzUwMDM4NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5220da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzcyMjU5OTAyNTQ0OTM1NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"486cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTc2MDA5NjcxNzUwMTQ3NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a2cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ4NzM5MzgwOTI2MzQxMzE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjI3MjY5Mjc5NzgyOTk0NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjEwMDE1NzUyMTQ0MjM4NjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5520da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTMyMjc1ODIyNDU0OTU5MTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4b6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTQzMTI1NzMwNjkwMjgzNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-05-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a5cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk5NzA2Mjg1MTcxNDI4NDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Mzk1NjgzMzI2NTc4NTY5NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ebee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY0NDc2MjgxNDExNTk3MjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5820da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMjA0MzU3ODIyOTczMTc3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4e6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA4NjQxNzYyNzk2Nzc5NDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a8cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjI2ODEwNzc0NDcwMDM3OTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"310fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAyNjMyNjI5NjUwMTg5NTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkwMjY3NDIxODg2OTg0NTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY2NDczMTEyODI5MzgyNDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"516cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NDM0MzEwNTQ2ODIxNzgxNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"abcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODkwNTY3NDQ4MzkxNjI3MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"340fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2MjEyMTYzMTQwNTAyMTYyMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUzMzk5OTY0MzIxMTI2MTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTEzNTgwMzExNTAxOTI0MzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"546cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDMyNjI2MDY5MDA4OTc2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aecdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODM1NDYyMDI0ODA1MjYxMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"370fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODQ4NzAyNzgzNTMxNTkwODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYwNTA1ODM1Mzc5ODU1NDc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjQ3MzA4MTQ5MzUxNjM3NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"576cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNDMzMTgxMTM0NTYyODA1MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b1cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODk0NjUwNTY2MzIyNTEwMjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUwNDAxOTQwNjkxOTUwNDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8abee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg3NjI5NTUxNTIwNDM5OTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODU4MDkzNTk1MTQwNjA5ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5a6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzAyNzM1ODg3ODA1MjU5NjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b4cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NDMwMDgwNDcyMDc2MjA5MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODAxNDg5NTk4NzYyMzMyNjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDY2NDQ0MDY2OTAwMTIyNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Njk4OTQ0Mzk3MDU0MzI3NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5d6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE4MDE3NDE3NjA2ODQwODc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b7cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTI3MTgzOTU3NDc0MDkyMzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"400fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDU4NjU5Nzg3MTczMzgwOTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTczNjM1NTc1MjA1MjkyNzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTgyOTc5OTYzOTA0NzQyMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"606cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDk1NjIwMDAyNzgyODMxMDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bacdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY2OTcxOTU5NTA3NzU3ODg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"430fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzcyMDgwNTk3MTc4NTgyNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ4MTY3NDYzNDc2NDY3MzY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU1OTgxNjQ4MzUwOTk0MzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"636cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIxNTg2NzY5OTA4Mzc5MDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bdcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODU4NDQ2NTA5OTg3MTE0NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"460fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTUxNjcxNTc1NjY4NTcxODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjU4NzI0Mjc1Mjk1OTAyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7020da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQxNTg3NTg0NzYwMjU1ODg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"666cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDQ0MjY0NDQ1MDg3ODkxNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c0cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTkxNDkxMDEwMDgwMjIwOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"490fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjU1NjM2ODE2Mjc3ODYzNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDAzMTgzMTQxNTYzNDU3ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7320da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjYwODY4NjE2NjE4MDg2MDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"696cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyNzE0ODM2MDg1ODUzMzgxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c3cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjY2MjU2MDA3MzgwNzQ3MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODY2MDIxMzM2MzU2MjU5NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9cbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg4MDI0ODU0Nzc0MzQwMzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7620da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg3MDQzNjE4MTgxMzYyODUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6c6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODIwMzY0Njc2NTA4MDMwMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c6cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI0MTA2MjExODg2NDg4NTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTA2MzUyNTY2MjI4NjA3NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTM1NzA3Njk4NDA0ODU5NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7920da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjkyMzg1MzA2MjYxOTgxODY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6f6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzU4NTEyNzQ4OTkxNjA0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c9cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ2NjMwNDAzMjY0MzU0OTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"520fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMjcxODUzMTkwNDg2NTg4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc5NDQ3ODQxMDA1ODY4MDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTA3NjA4ODc2ODE5NTA2NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"726cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTA5NDE5OTkwMTk1MTAwNDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDc5MjQ1MjA3NDUzMTIyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"550fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NTk3MzIwODkyMzk5Mjc0NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDg0MjY3ODA3NTMwMDA5MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTAyMDM2MDE5MzIwNjk4NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"756cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc0NzkwMTQyMzAyMTEyMzA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cfcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDc2MjMyMzk2NzkwMjgwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"580fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDMzMTA0NTQxNDE5NTMwNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzE5MjM1NjU4ODc2MDk4MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8220da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDI5MTIxNTM2MDE4NTE1NzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"786cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTA1NjY3MzgxMDA4Mjc0NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d2cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc0NjcxMzIwNDI3MTcxNTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5b0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjY3NjQ3MzczNjQ3OTUzNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ0ODY3NjA3NzI1NTE1NjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8520da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc3ODA5OTQwNjA3NzQwNTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7b6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ5MTY1ODA4MTU4MTg2NjkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d5cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTk4OTMxMTY5NzUyMTcyOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5e0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA4ODIyMDAxNzIyNDM0ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aebee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTIyMzY3MTg5NDQ0Njc0NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8820da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjQ2MTgwODk3OTU2NTkyOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7e6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjEzNzE3MzExOTMxODI0ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d8cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDM4MTU3MjM1MjU0NDM3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"610fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzg4MjIzNTgzNDE5ODA0MjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzgwMDg2OTAyMDMzMzA0NDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ0NDM4MTIxMzU4MjE4MTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"816cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk0NTcxOTE5MTIxNjI1MjU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dbcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTEzNjcyNzE2MjM2NDIxMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"640fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMwMTAyNzA4NTI2NDA5MTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyODU2NjkxMTUwNjA4OTc0MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDUzMDIzMDE2Njc0ODM1MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"846cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjc4MzY3ODA3MDk2MjkzMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"decdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzE1Njc0NDM1OTQ1OTI4MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"670fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAyNzUyOTI4MDgxOTI3MTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTA5NDc4MjAxMzIyNTQ3OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA2NjU4NjI1NTQyNzI2OTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"876cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg4MjkxMDY0OTY0MTQ1MTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e1cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA0MDIxOTkwNzQwNTA3NDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6a0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE1Mjc5NTAzMDc2NDM3OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"babee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzM1MjI4MDQ3MTg0MzA3NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTk5NzIzNjYyMjQyMzUzOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8a6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNjg5MTIwNjQ3MjMyNTQ0MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e4cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDg0NDY3MDA4ODU4MDM3MDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6d0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTk4NDc3ODk5NjM5NzkzNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTE5ODY3Njc3MDQ3MzA4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODUwNDYxMDkxMzk4MDc4ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8d6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODk5NTYzNjY0MjIxMTAyMjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e7cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjEwMTM0NTg1NTEyNzkzNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"700fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODM2MzIxNDc5NzE3OTg4NTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA2NjIyMzk4MDQ2NDIzNjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Mjg0NTk3ODk4NzgyNTM3OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"906cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzAyNDU5NzIzNzYyODA1MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eacdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDY3MTczMjgwNTM5NzEzNDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"730fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzMwNzM2MjYwOTE3OTY5MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDg3NjM5MzA3NTgwMTAxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAxNzQ1NTkwOTM2NTAyMzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"936cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAzNDgwMjQ1NjUwNzEyMTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"edcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjMxMzk2NTY2NTA1MTc0NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"760fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjMzNjc1NzkyMTEwMDc0MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQxMDA2MzAzODI1ODY3MDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a020da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg2MzQxNjM5MTA2NDkzMzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"966cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjY2MDU1ODk3Njk3MDE3MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f0cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTAwMDkzMjIxNzYwODAzODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"790fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDA5MDcyODczMzAwNTE5ODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODYzNjY1NTUwMDA0Njk4NzQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a320da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTc5MzE5ODc4MDE4NjI4MzgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"996cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA3MDQ2NTIyNTY3NjgwODU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f3cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM2ODUxMjU5NTczNzU5MjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7c0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzM2MzgxMTE3ODkxOTE4MDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ccbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTE0OTY2MjE4NzU0OTE5MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a620da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODA4OTgzOTc2OTE4MDQwOTY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9c6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MjI5NjgzMTE2ODI0NjgyNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f6cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTQ4OTkxNzUyNzkxNzY3NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"800fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTEwMjY0MzI2MDA4MzE1NTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNDkxNzQ2ODQwNTY2NjU0ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a920da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDUyOTA4MjI1MzgwOTYwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9f6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjY3OTM1MTYzNzU1OTQ2MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f9cdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI1MzEzNjA4NjQwNzQ2MTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"830fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjQzMzM2MjI1NjgyMDQ3ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDYwODA2NTIxMDk1NjQ1Mjg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzI0NzAwMTIwOTQxMTUwOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a26cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTY3MjQxNzcwNjI0NjAzMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fccdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDA0OTI1Nzg2ODkzNDMyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"860fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzOTE4OTMxOTc3NjgxNjA3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Mzg3NTk4OTAxNTIzMjY4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjc3NzQzODc4OTA3MTMwNzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a56cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjEzMjgwNzY1ODE4NzY2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-06-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ffcdca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUxMTAwNjE1MTA5NjY4NDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"890fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODM2MzUyMDQ4NjI0MzQ4ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjU4MTk2NjA2MjY2MzA1ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b220da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzNzMzNDE0MzI5ODc4NzAzNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a86cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDg3NjY1OTAxMDQ3NzI0NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"02ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQyODg5OTEyNjExODQwNjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTIzMTY4MDIwODc1MTk3NDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTkzNTQ3MjMwMTQwOTE2Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b520da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA3NzAwNzUwNzM2ODQzODEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ab6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc3NTU4NjkwNzQ0NTg0NTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"05ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMDA4MTM3OTY5MjcyMDYzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"900fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYxMDk3OTUxNDQ0MTE2NzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"debee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzYxNzkyNTYyMzA0MTI0NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b820da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MTk2NDU3NjM2ODA1Mjc5MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ae6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTUxOTg4Mjk2Nzg3MDM1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"08ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM3NjE4NzU0Mzg0OTAxNzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"930fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU3Nzk0MTY0MzM1NzI2NjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjE0NjkzMjU4MjgxMjU3NDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bb20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxODU3OTM4ODQxNjI4MTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b16cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDI1NDUxMDYzMDMzNTk1MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0bceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTkyMjYyMDg5NzQxNTYyNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"960fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Mzk0MDE2MTg5MjQ5ODExNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA0OTUwODIzODkxODgyODE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"be20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg4MjcwNTUzMDYyNTE1Nzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b46cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Mzg5NzQzNzk3MTc4Mzk5NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDU5NzM4OTM4ODQwNTQ1Mjc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"990fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDg5MjMzNTk3OTcyMTk3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc4NTg4MTUyNjI0MTY5ODk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDcwMDc4MjAxNjMyNDk1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b76cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzQ4MDI3MjQ0MTgzMjM1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"11ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDg0NjQ4MzQ1NTU4MjExNTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9c0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI3MDMxNTk2OTA0NTc3NzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eabee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MzY0NTEwOTIyMDQ3Mzg5OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzk1MTI5MTM3OTEwOTQ5OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ba6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM1NDc2MTcxNTI4MDMzNjAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"14ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE4NjE2MzkzMzI1ODU1MDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9f0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM5MDgwMjUwMTA5Njg5OTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDA1ODk4MzgxMDc1OTI1ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTU3NTQ0NzY5ODI4Njc0MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bd6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE5MTA2OTI3NTk3MzE5NDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"17ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc4NTkxODk3MDkwMTkyNjQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a20fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3Mjg3Mjc3MjQ1MTk0NTk4MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjk2MDE1Nzc2NzE5MzkwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ca20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzYyNTM1ODg3MjczNjM1NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c06cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQxODI5MjQ3MDMxOTIyNDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1aceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk0NTY4MjEzMzIwMjQxOTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a50fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDk0ODQ4MDc0Mjc4NzMwMDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjI5ODIxNjUzMjkwNzg1NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDkzMTA1NTE1NjE3MTg5MTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c36cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI2NDQ4OTI1ODI1MjE3MzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1dceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzYxMDc0OTY2NzczNTA0MTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a80fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjQ1ODAyMjM3MTY3NTUyODUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE0OTQyMzQwMDA1NjUxNTQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d220da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjY1MjI0NjI1NDIyMTE4MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c66cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc3MjM4MDEzNDI4MDI5MzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"20ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQzODU0MDk2NTA0NzQ4NDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ab0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODYxMzUyMTI3NzkxODkzNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9bee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkwODAyMTg2NzI4OTUzODcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d520da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUwOTE1MDAyMTQ1ODE4MjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c96cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDkxNzg3MDI5NDkwNTQ1MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"23ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDczNTE3NjkyMzM5MDI5NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ae0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUwMjkxMTQ2MTQ1MDAyMzI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fcbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjUwNDczMzI0NDUxNzI3MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d820da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzQ5NTI4ODEzMDY5MDcyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cc6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzQ0ODg0MTM0MDU1NjE2MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"26ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODcxOTkxNDUwNzczOTIxOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b10fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQwMzczMjc0NjUwNzE2ODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffbee156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzE4Mzk0MjU0MzUzMzEwNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE3Njg5MDQ5NDIwODcwNzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cf6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjIzMjI2OTkxMDI2MTIxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"29ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTUzNzEyMzM5NDM4ODA3MTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b40fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzY1MTUxOTI5NjQ0MTQwOTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTU5MTcxMzcxMDQzNzE1MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjUzNjQ2MDc1MDk5MDEyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d26cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MzQzODIxNjY5MDk0MzM0NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2cceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTM0MzYzMzY4NTM2MzIyMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b70fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk0NjY4NTM2NjE4MjkyNDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY0NTk4MjM5NjcwNjY3NTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e120da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDE5NDg5ODA0OTQ3NDUzMTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d56cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTkxMjM1NDA1NzQ3ODI5MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2fceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODMyOTE4NDI4Nzc5NDE0NTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ba0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNTYxMjQyNzQxOTA3NjQ3MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE1MzU2Njg4ODE1MTM3OTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e420da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgwNjU2MTU0NDM5OTk0MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d86cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzNzExODk0Mzg0OTUxMjk2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"32ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODYyMjMxNTc1MjkxNDQ3MzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bd0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTAwNjIxNDg0NzU2MjEzOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc4MzQ2Njg1MDU4MDc1MDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e720da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTczMjQzMzMyMjE5MTU2MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"db6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg0MjI3NTY3MTg3OTAzNDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"35ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjEzMzIwNDE3MDAyNjg0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c00fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc1MjYzNDkxMzI1NjIyNzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ebfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1MTQ0NDE0NzYxMTgwMTA1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTYyNTExMTgyOTc3NjYzNDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"de6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYyNTc4NzQ1OTQxNzQ2NTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"38ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTgzOTI1ODc2NjYxNzUxNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c30fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU3MjM1MzkyODcwOTM1NjYyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc0MTgzNDI0MTkwNTUwMzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTk5MjEyMjEyNTM3OTg1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e16cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDAwNTU4OTc1ODQxOTA2ODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3bceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNTE5NTk0ODE3MTQ5NTM5ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c60fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkwNDcyMjQzNzgwMDM2NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzY3MzgwMzY3NTU5MzcwMDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f020da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MzkyMjI5NjgxODQ4NDc1NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e46cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM2NTYxNzI5MzUzMzQ5MTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg4NDAxMzY4OTk2NzkzMjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c90fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI2ODA0NTU0NTE1Mzc2NTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU5OTg4ODUxODIzNjU1NTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f320da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE0NTk4MjgwNDc2MDg0NjIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e76cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTI4MDgzODU0NjYzNjUzNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"41ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTQwMzUxNDI5NjgyMDcwOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cc0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Nzg1MTg4ODkwOTIzMDc0NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1abfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDQyOTkxNzE5MjYyNTI0MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f620da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjAwNzc5OTc5MjQ3MDgxOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ea6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyOTc4MDkzODgwODIxNTAzMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"44ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjQ4NTE5NDEzNTM5NjEyNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cf0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDM3NTcwMjU4MjA2MDc5OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTU0Mjc5MTk3MzkzODc0NzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f920da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MzU4ODIyMjE2MjE2MjYyMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ed6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODcyMTkzOTIzNTkzOTc1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"47ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTgzNzc4MDY4OTQ3MjAwNzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d20fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc4ODI1MDIxMTQxNjg0OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ1MzE5NTIxMDg1Njc4ODcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ2MjczNDg5MDQyMTUwMjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f06cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ3ODg2ODgxNDUyNjc1OTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4aceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA5NjEzNTY4MjMzMTkwMzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d50fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzIxNDkyMDY4MDc4NjU5MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODc1MDgzMzE1ODU2OTE1MjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff20da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTE1MDQxOTYyNzQxNTk1NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f36cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyMzQ2MTM3OTUwMDU4MTk0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4dceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Njg5NzIxMTA4MTcwMTE2NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d80fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjQ2MjE3OTczMzU1NTc1NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTM4MTk1ODMzMjIwMTE4OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NjQ5NzE3NjYwMTE0NDUwMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f66cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzc0NzI3Nzc5NDYyMzE2MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"50ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUxODM0OTIwMjY3Mzc1NzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"db0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTcxOTAxMTAxNTU2NDI2MjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzAyODA4NTI1ODYwMTQwMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzY4MjYxNzM2NDAyMzg0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f96cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg4Mzg1Njg4ODM3MzQwODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"53ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTAyNTY1MDkzNTIxMzQ3MzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"de0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTgwODkyNzEwNjIxOTg0NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2cbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjUxODczMjE3NDU0OTE4MzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDI4ODgyNjQ2MzU4Njc5NzcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fc6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ4MTU3MjA3NzU5ODI3MzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"56ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDY4ODk3ODk5ODQ1NTE5NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e10fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjIzODQ2MjEyMTIzODc4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Nzc3NjY0ODU1NDA1MDA5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MjQ2MTUwMzIzNzMzMzc1ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ff6cd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU1ODUwNDU1MDIyNTU4MTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"59ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcyOTMyOTIwNzg3MDAwMzIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e40fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk5MTkyMDYzMDY2NDQ1MzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTg5OTE1MzUzMjA4ODUwMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjcwNjY1MzUyNTQ5MTI0MDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"026dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzkxNTgwMTczOTMwNjIyODA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-07-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5cceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE1MzkzNzMxNzgwMTYwODc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e70fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM5MDk2NzcxNDAzMTQ2NjQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MDA4NzIzNzYzMTU5ODE3OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1121da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUwMzk0Mjg2NTkzNzkzOTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"056dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE4MDU3ODAyMjE5MzU0MzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5fceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzAwMTg4NDQyMzQ2NjMzOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ea0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTczODAwNDYzMTM0NDY5MTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDAyMzg4MDc4NjEzMTA1NTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1421da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEzMzg0NDE0NTMwNDQxODg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"086dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MjkwMzcxODU4ODQ3OTkzMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"62ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzQwNzMxNzA1MzI4MjUyMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ed0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzcyMzc1MzA3MTM4MzEzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3cbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc1MDMxNDEzODI0MjgwMjAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1721da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAyMzk1NTc5MTA2MzE4MDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0b6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzAwNjcyMDA5Njk3OTcxNDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"65ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA5NTk3Mzg1ODg4MTg2MTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f00fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzkwNjgzMjM1MTI4OTY5MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEzNjIxMTQwODk0MTQwMTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODkxNDk0OTg2ODg3MDU0NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0e6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg0NTAwNjA0MDM3OTE1OTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"68ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYxMzMwMTYyMzU2MzExMzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f30fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkzMTY0Nzk2ODUwNTkwNDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzM4NzQwMDUyNDQ1NDUyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDEzMTg3MTc5NDMzNjQzODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"116dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM4MjE0MjA3Njc0MTQyNjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6bceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMzcxNDU4NjI5Mzk0MjI5MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f60fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ1MzM0ODg0Mzg1ODgxMzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjEwNTIyMjAxMjcyOTc3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2021da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODA0OTg0ODcxMjc2MjMwMjc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"146dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY2MTg2NDA1NDA4OTI5MjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6ececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA2MDYzOTg3NDA0NDM0NDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f90fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTU1NjQ4NjM5MTA1MDg2MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU1MTY5MTM5OTk3MjAyMjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2321da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYxMDA5MDkzNTI4MDEyNDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"176dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4ODMzOTI3NDI4NTk1NjA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"71ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTYyNTkyODkwNDYyOTM2NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fc0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM3NzkzNzM1OTU4OTExMTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgxNDUzMzE3MjcxNTQwMzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2621da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzAzNzU3NzY1ODMzNzQ1OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1a6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTI5NTc0NTUwMTU3OTY3NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"74ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc5ODA3NzMwMjMwNDg2NTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ff0fda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzIyNDQ3MDAzMDA4MjM1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ebfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE4MDM5ODUxNjkzNTQ0MzUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2921da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTg1MzU0NTQyMDM4MDE0NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1d6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTk2OTk5NDA2ODQyNjgyNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"77ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUyMjI3Njg1NzY4MzY4MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzk0OTIxMTc5NzU5ODEyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTMxMTc1NjY4NjM5NzA2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1Mjg1NDY2OTU5MDU0ODQ3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"206dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTg4MDQ0NzE1NTEwNDAxMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7aceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzA5MjQzNzY4Njc4MTExMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTcyNTkzMTU3NzgxMDM1MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyODE0MTU4NzUxNzQ4MDczNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkyNTU4NDA2MTY4Nzg0NDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"236dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjEzOTA4NDE5MTk3MzMyNzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7dceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDgxMzc5MTM5ODM0MTI1MDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE1NjI5MjcyMDIwNjY1Nzg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTEzMjY1Njk2MzM3MjM4MzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDE2NzgzNzYxNjI2NDUxNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"266dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDU5MjUzNDIwMjI5MTU5MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"80ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMzU3NDAxMzQ5ODU2MTgxNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODIzNDgwMDAwMjQwNzY2MjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5abfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc0MzQ5MDk3NDIyMTg4MTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjY2Mzc4OTQ3NjkwOTI1MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"296dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODcyNjQ5NjE5MDgwNDExNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"83ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODkxOTIxNTY4MzU3MjYzNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjY1Nzc0MjQ0ODA1NTU2NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4NDA3NTIyOTc2ODM0NzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODY0ODc5ODg4OTQ4NjgyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2c6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDEzNjEyNTcwMDQyMTE4MjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"86ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk5MzEzMjI0NDI0NTIzNjc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1210da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTk3MDIxMjkwNTU4MDU0NDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzEwMzg5ODE3MjU3MjkzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI4OTIwODMzNjE3NzMzMjg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2f6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTY0NzQyMjcyNTA5NTk2NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"89ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjM0MjI2Mzc3MTIzMTc3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1510da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDQ3ODQ1MDY2MTIzMTM3NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTA2MTQwOTczMTkwOTg2NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MjU2NTM4NjE1Mjc1NTEwNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"326dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcwMDI3NzE1MDc5ODkyNzk3NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8cceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDg0NzY1NjM4NTUxOTQ4NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1810da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTczMzcxMDc1MTMzOTIxMDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDE3ODgxOTMzMTU0MDQzMTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4121da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2OTM2OTgyMzYzNDg5NTI1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"356dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI4MTcyMjUzODc4NzkxMDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8fceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDU3NTkzMTEwOTI5MjA2NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM3MTkxNjM2OTI3Mjc5NTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mjc0MzQyMDE1NDMyNTEwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4421da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ1OTUwMzQ5NDYzODcwMzU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"386dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTA2NjkxNTM4MTgyMDcxOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"92ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQwNzcwNzYwMzQ0OTQ0MDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY1NjAxMDU2NjMzMzYzOTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6cbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA5MjU3MTgwMTQ4MTk2Nzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4721da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ3NDU2NDc1MzMzNTc3MDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3b6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Mzk5MTk0ODczMzk3NDA2NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"95ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM0MzIwNjk3NDEwMzk2OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2110da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQxNjAzMTkzMzIyMDk3NzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMzNTMzNDg0NTQ4NjM1MTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjkwMTI5MDQ4OTcxODQ5OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3e6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkxODQ5ODAzOTM5NzUzMTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"98ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA4MDg3MzQ1MTg3MTQ3Mjk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2410da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTgwMzEzMzA3NzAyMDMxMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIyOTY1OTk2NzMzNjk5Mjc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzcxNDgyMzEwMjc5MTAzNTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"416dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODY4NTAzNzM2ODc0Mjk2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9bceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY1Mzc0NTUwMDUyNTM2OTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2710da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjcwNDUyNDQxNDUzMjgzMTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY5Nzc4MTU1NzIyODc5NjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5021da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0MjcwNDk1MTQ4NDI1NzIyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"446dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTIxNzIwNjk2Mzc4NzU0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY4Mzk1NzQ4NTI2MzMxMTg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTcxMTkzOTc4MjEyMjczNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk1Nzc5OTc3Njk5ODIzNzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5321da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODI0OTM4NDEzOTk4MzcyMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"476dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Mzk0ODcwNDMyODc3MTM4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a1ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODAwOTk3MzI4MjE3ODExMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc0NzQ2Mjk4MTA4NDYwMjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:39.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA2NDg4MTU3MzM3NDc5Nzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5621da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc4ODU1MTk0MTkxODgzNjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4a6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjM5NjY3NjQwNTY1MTQ1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a4ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjE4NjUzNTgzODA0NjczMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3010da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDE4NDQwMzM0MDg3MDkxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ebfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:39.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg1MTkzNDU5Nzc5NzkwMjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5921da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODYwNjY5NjYwNDI2MDYyOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4d6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDU2ODQ4NzUzMjkyNjA2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a7ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMyMTgxNTcxNjUxOTAzNDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NjMzMzE2MTYwMjczMDY3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODg5NjEzNjkwNjA1ODQ4MDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTI5OTI3NjcxNjI3Njg2MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"506dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY5MzAxNzU2MjE3Mzg5MjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aaceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MjQzNjYxODQzMTEwMzA0MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE4NDAzMzY3NDM3NzQxNzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk2NjAyMTk3MzEyNDIwMjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzMxMDAxNzgwNTM2OTA1NDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"536dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDc5NTI2OTkxNzg1ODQwNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"adceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA5MDIzMjUxMjA0MjI0MDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTMyMzQwMjk1MTE5MTQ4MDU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM1Mzk1MjM1MDI2MjI1NzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA5OTk5NzI0MzUxMTUwODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"566dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYwMjgyNzU3NjcxMjczMTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b0ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjExNTQyNzk2MzQ4MDExMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTg5ODk5NTc4NDk4MDYxNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8abfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE4MDk1NTk2MTIwNTY0NDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTA5OTIyMTA5Nzk3MDY0NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"596dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYwMTAxNjc0MDQ3NDAwNzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b3ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODUwMzEwMTQ4NDE1NDQzODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1MTExODQ0MTk1MDEyMTU4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDAwNDg3NDYwNTM1ODkxNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTA1MDk4OTg1NDUxODczOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5c6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjIzODQxMTg2MTc1NDc3NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b6ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTMyOTYyNDQyNjA2ODEyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4210da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzQwNTAyMzg3MDE0MjA5NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 5,\n            \"bookingsAssignedRoom\": 6,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyNDIyNzQyODQ0ODQ2NDg3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI1OTE1MDY1NjI3MzAxNDE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5f6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NjA5NzQ5MzQzMzc3NjQ4NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-08-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b9ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.883Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODEyNDQ4MTU1MDMzMjM1NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4510da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTY1OTQ1MzkyMDg3NTEyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.03Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYyNzQ0NTQ2MjgyNjc0MjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTczNjgzMjUxMzE3NzQ0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"626dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.863Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjUyOTkwMjk1Nzg2MDEzNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bcceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc3NzE4MDIzMzM4NDg2MDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4810da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Njg2NTgzODA3MDk1MzQxMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.033Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU1ODE2MjM5NjE2MTQwNzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7121da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDg4NDM3NjA2ODc4NDAwODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"656dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.89Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTE5NjI4NDUwODY1MDY2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bfceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgyOTA5Njg1Mzg1MTkyNjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyOTUyMjk2MzU0NDMzNDY1NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.04Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzAxNTg0ODgxNTU5NzE5MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7421da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTcyODQzMjcxMDQ3MTk3NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"686dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.903Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIwODIzMzcxNTQxOTM2OTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c2ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjA0Njk2Nzk1MjQ2ODQ3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI4Nzk0MjM1OTE0ODI2NDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9cbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.047Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTI4NjU0NjcwNTUzMTYzMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7721da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTkzODk5MTc3OTIwMjYzNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6c6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.907Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTU3OTAxODYwNDU1NDE3OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c5ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAzMTUyNDY5ODcxMjU2MzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5110da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU2NDQ1Nzk5MzE5NjYwMTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.05Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Nzk3OTgyNjAzMzA3OTE2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM0NjY4NzQyOTI4Nzg4ODE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6f6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.913Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTgxMjcxMDQ1NDEzMjEzMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c8ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTcwNDE2ODkzNTY1NzQwNzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5410da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDc1MzU0OTE1OTc2ODQzODM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.053Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODkzMjY1NjcyNTY5NDIxMjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwMjY5OTg5NjM2MDY5NzkxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"726dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.92Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTczMTQ1NzYzMjg1NzkwNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cbceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjM4NjY1NjAxNDg4NjA4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5710da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU2ODQyNjIyMDMwMjY4NDg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.057Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDU2ODk2MzcxODc5OTYxMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8021da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjc3Njc3ODMzNjUzNjA3OTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"756dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.927Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQzNTU0MjU2MDA1MDg1MzA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5NjI1OTk5Mzg5MjA3ODQwODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE3NTA0MzYxNzQ3NDY1NTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.063Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzI1MjE5MjkwMTYwMTM0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8321da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTgxMzE5NDIwNTc5NjM5NDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"786dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.94Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzNzU1NzUwNTc3MzA0NzgzMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d1ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM5OTcyNDU4OTg0MTgzNDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTUyODk3MDYwMzQ5MjI1NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.07Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzUwMTY5MTc3NjExODczMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8621da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU0NjgyODk4MTgyMjAyNDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7b6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.947Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTc0MjI0NjQ0OTE4NDYyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d4ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzMzNDc1ODczODk1MTIzNTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6010da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzY1MTQzMzYxMDI3NzExMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aebfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.073Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQyMDk1Njc5NDAxMDMyMDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8921da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDE0NTc5MTA4MTU5NjIwNzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7e6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.96Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDMyNjQwNzMwMzIxMTc2ODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d7ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDAwMzQzNTIzNTEzNjM2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTE5NjE5MzE2NDAyMzEzMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.077Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU1MjI1ODc0MjI4ODQ2NDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTA2MTU3OTE3MTc2NDI4MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"816dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.967Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUzNjI2Nzg2MDMxMDMxMTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"daceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjA1NDcxOTEzODM5ODEwNzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ0ODI5NjA0ODA4Mzk5MDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.083Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc2NTM2ODc4NzA5NTUxOTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkzODM0ODAyMTY4NDE0Njg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"846dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.973Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTgxMzUxMTg3NTMwMzgyMTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ddceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYwNTI2NjE1NjQ1MzE3NjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEzMTAxNzYwNDcyODU5OTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.087Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzc4NjI3MjY1NjU0OTg0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTE4NzI2MTY3MzI4NzU0NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"876dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:02.983Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:02.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0NjM2ODc5NjYwMTU0MTQ5NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e0ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzkwNzI1NzI5NDIzMDMwMjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6c10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU5OTU1NjI1OTIwNDA0MDA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"babfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.09Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTk4ODgyNzA1OTc1NTMyNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg0MDc2NzY0MjExNTI2MzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8a6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.027Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDUyNTc2NDczNTY1MjYyNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e3ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjkxNDUxNzczNzAyNzc0MDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6f10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTM2MDIwNzM1ODE3MDU0ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.097Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg2Mzg0MTEyMTEwNjk5ODQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzA1MDA3Mjk1MDUwMTg1NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8d6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.033Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODk5MDg5MzA1OTYyMTUxMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e6ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODk2OTYyMjg4MDEzMzgzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7210da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTI2Mzg0MjIwMzYyMzMxMjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.1Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDQ2ODY1MjE1NDExNzE1MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzA2MjU4MDY1MzY1MjUzMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"906dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.043Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjUwNzMyNDg4NjkwMzE0MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e9ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:11.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzAzNzY3NTE0NzI4NDkyNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7510da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg0NjUxMzQ1NDc5MTEzODI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.107Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU1NzMyOTk0MTU2MTY0NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NTkyNDgyNTYwMzgwMDAyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"936dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.05Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTA1MjAzNDI3MDU2MzYyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ecceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:11.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjA4OTQwODg4ODM3NDA1MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7810da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjYzMjQ3NjU4NjU2OTE3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.113Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ0MDU3MTcyMTAzMDk0MjIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a121da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjMzMTk1Mjg2MjYxMjUxMTQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"966dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.053Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjEyMDQ4MjU1ODA4NTQ5OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"efceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNDM0NDE4NzkxMjE1Nzk0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7b10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTY1MDQ5MTYzOTcyNjc5MzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.117Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3MzI0OTUwMDc3MTk1NTU5MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a421da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NTk0MjQ2MzMwMjU3NzA5NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"996dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.06Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzU1OTE2MDUxNjA5Mzc1ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f2ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE3NzEyNTg1NTQ0MDQ0NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7e10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDA5ODM2NzkzMDc5OTIwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ccbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.12Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTcwMjYxNTgxODI3NTg2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a721da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg5NjA4NjAxNzg5MjEzNDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9c6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.067Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTI2MjM5NTg5MDYzMzk3ODc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f5ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjUxODYzNjEwMDEwOTQwMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8110da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDU1Mzk0NjE0MDAzMjM4NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.127Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM4MDQyMjUzMDU1ODY0NjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzQ5NzkzMTkwMDkyNDI2OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9f6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.07Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAyNzg2MTU3MDExMTE3MDc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f8ceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYyNzE2MjIxNTA0NzYzNjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8410da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDI3ODg0NTQ5Nzc0NDQ1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.13Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTY4NzcyNjA2NDU0MjQ2NjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTY5NzYzNTYwNzExNzI4NDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a26dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.077Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTYwNDUxMzQ2MDY5Mzc0NTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fbceca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MzMxOTEwNjYwMjI3Nzc0ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8710da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQwNTkwNDk1NzI2NTMyMjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.133Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDIzMTQ3NzY3NzA5MTgwNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b021da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTc2ODE4ODEwMTYxNjg5NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a56dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.087Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTI2MTQ4ODAxODUzOTgxODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fececa68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE2MTQ5Mjk0ODU2MjI4MzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8a10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk5NTk2MzI5MTAyODcxNzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.137Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDM1NTk5MDY4MTMyMDYyMzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b321da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg4NTUwMDE2MjMyMzA3NDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a86dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.093Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUyMDc4NTI3OTY4NDk5MjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"01cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTY0OTEzODI5ODYzMTY3MDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8d10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQzMzkxNzAxNjExMzY4MzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.147Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDU5ODAwOTQyMTAxNzA3MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b621da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDQxNzg3NzA0NzkxOTE2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ab6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.097Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMTk5OTE4MjUxMzUxMzYzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"04cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDM1MzE2NDMyNDI0MzI0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9010da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzg1NjM2MDIzMDQ3NTgwNTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"debfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.147Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDgwMjQ2NTc2MDM4NDQ4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b921da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjkyMTczMDkzMzA2ODYyNDMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ae6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.103Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzIyMTcyNjE1NTQ1NTc4MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"07cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk3MDU1NTQ4OTEzMTUyNjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQyNTgwMjczMTkzMDg3ODg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.153Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA1NjYxOTk3OTExMjg2NzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgyNDcwNzc2MzU3NjcyMjgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b16dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.107Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ1Njc3MDY3MTAwOTYxNzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0acfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDExNDczMjIyNjY2NTI5MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjQ3NjQwMzc2MDE4MTA2ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.157Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzgwNzE2MTUwOTYwMzcyMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU2ODE5OTgyMDg4MjE3MTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b46dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.117Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY2NTU2NjU0ODAxODY5OTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0dcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTE3NTkyNDY5NTgxNTYwOTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzE5Njg1ODIwMzkzMTE0NDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.16Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NzAyMjc0NTkzMjI2NDkzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTQwMTY0NjkyMjY1OTkyMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b76dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.127Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjk3OTg3OTYzNzg1MDQ5MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"10cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjM5MDU1NzI2NzU0Njc4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9c10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ1NjEyNDk1ODkzMTk4NDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eabfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.167Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwNjQ0MTk1NzE1MDg1Mzk0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk3MjE0OTM5NDQ5ODAxNTU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ba6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.13Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4NTE4MTc5Njk3MDg2ODkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"13cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY5MjUxNTc5NTQyNTQ4NTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9f10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzczMTEzODM2ODgwMjk5MzIzNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.17Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjI5OTc3MjU5ODA5MzkzOTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODUyMTIyMDU5Njk4Mzg1MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bd6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.14Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU0Njc3Mjc0NzE0Mzg0MTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"16cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODg2NzcwNjc4MzkxMjgwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a210da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzA0MDk1MzM4NDMyMzMyNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.173Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjI5MzM4OTIxMjkyNDAyODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MjYyMTE5MTY0MTA1ODI3OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c06dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.147Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM1ODU5NDAyOTQyOTQwMzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"19cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM0MTQ3MjgxODE5Mzg3NzA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a510da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjUxOTMwNjMzNDk2NzA2MDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.177Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUzOTQ0NzMyNDc2NzU0Nzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYyNDE5MTk3NzAyNDYwNjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c36dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.15Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDY5MDk4MzYyODcyOTExMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ccfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM3ODI1NTQxOTAzNzIxNzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a810da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNzMxNDU1OTQxOTYzMTIzOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.183Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzE1MTkzNjU5ODkxNjg4MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d121da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQyMDgwMDk5MDA2MTU5NzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c66dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.153Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE5NzczODMwODYyMTkwMjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1fcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTcxMTk4NDc1NTc4MjkzOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ab10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU0ODIyMjUxNjExMTM1ODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9bfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.187Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTg0NTc2NzU2NTM5ODY5ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d421da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ1Mzk2ODc3NDAyNDA0OTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c96dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.163Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE1NTc5NzUwNzgxMTY2ODUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"22cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDg4OTc5MzkwNDYxNzc5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ae10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzYxNDExNDIwMTM4OTMyOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fcbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.19Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODA0MTM0NTQ4NzMxMjQ4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d721da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTM1NDQ1NzcxNDI2MjMzNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cc6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.167Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTEwNzE5Mjc5MzAwMTg3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"25cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjcyNzUyODI2MDExNjE2NDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b110da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTYzMzI1ODkzMTc4MTEyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffbfe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.193Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjIxNjQ1Njg4MTAyMDU2MjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDY1NjIwODE1MjgwNDI4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cf6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.173Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTg0MTcyNDM0NTk5MzAyMzE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"28cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI2MDE5MDU1MTkxMTY0MTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b410da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMTgzNTgyNzIzMDAxMjQxMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.197Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTQyODk4NDUyODgwNTU5OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTUwMDk1MTE1NTY5NjE5MDcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d26dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.177Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY1NjkxMjc1MzI1MzAwNjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2bcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzkxNDg4Mjc0MzAzOTYzNDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b710da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgzNjQ5MDc1OTQ3NTM2MTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.203Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDY5ODg1OTk1MDc1MTE1NjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e021da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NjQ5MDE4MjYwMDY3NjU4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d56dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.187Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjUzODYwNTU1ODY3NDQyNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2ecfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ3ODgyNzUzMjM2MjkwMDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ba10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk3NTA1NjEzMDg0NTExMDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.207Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3OTk3MTE4MjI5NjI1NjY2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e321da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjgxNjM2NzY2NDkwMTk2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d86dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.193Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODk3MzIwNTYwNDI2MDk4NjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"31cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzQ4MzM1MDQ1NjUyMTI1MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bd10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ0NDE0MzExOTYxMTA3NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.21Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDIwMzgxMTEyNDQ1MTA3ODI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e621da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODY2MjczNDgxMzQwODc3ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"db6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.203Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMzMDEzNTI3NDgyNTAyNTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"34cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDc4MjE1MDAyMDc1MDQwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c010da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxMjI5NDIwNTM3MzYwOTkyNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.217Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQyNDY0MjM1NDk1Njk3MTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e921da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDI2MzI1MTIyOTU1OTc5ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"de6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.217Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDMyODYwOTc0NjEzMjk4NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"37cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjQ2OTg0NjkxMDE1MTE4ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgyMDM4MzY3MTEyNDgxNTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.22Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA5NzA0NzQ4MTM1NTAxOTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzU2NzE5MDc1MTcwMjIxMzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e16dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.223Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDI3ODk1NjA5NDg3NTk4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3acfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU1ODM3MDc5NTQ1MTIxODkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTIzNDA4NzU1MTg1MjkxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.227Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA5NjYwODg5NjYwNTI5NDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5NTMzMzUxODAzOTk0MTY3MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e46dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.23Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDU2MTgwODczODA2MDk4OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3dcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTY2NjA1NTAwMDQyMTk5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA2MTEwNDUwMDUwNTU4NDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.23Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjcwNDg0NTI3NjUwNDQ0NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f221da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQzMzM1NzU4NTM5NDA4MzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e76dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.237Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTI1MjQ3NDI1NTYxNzA4NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"40cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgzMTIzMjk0NzgxNjU4MTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cc10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTI5Mjg2OTU3NTk4Mzc3NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ac0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.237Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTA0ODk0MjcwMjkxOTc4OTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f521da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2ODcyMjA1MDA2OTA4MzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ea6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.24Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY5MzYyNjk2NTQyMDk3NTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"43cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIzNTUzNTkyMDcyMTg4NDYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cf10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDgxODcyMDc3ODcyMDg1ODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.237Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDY2MjQ3MzExNTQzNzA0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f821da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzM2MzE4OTA0NDM4MTg3NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ed6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.247Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzU1MzU4MTU5NjEyODM0NTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"46cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTQ0MzY5Njk0ODA0MjUyMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d210da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTQ3NzY5MTkxMjM1OTA4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.243Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NzQ4NDUwMDUyOTU3OTg1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODk5MTYyMjA0OTE3Mjc1MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f06dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.253Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDYxMzE5NTAwNTY1OTI3NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"49cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzg4MDk5NDI4Njc3NDE3MTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d510da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE3MjgzMjMyNTM5NTY3MTc1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.247Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjA1OTA0Mzc2MDMzNzg2MjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe21da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTQ3MjMxNjM1MjUwNDk4OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f36dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.257Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MTk3MjcyMjU1NjAzNzkyODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ccfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ2OTE1MjU4ODkyMzUyNTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d810da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQxNTMyNTI0NTE0NzY4NzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.253Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTE0NTczNTUwODYzMzE0ODY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTU3Mzk4ODU2NDY4NDA2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f66dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.263Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNDU2OTUwNzUyMjI3MTM3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4fcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTMwMjU0NTA2OTYzNDgxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"db10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQ0NjIxMDM4NjE0ODU1Mzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.257Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTU5NzgxNTU5Njk4OTEwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDUyMTc0OTIwNjgyNTA3NTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f96dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.267Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjQ5ODEyMDE2OTM1MjkwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"52cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU1NjgxOTIwMjAyMDcxOTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"de10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzE4NjY5NjEyNjY1NTk5NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2cc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.267Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgxNDgwMjgzOTYzNzQ3MTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMzMwMDIwNDc0NTE0MDIxMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fc6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.273Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzNDY4MzAzOTgyMjQ2MTg4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"55cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDA2MzYwMjI3NjU4NTA5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e110da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM3NjY1MzM2OTc0MjQ1NjQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2fc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.27Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzE5NDU1NjAzOTk2MDIwMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDE1NzI3NDQ4MzE4NTE1Mjg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ff6dd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.283Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTE1MzQ5NTI0OTk5MzA2ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"58cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMjc2NzQ1MDMxNzQ2NTU3MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e410da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM0MDkxMjIyNDEyODIzMzQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"32c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.277Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjA3MTE5MDAzNjYyMTcyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTg4MzQzNTAwNzU3ODQyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"026ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.287Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk5MDg3MDgzMjk4MTgwNzY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5bcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjUxOTUxNjExMDgwNjUzMjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e710da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjIxOTc4NDMxNTQ4NjM4MDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"35c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.28Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTU4OTE3NzE3OTcxNzY0MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1022da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY4MDA2NDY4MDAxMTA2MjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"056ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.293Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTE0MzEwMzczMDcwNTgxNTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ecfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg2MDAyMzQ5MTA2NTA5MTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ea10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NDUzNjE2MjE0Mjg4MTMzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"38c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.287Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQzNTk0MDk0MzYyOTQwMjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1322da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDM4OTY2Mjc4MjI1NTkzMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"086ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.297Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODEzNDU1MDIxNzk5NDI5ODI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"61cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDA3NzM2MTI0NTAwMTQ5NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ed10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODMwMDQ0Mzc5NzcwODA0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3bc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.29Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NDE0NjM2NjgxMDk0Njg4NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1622da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzIyOTkzMjcwMDQ3MDYyOTg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0b6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.3Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTI5NTEzNzk2OTczMjU4OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"64cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjAxNTQ0NjQ2MTA3MTAwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f010da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzMwMTI0MzA3MTEzMDM1NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.297Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEzNzE4OTE3NDg0MDA3NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1922da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NzcwMjU3NDI2MzMyNzQ0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0e6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.303Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjc0NDkzNjQ2MzAyMzAyNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"67cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTQ3NzM5MzQzNDM5MDExMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f310da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE2NTg2MTY1MjIxNDI4MDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"41c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.3Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDIxMjMyNDg0NTUxNzI1MDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjYwMDg4NjI5ODM5NjMxOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"116ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.307Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0NDgyMDcwMzQxMDA4MDI5NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6acfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYzNzAxMTE4NDU3MTU0NDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f610da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjUxOTUzMjU4NjE4NjM3MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"44c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.303Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTM1MzIwOTgyNjM5MDA0OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY3MDU4NTA1Mjk3MjExNTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"146ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.313Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA2MTk3ODgyNDExNjk2MjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6dcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjIzNzczNjE2MzU1MTg5OTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f910da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ1NTg1ODQ3MjMyNzE2ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"47c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.31Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTI4OTA2ODMzMDgzNzcwMTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2222da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MjYwOTE2MzIxMjQxOTgwMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"176ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.317Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDgzOTU2MTc4MzczNDk5NDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-10-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"70cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE5NDQ1NDIxNjUzNTY2NTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fc10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:47.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NjQ5MzU3MzQwMjIxMjAxMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ac0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.317Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgyOTQzMTE3NTM5MDI5MTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2522da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE4NDY5OTAzMjk2MjI2MjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1a6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.323Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMjUzNTEwNzQwODI4Njk2OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"73cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDQ0NjE4MzcwNjA2NTkyNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ff10da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:47.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDMwODYxMTkzMDYyNTE4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4dc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.323Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3NDY4MTkxNjI4ODc5NTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2822da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE1MTUxNTczMzA3NDA0MTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1d6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.327Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU4MjgyMDIyNzA2ODYyODQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"76cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYyOTAwMTg3ODA1MDEwMTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjI1MDczODI1ODc2ODM1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"50c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.34Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Nzc5NzAxMjkwOTA0MzIwMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzY4ODY0MjY1NzE2Njc1ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"206ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.333Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUxMTgxMTA3NjE5MDQzMTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"79cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTcxODM1NTk3NDk1MzkwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc4NDc2ODYwMzQzMzU1MDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"53c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.343Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE5NzIwODIyMzQxNTU1NzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NzY1NzExNjQzODA2MjM4NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"236ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.337Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMyNTIzODM0MDAwMTQ0MzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ccfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjIzMTM0ODEwMzAxNzYwMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI3MTAzNTA4MzMyMTI3MjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"56c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.35Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjQ0NzQwNDA5NDg5MTI0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU3NzAzNTE2NzY3NDU5NjYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"266ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.343Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NjU1MzA1NTQxODQ2MTQ1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7fcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjYwOTE5ODAyNzAwMjEwMzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0b11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODY4ODI5OTA5ODE0MDk1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"59c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.353Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDk0ODM4MzEwODA3MTgzNzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc1NDYyNjI5OTg0OTUzMTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"296ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.347Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ2MDE3MDczNjcyMTk2NzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"82cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjkwOTQwMzg4MTEwNjM5MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0e11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTM1NTE3NDYwNDA1Njc0NzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5cc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.36Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTU2NzY3NTE3ODA3MDk2NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODcyMzgyMjkxNjgxNTYyMjI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2c6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.35Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjEwMzAzMzk3OTUyMTk0NzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"85cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgxMzMwMDI4OTU2NDEzMDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1111da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA1MzQyNDA1OTA5NDk4MDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5fc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.367Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MjgzNDg1NTM4NTA0MzUwNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDI1NzI3ODc1MTMzMDI2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2f6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.357Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQzNzM5NzYwNTY2NTU0ODI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"88cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzEyMDY5OTM1NDg2Nzk3NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1411da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2ODU3MjM3NTA5Njc4NDMyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"62c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.373Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDQ2NDIzNjA3NDMyMDc0MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODUyNzIzMDU1MTA3MzIzNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"326ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.36Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTc3MzUwMjEyODAzMDU5MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8bcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI1MDc1MjMwODI3NjYxMDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1711da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzE1ODA5ODcwOTczOTUxNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"65c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.377Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjE3NjUzNzU1NjQxNjQ4MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4022da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDQ3NTU1NjQ2NDQ5NDI2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"356ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.363Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODY4ODg5NTkwNjc2OTY2NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ecfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDkzMDUwNjAzNjU2ODI4OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1a11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkwMTcwNjI2MzM3OTI3ODk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"68c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.387Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTY5OTgxNTMzOTk5NjU4MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4322da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyNzc1OTc5NjU4NzQ1NzQ0NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"386ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.37Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ1MzEyOTg0MTM3ODI4Mjc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"91cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDAxODU1NjA4MzY4MzcyOTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1d11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Njk3NTAzNDAxMDcyNDk3NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6bc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.393Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3OTg4MjAyNDU2MzE4MTA2MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4622da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk0NTI0NTA1OTQ4MTI5MDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3b6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.377Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjY1NTYwNzQ2MzgxMjkwNDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"94cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg3NzUzNDA3ODkxNzMyNDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2011da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTU3MDM1MDU0NTEwNzgwMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.4Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDI4NDYxNjYxNDA3NTc2NTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4922da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjg2MjMxNjMyNDEwODk3MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3e6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.38Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzY5MzQxOTA3MTc1NDkzODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"97cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUzOTg1NzI1MTIwMTI1NzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2311da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQxMTA5MTQ4OTY3MjIwMDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"71c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.413Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQzNTE5NjY5MTE4NTE1MTYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk1OTU4NTM2NjY3OTY1NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"416ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.387Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY0NDk1Mjc0NjQzOTUxNzU3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9acfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU0Mzk1MTc3OTcwNzIxMDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2611da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NzY5MDcwNTg4MjIyMzUxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"74c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.423Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDkzNzc1OTY5MDU5NDg1OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDg4MzAwNTkzMTA4OTE4OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"446ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.39Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxODE3NzM3NTQ4MjQ5MzQzODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ5MjY4NDAzNjc5NjkzNDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2911da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NjE3NjkzNTI4NTY4NTMwMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"77c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.427Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYxMDg3ODE4ODIxNTgyNzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5222da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODcyODYyODU0MDE0MzE5NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"476ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.397Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTg4MTA4NDg4ODA5MDU4NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA5ODM0MzMzODA2MTYwNTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2c11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEzNjM5NDQ1NTIyNzI3NDYwOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ac0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.43Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMzA5NTg4ODUxMTM0Nzg0MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5522da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM4NTU4NDY3NTMyMDUzODUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4a6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.4Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU2NjI0MjUzNDE0NzUzMTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTA3MzQ3MzY0MzIyODc0MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2f11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzQyOTA2Mjg5OTI3MTc5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7dc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.437Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjM1OTExODMyNjQxNDc0NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5822da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzIyMTA3NzQ3OTUyNDA4NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4d6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.41Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTE1NjUyOTc3MDM5NjcwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMwMjUwODQ0ODQ3MzA0NDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDY1MDI4MjcwMjg2MzgwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"80c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.44Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUxMjEwODY1NjA4MTUyNjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEwNzkwMjcyMTMwNjI2NDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"506ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.417Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjY4OTg0OTMyNjQ1MjQ5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTMyNDkzOTEzMTk5OTM1OTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk3MzEyODc0NjQwMDUzNDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"83c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.447Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTg3OTUyNDYyNzUwMjk3MjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjAzNjcwODk1ODM0MTk1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"536ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.423Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0ODA5NjU4NTk2MTU0NDcyNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"accfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDcyNzYwODk4MTYyODUyNTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDEzMjc1NjAzODc1ODYyNzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"86c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.45Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYzODY3NTQ2OTU4ODYzNzcyMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODAwNzI4MDIwMjAxNTU5MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"566ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.43Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTg3OTQzODY3MTM4NTM4NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"afcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTM3MDQxNDU0NDUwMDU0NTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3b11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzI2MjE1NjY2MDU2Njk0MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"89c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.453Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMwNTk1NzY5NDE3ODQ2MTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMxNTgyMjQzNjkzMTczMzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"596ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.437Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc0ODI0Nzg5NDQ0NTMxMjYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b2cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcyMjk1MDM1MzcwMzIwNzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3e11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1MDczNjM1OTY3NTUxMjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8cc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.46Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTY5NjI2ODkxMTY1MTEyMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzkwNjE4ODY0MjE3NTE5MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5c6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.447Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTgzODY4NTkwNzg0MDg4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b5cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzI2Nzg1NDczODczMzQ2MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4111da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTY1MDk3OTE1NzgzOTc0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8fc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.467Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY3OTk4ODAyODE1MTExODkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTgyMDE2MDQ3MjQ0Njc3MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5f6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.453Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NjE4NjAzODQyMTUyNDk0OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b8cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4MDA5NDI4OTA1OTM2MjU3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4411da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDc2MDY0NzU4NzM0MzMyMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"92c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.47Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2NzczNTIzNDY4OTcwODc5ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUwNDUxOTMzNDk1ODEzODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"626ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.46Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY0MjYwMDUwNjc3MzY0NTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bbcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM3NzMyODEyMzY4MTM1NjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4711da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODU3MDAxNzk0MTgxODM5NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"95c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.477Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg2MjQ0MTQyMDcwNTk3MjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7022da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTIyMzYyMjAxMjM2MTE4NTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"656ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.467Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTk1ODA4NTYwOTUzNjI5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"becfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTEzNjIwMzM1NDg2MTM3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4a11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjM1MjczNDQwODA4ODQ4NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"98c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.483Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTQwNDYzNDg2MDIwMTM1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7322da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM4NTMzNTM4MjYyNDEzNzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"686ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.473Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTcwMTg4MDA1OTgzOTA0MjYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c1cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDcyOTM3Mjk4MzYzMTgyMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4d11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODAxOTExNzg5MTE2MjMyODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9bc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.487Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk4NzUyOTg1Mzg1OTE0MzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7622da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY0NjgwODE0NjYxNjMxNTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6b6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.477Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkxMjI1MjY4NTc5NDE5MjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c4cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDA5MDYyOTg0MzkzMzE2ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5011da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzc0OTcwMTY3NzE2MjYzMjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.493Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMTQyMjIyODk5NzI1MjcxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7922da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Njk4Mzg4MzQ0NDEyMTE5OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6e6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.487Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzUyODkxNDM1MjAzMTA4NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c7cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDA4NTE0Mjg5MTEwMDcxMjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5311da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Nzc5MTk1MTY4NjIxNzE1NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a1c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.5Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDAxMTU2MzE1NDQ1MTc2MjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTQ1Njc2NDgwMjA2NTkxODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"716ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.493Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTcyNjM1OTA4MDkzNDExMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-11-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cacfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODQ2ODYzOTA2MTk0MDg2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5611da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTIzNzEzNDY3MjI5MzcyOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a4c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.507Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg5NzYxNzU0OTIyOTQ1Nzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxMzAxMTU3NjY4OTk0NDQyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"746ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.497Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY5MjI4MjkxMTA4MDY4MjExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cdcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQxNTQ0Nzk0NDc0Nzc5NjY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5911da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0ODkxMjA1MDcxMjc5NTkzMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a7c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.513Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc3NDA3MjExMjQwMDQ1MjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8222da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDU5OTU3NDQwMjYzOTM3MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"776ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.503Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk3NDkyNDc2ODQxODgzMTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d0cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDQwODY3NDQyOTc0MDU1MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY1OTI2NTA4MTE5ODgyNjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aac0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.517Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg5MDAyNjEzODY0MDg1MDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8522da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjE4MDgxNzk4MzA1ODkwNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7a6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.507Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg1MjQ2OTk0NjkzNzk2MDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d3cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODc0NjgxMzQ4OTU1NzM3NDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzYxMTQ4OTM1MDA2NDU2NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"adc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.52Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzY4MTE5NjAyODQzODU4NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8822da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE3ODg4OTkwMzgxMzkxNDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7d6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.513Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU4Njc4NjMzMzE3Nzk2NzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d6cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc5OTQzNTQ4MDc4MjQwMDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM1Mzg0MDU3NDc5NjI1NzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b0c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.527Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MjI4ODUxMzc5NTQzMTQ4NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTMxNjUzNTg5NjM2NjgxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"806ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.517Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTIxODY4NTQzNTAwNTAzOTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d9cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4MzA3NTc2MjcwNjA4OTY1NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2MDIwOTg4ODUwNzU3ODMxOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b3c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.533Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEwNjE5Njc0MzkxOTUwNzU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MzkzODA2NjQxMjAzNTM0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"836ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.527Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMjMyODc1MTUwOTQzNzMyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dccfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkyODE4ODAxNDU4ODk4MDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4Mjg5MjEwOTQyNjA3Njk2MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b6c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.537Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjEyMzMzOTYzOTA0OTA0MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzQyOTQ4NDExOTMyOTQ3MDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"866ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.533Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0NzAxMzc4Njk3NDY1NTY0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dfcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzExNDI1MjkwNzQxMjUwNzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDkwMzg5ODU5MzY2OTY3Mzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.543Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODA3OTkxNjU4MDgzODI4NzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDQ2MjkxOTAxNjk5MzIwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"896ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.54Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzAwMzM3NzA2NjYzMjAzMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e2cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDI1NzgzMzkzNDk1NTQ5NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjk2NDQ1NTM1OTcwMTg3MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bcc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.547Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTgxMzM0MDA3MTMyMzg5NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDg1ODU1NDE5NTEwNDUyMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8c6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.547Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA2NjkxMDkzNjQ5ODkwMjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e5cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE1MzUwMzM0NTE0MjU1NDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7111da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTU2MjQ2NDY0NDM2MDU0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bfc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.55Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTA0MzQ1OTI0MDgxNDA3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDQ4MDg0MDA4MTgxNDYzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8f6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.553Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDk3Njc3ODIzMTIyOTI5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e8cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxODcxNjQzMjMzNTM1ODU2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7411da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTYzOTU5MjYyODI2MzQ0NjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c2c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.557Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDA2ODU5Mzk2MTY0NTM1MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEwMDU2MTQyNDkzNDUxNTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"926ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.56Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODEwMjMwMzMzOTI0MTY1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ebcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI2MTg2NzQ0NDA0MDMyOTMyNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7711da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTUwNzYyOTk0ODM4NDkxMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c5c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.56Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwMzczOTk1NjQ1OTgwMTExNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a022da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:55.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:55.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM4NTI0ODY5ODY0NTk5NTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"956ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.57Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDg4MTM1MTYyMjQ0NzEzNjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eecfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQyOTU5NjAyMzM4MzYwMjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDc5MTI0MjQ5NDIzNDI3ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c8c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.563Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM2MzY1MzQ4Mjg1NzkxMTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a322da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODA4NDQ2NjYxNDMzNTk4MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"986ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.577Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjE0MTM1MDA0NzUxMzI1MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f1cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA1NTM3ODUxOTk1MTk3MjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYzMDk0NjUwODA4MzQzMjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cbc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.57Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU0NTY0ODQzMjg1OTYxNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a622da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg3OTE0NzYzNjU2NzA5NjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9b6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.587Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDkzMTg0NjA3ODY0MDI1MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f4cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTUyODE4MjE1NjA5NTgwMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8011da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzcxMjI0Mzk0MjY4ODM3NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.577Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTgzMDk3MDE4OTU5NDk3MTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a922da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjkzMTQyMzUxMzk3OTg0NzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9e6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.59Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NjY1NTg2Mjc4MjMxOTg3NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f7cfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDU3NzE3NTk5NTk1NTIxMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8311da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDg1NDIzMTcwMDk4ODMwMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d1c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.58Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTMzMzMzNDQwMDY0ODkyMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEwOTA4NTM0MDcxMjQ2NzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a16ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.597Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTg5ODM1NzY4Nzc4OTczMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"facfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI0MzE1NjU3MTM3MjgxOTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8611da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNzg4MDk0MDQwOTg3NzI5NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d4c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.583Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc2OTU5ODc2MjgxNjI1NjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAwNzQ2MzUwMTc2MTc1MDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a46ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.6Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5OTM0MjYwOTk1Njk5NTEyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fdcfca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MzQ3NjIxODg0NjExMTQ5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8911da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NTE2NTE0MzE5ODk3MzQ3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d7c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.59Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTExNDY1NzYxNDA3ODQ4ODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b222da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQxOTI2MjY2MDcwNDc4NTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a76ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.607Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE1MjY5Mzc3NDY2NTA3OTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"00d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwMTc4Nzc2NDYzOTE3NDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDM1MDkxODY5MDg0MTUwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dac0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.593Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjgzMjcyNjI4OTk0NDk2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b522da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU2ODA3NTcxOTk2NjY0Nzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aa6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.613Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTA2MzY4NjcwMjU1NzQ4NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"03d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTI3NjQ1MDk5NzQ4NDcxNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTM0OTIxODMyNjIzNzM2MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ddc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.6Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzY3Mzk4MzQ0NTY5NzI1MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b822da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjE4NzE4NTI3Mzc2NTIwNjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ad6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.617Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTQ3NTY1ODg2MjAxOTkyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"06d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc3MjgzNzI0MjkxNTYwODMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDEzMjQ3MjAwNTk0Njc5NjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e0c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.603Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzUyMDExMDA2ODAwNTgzMDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bb22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTgyMzQzMzI4MTEyNTQ1MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b06ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.623Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc3MTc1ODg2Nzk4MzgxMTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"09d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg2ODMzMDU4MjgwODczNDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM2NDA2OTYzMzA2MjUxMDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e3c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.607Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAwNjEyOTk0OTU5NzIwMTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"be22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MzQ4OTc2MDc0MzMzODQwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b36ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.63Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTU1OTE3OTc0MzAxMjA2NzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0cd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODcxMzAyOTk2MDUwOTY2NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTQxMjA1ODIxMzE1MjgwOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e6c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.613Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxOTE5MjA3ODMwMTIzOTE0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDA1NDM4MTY2NDIyNDQ3OTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b66ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.633Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM1MzYxOTQ1MTQ1MTg3ODczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0fd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzMyODg1OTM2MTUwNTkzMzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTk1NjMwNjEwMTU3MDE0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e9c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.617Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NjU2NTA0MzUzOTExMTg3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MDMzMjI2NDAwMjk5MjEyMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b96ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.64Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk0NTY2NTMyNTY2NTc2NDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"12d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTY5MzQ4MzYwNzEyOTcyMTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTIwMjI4NDc2MjkxNDczODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ecc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.623Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5NDgzMDk4Nzc3NTUxMDkyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg2MjI1NDk5NTQ0MDE2OTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bc6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.647Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEzMTg1NjQyMzgyMDE4MDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"15d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM3OTA4ODY3MDY4NjQ4ODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a111da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTI1MjU5NjU0MzQxNDQ0MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"efc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.627Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjQwMjQ3MjQzODk4MTgyMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ca22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjk4Mjc4MzU5NzkwMDM0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bf6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.653Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDAwNTc4Mjk0Mjc5ODkxNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"18d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI0NzY1MjgwMDAyMzIwMDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a411da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTM5MjM3ODM0MDcxMDA0NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f2c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.63Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMwMTI0NjQ1NjAxODI1OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cd22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjA5NDM0MjM5NjQxOTUwNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c26ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.66Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MjY4ODcxMjIzNzIwMzY1ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1bd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjA0OTAwODQ2MDAyNTY4OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a711da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjkyODkzMDQ2ODkzMjA1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f5c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.637Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzY4ODc1ODgyNTEzMzYzNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d022da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1ODI5NDcyMDg3NTIyODk2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c56ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.667Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTk2NDMzNDI1ODE2OTUwNDU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ed0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTYyNjgzNDI4NDY5OTk0NzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDQ3OTAwMDE3NzEyMTg1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f8c0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.64Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDA2MDE0OTMyMzg1ODQ5NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d322da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc0MDcxMDUzNjE5NjcyMjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c86ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.673Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk1NDc2OTU4ODY1NDY3NDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"21d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTMwMTM0NjM0NTUxNDgyNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDczMjkyMDk0MTQ4NzAxMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fbc0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.647Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU1OTI0MzM4MTE0MTcwMTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d622da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUxMDEyMjYxOTU3NzA4NTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cb6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.677Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ2OTkzMTc1MTU0NTA3Mjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"24d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzQ3NjQ0MTk0MDE5MDE0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b011da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTc2MjY1NzQ4MTIzNTA5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fec0e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.65Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjM0NDk0NTI5OTEyMjAwODA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d922da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDE5MDYwODU5MDYwMDU5MTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ce6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.687Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI3Nzg2MTg2MTc5NTQwMjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-12-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"27d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Njk5MDc3MDkyMjAwNTAwMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b311da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTE2MzA4MTk3MzA5OTQ0MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"01c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.653Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc1MDM3MTYxMzI5ODY4NDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dc22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM2NDEyOTc3MTMxMDIyNDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d16ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.693Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTQxNzkwNjE3NTU2NTU2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2ad0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAyNjMzMDA5MTEwOTAzMzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b611da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzIyMzM5MzAyMDg4OTUzNDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"04c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.66Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Njc0MjkyOTEyOTgwMDY3OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"df22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk5MTE4NzY3MTI5Mzk5MzE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d46ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.697Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTUwMTY1NDcxODk2MzY1NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2dd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzU2Mzk1MzAzMTc4NzMyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b911da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTMyMzc0NjMyODU3NjI1NjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"07c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.663Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTI3MDM3NjM4NTg3MjY2OTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e222da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjUyNjE4MDA1NjMxNTgzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d76ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.707Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ2MzAyMjIxNjUwMDYxMjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"30d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwNTM5MTQyNzM1MTk1MjkxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njk5MzY5ODI1NDU0MDI5Mzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.667Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMjI3NzU4MzM1ODU2MzUwNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e522da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4NTk3OTE1MjkxMDEzMTg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"da6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.71Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDYzOTk1MjM0Njc3NDYxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"33d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTEwMzEzMjE4MzA5MTM3ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA2NzU5NzgxNTYzNjQzMzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0dc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.67Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzMDUxMDYwMTA5ODIzNDQ1NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e822da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTI4MzQ4OTUxMDI1Nzg0NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dd6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.717Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg1NTc3MzA1OTI3MTk0NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"36d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQxODk5MzIzODUyMjc4OTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NTMyOTI1MDcwMzIzMDYxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"10c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.677Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ2ODQ5NDk0NDgzNTczMzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"eb22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY4MDQ1MjE0MjY5ODM4OTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e06ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.73Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDczOTAwMTA5NjkzNDM4NzUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"39d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM5NDM3MjMxMzAwMjc2MjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk0NjA4NDI0Mjk0NDUxNjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"13c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.68Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM1Mzk4NTU5MDA0NDY5MjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ee22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTYyMDM1ODg3NzYxNTEwNjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e36ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.74Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NTc0NDcxNDA2MDc4OTk5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3cd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDg0MjA5MzMyMzYyNjk3NjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTY0OTAyMzQ2MzQ4NTI5MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"16c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.683Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTgwNjUxODQ3NDE5NTcxOTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f122da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTUwMTM5OTk0NDc0NTU3NjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e66ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.76Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTQ2MzYyMDExNDE2NjUyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3fd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk3NDkxOTc5ODM5OTQ1MDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM5MDA0NTk0NjY3MjM0ODcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"19c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.687Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0MzUzNDAyNTg2MDkzODQ1OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f422da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTU3NTgwMDc1Nzg3NTUxNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e96ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.777Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjk3NDQ5ODAzNTA4NTgyMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"42d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE4Nzc2MzU3MzAyODIwNjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQwNTk2ODgwMTM2OTg0NDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1cc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.69Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxMzcyOTM4OTYyOTU5ODI2MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f722da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODU4NTc2NTQ5MDI0ODcyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ec6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.783Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ5NzQ2MDgwNTIwNTMxOTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"45d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNDMwNjM1NDM0MjIxMDYyNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d111da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTk0OTA1MTA5OTI2NzM0MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1fc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.697Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjQ0Mjc5MzI0NDQ4NDM1NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fa22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzEyMDA1Mjk2MzYyMzUwNTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ef6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.8Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ4Nzc2NzcyODcxMjc1NDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"48d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjUxMTc2NTQzMTM4ODUzMTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d411da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTMzMTczMzE1MDAxMDE2MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"22c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.703Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzIzMjA5NzkyMjc5Nzk2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fd22da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwNTYyMDA4MTMxNzUwMTc5MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f26ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.81Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NzAzMzA2NzE0MzYzMjcxNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4bd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTkwODM1MTU1MjQyMzE3MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d711da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjY5MjA2NDQ1NzQ3OTIwOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"25c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.707Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDk1MzA5MDAxMjY3MjI2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0023da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY0Njk1MTQ5OTg3NjI2NDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f56ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.827Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzQ0NjUzNjg4Nzk2MzM4NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ed0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAxNjA0ODQxNTk1MTEyNzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTk5OTU5ODgzODQ0MzM0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"28c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.71Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU2MjA1NDE5NzY0NDY3NzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0323da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODE2MDI4MTk4OTY0NjU1NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f86ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.833Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODg3NjE1NjQwNjE0OTA3OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"51d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgzMjczNTQ4MzI5NTAzNTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3Mjc4Nzk3NDc0ODA0NDc1OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2bc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.713Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjM0ODA3MTUzMjkyNTY5NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0623da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODcxOTA4MjgyMjk2MzkzNDgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fb6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.837Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjIzNDU2Nzc1NjAxMTUwMTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"54d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzczNjQxNTgwNzc3MDIzODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e011da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODU1MTk0OTgyNzIwODU2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ec1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.717Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTgzMTk0NDM2NzYwNzgxMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0923da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MTM1NTc2MTI4MTAzMjkzNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fe6ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.847Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ4NDU5NzExODM5ODE4MDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"57d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTI3Njc1NzkyODQyODYwNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e311da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2ODkxNDU1NzU2OTgwNjgwMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"31c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.723Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxODIxNDEwMTcwMzg0NTg3NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0c23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg5OTk5NTE2MTEzODY4MDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"016fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.85Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjQ5NjMwMjM1NDE5MTMzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ad0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDY0MTcxODA2NjU2NTI4Mzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e611da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzA0OTk1NTUzMDIwNzI0NjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"34c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.727Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDE0NzYyNjk2NjM3NzYzNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0f23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ0NTY5MjEyMDk1ODYzNzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"046fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.86Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxODUxODkwNTE3MzA0MDg0NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5dd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM4NjMzODkwMTYyMjU5MjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e911da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQzNzY4NTI1MTY1NDczOTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"37c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.73Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTQ4OTczMDA3MTQ0NDEwOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1223da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDEwMjA1NDQ4NTIwODQ1NDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"076fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.867Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MzM4OTkzMzY4NTY1ODY0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"60d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTQ3MDg3MTAyOTI4MjQ1MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk2Nzc0ODI5NTY1Nzc4Mzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.737Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE3MDA3NTA5ODM5ODQyNjg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1523da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjA2NzY1NTk0MjEzMzExOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0a6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.873Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDMyNzI4NTg0NDAzMzEzODg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"63d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjU4MzU2ODYwMTc5Nzc5ODg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODY0Mjc1MjA4ODYxMDEzMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3dc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.74Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQ2MzY0NjY5NDM1NjYwODg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1823da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTAyNTMxMTQ3NDE0MjQ4OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0d6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.877Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzYyMTY4MjAxNDI1MzY0NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"66d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxODc1OTg3MTk2NjY3NjI2MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f211da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODc0NDE1MjAyNTUwMTYyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"40c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.747Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkxNjQxNjcwMjQ5Mzc4MjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1b23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDU1MDYzMzI3NTQyOTUzNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"106fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.883Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgzNTE3MjUzMDkzNTgxNTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"69d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTU2Mjc0MTk4MjM5ODYzMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f511da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgxNjI4MjQ2NjQ2Mjg1ODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"43c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.757Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY2MjI2MDg4NDcyNzEwNDU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzA1MTc0OTEzMDg2NDA0NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"136fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.89Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzY3MTIwMzIwMjQwMDQ3MzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6cd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUyNDQzNTkyNTI0NjIyMjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f811da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjUzMzAzOTQxNzk3MjUxMTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"46c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.763Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjQzNjAzMTQzNzQ2MDYxODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2223da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ4ODMxNTM5NDEzOTIyOTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"166fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.897Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzE0OTA2ODQ2MzM3MzUwODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6fd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzYzMDI5MTUwMjM0Nzc2NzM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzc0NzQzODMwNTgzMzYxMTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"49c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.77Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTc5MjE5MjQxNDU2MTA4MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2523da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjcyMDQ2MzcyMDM2MDA5NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"196fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.907Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTcyMjgwODEwMTQ4ODY3OTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"72d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTMzMzE5NjcwNTMwMjExNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe11da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODgwNDgyMzAxMzgwMzc3MTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4cc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.773Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTQ2NTk4MTg2NTA1NTc1NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2823da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU0Njg3MzMzNjE1NDc3ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1c6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.913Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Njk4MzcyOTAxMjc2OTU2NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"75d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc4MjMwNTI0NTY3MTIwNjkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0112da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjcwNDUwMzY1MTI1OTU1Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4fc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.777Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NTU1MjM2NjUxODM0MTQ4MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzc3Mzg3OTk1MjAwMDc2NTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1f6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.917Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1MTIyMjYyODE5MzIzNzU5NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"78d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODQzODIxMTYyNjYyODQ2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0412da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTA3NDc3MTAxNzc5Mjg2MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"52c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.783Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDIwMTgyMDI0NzMzOTk2Mjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTk2NTk3NDM5MTA5MTcxNDU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"226fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.927Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDY5OTE3NTE5MDQ4NzI5MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7bd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzQzNjk2NzI4MDk5NDQwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0712da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcwOTEzNzk3NjQwNjE3OTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"55c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.787Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzY4NzY0MDk4MDYzMjM5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3123da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTI0Mzg0NTc3Mjg2Njc5NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"256fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.93Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzU0OTY2NDcxNDIzOTY0MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ed0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTMyNzM4Njg0NjczMjQwMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUzODU5NzY4ODUyNDYyMzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"58c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.79Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk1NjMzMDcxMTc0MTg3NDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3423da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjkzOTUyNDExNDY2NjcwMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"286fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.937Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgzMzUyOTgzNDIwODY2MzQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"81d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzg1NzQ0OTU1ODc5MTEzMzUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE1MTUwNDY2NDg2NzE3MTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5bc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.797Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY5MzI5NDM1Mjc2NDk4MjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3723da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjM4NjMwNDU4OTE0NDM5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2b6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.947Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjY3NjYwOTQ3NDgxMzA3MDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-01-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"84d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODEzODM0OTczNTcxMDQ1MzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1012da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTEwMjUyNTQ4MTcwNjQxMDgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ec1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.8Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTA0NjYxMjEzOTg4Njg2MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDYwOTM5NjM1NzU4NjgwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2e6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.95Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMTIxNzU3OTU4MDgyNzAyNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"87d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjIwMjMyNzQ4MDU3NDMzMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1312da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDY3NDAwNzgyMjM5MDg3NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"61c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.803Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTczMjQ2Mzg0OTE0MTE1NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDY4ODgxODIzOTU1NTQ4NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"316fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.957Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzI3MDM3MjU0NzcxMDQ4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ad0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMzOTM2OTkwNDMyMjk1NjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1612da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTYwNDY0MDQxODMwNzg5MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"64c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.81Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg3NTA4Njg0ODg1NTk3MjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4023da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MzE0MDczMTMzMTEwNDMyODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"346fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.963Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDI4NTYwODQyMTgxMTEzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8dd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE4NjE3NjEzMDE2ODY2ODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1912da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Njk3MTAwOTk5MTk3NzcyNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"67c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.813Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzQ3MzA2MzU3NDM2Mzc1MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4323da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2NjE4NjU3NzY5Mjc3MDg4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"376fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.967Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc2NDY1Mjg1NjgzNjI3NDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"90d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYwNjMyNzAyODY4ODAyNDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzYxODg3MTYzMTM5MTcyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.82Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTU4Mzc2NDM2MDA2MjEwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4623da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjUxMjU4NTEzMzEzMTk4MjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3a6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.973Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjQ4NTAyOTYwODU4OTEyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"93d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDYxMDg5MTM2NTE5MjQ4MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDMzMjM1NDQ0OTA0NjI0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6dc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.823Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzk4NzI2MzYxODE1NjU5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4923da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjgyODAxMzY3ODEyNjQ3NjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3d6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.987Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjkwNDExOTYyMzY1NDQ0MjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"96d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjQ2NzE0MzMxNDY0MDc1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzY1Njc2OTY0OTkyMDQwNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"70c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.83Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjcxMzMyODY3NzA2MzY2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjE4NDkwNTA3NDc4OTU5MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"406fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:03.993Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkzMDYyMTE1NTg2NzM4OTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"99d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE0MDQ4NDA0MjgyODQ5MzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzkwMjY1OTM4MzAzMTY4ODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"73c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.833Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyODcyNjExMDMwMTUzMzc0MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDg3MDU0NTk0MTU1NDgxNDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"436fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:03.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDU4NzE1NTc3NjI1MjAxODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9cd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU0OTI0MjYyMzQ4MDIxMjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY2NzYwOTU1NTk1MzgyMDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"76c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.837Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5ODk0ODEwMDU0MzU0NzI3NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5223da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg5Mzk4NTAwODg1MTkxMjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"466fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.003Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjE2NjE4ODAzMTk3NjY2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9fd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMjI3ODYxNjgwNDc2MTYwMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcxNjA2Mzc3MDk2NTY3OTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"79c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.843Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk4MzYyNDY1MzU3MTAxNDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5523da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMDczMDczMzQ4OTk4MTM2NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"496fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.01Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgzMzI3NDE4NjQyNzg4NzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a2d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU1MDc2MTI5MjE0MzU1NDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIwMTgzMTY0MjE1MjA5NDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7cc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.847Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTg2OTExODkxNjAxOTUzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5823da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5Nzg2NDExMzI4Nzc4NDM0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4c6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.017Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTk5NDk5NjM4NTg4OTY2MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a5d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgxOTI0OTgyMjgzOTgwOTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3112da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDg4Mzk5NzAwOTk0MzAyNDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7fc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.85Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNzAyMTc3MjE4Njg0MTI5OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b23da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTExMjE0MDUxMjE0NDE4NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4f6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.033Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjE0OTExNDc1NzIyMzMzNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a8d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDQ0ODkxMTE3MzcyNjI0NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3412da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyMTUzNTQ1MDQ5MjUxNzY4ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.853Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTY1ODgxNjQ3NDczMzI4MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"285ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI2MDcyODg2NDkyNDM2Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"526fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.04Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTMxNTE2OTk5MDE3ODMxMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"abd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI4MjkxMzg3MzMzNzE2NDU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3712da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc1NTU5MzMzMjcwNzQ1OTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"85c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.857Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjAzOTU0NDAzNTY2ODU3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk0MzIyNTg5NzUzOTgyNTU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"556fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.047Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg2Nzk2MzM5MjEyNzU2NjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aed0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODM3OTkzNDU4MTUzMTk5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI2NjMzNTE1MjU3NDQ2NTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"88c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.863Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxOTY1NzEzMDk2MjIxODI4NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDgwMTA5NTEwOTMzMDIzMjIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"586fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.053Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODMzODkxOTE5ODcwNzM3NTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b1d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMDYzNjkyNTg1NzM5MzQyNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDkyNzQzNjg0OTc5MTg2MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8bc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.867Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU5MjkzMzg1NzM5MDcwNjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"315ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODAzMTMwMTU3MjgyNjU3NjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5b6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.057Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM5NjkwMTQzNTg2Njk0MzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b4d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ3MjgzMTIzODI5OTE1MzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4012da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzE5MzIyOTU2Nzk4NTIwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ec1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.87Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDIyODg2NzAzODgwMjQ5NDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"345ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjcyNzkxNjczMTYwNTY3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5e6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.063Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTk0MTQ3Nzc1MzQyOTU4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b7d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDk4MTAzMjE1OTE5MTkwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4312da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTUxOTcxNDI3NjQ5NDQ4NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"91c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.877Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTU3NTU1OTU3NjI4NjI5ODE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"375ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU2MTcxOTgyNTY3NDMxMTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"616fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.07Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODIwMTYzMjA1MzM1OTE4NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bad0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjQwODc5NDA3NjQwNDk1NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4612da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzM3NzIzNDYwMTQ4ODgzNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"94c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.88Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjI5NTI4NzgxNTk1NDUzNzkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MjA1NzM3MjY5NDgyNzU4OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"646fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.08Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODY1ODg2NjExMTY3NTc1MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bdd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxMTMzNzczMTYyNjI5OTM5MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4912da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDU2OTQ0OTg3MjEwNzE3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"97c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.883Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkxNDY4NzA0ODgyMjEyMTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzE5OTAxNjcxODI0NjQ5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"676fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.083Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDIxNzI3NzY5MTQ3MTI2MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c0d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDEzMjYxNzMwMjI1MzQ5NjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE2NTE3MDkzMDIxNjkxNTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.887Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg1NjcyMjE3NjYyMzYyMjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"415ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDU5NDA5Mzk2MjIyMTQ0NTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6a6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.09Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk2ODY2MjA3OTYxNzM1MTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c3d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDIzMzU4NDQxNDc2MjUxMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDI2MzU5MDkwNDIyMTMwNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9dc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.893Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODUyOTA5NzcwMzE4MzMxOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"445ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDI2MzQ5NzY0NzE4MDU0MzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6d6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.097Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDIzNTY3NjgyMTQzNjI4MTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c6d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:12.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:12.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI0MjE4Nzg5MjQ4NTI4MTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjA1NjU1MTIxNTIwNjA2MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a0c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.897Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjUyNTM3ODg1NTMzMjIzMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"485ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg2MTM4OTMzMzk5NjEwNTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"706fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.1Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ2NTQ4MjU0NTYzMzg3Mjg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c9d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODk3MTc0OTE2MDQ4NzMyODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDI1MjgyNjc1NTM4ODE1OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a3c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.9Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTYzNzg5NzM1MTI4MDExNTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4b5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDM0NzE3NDE4OTEwMjUyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"736fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.11Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA4MjMxOTEwNTQwODkwMTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ccd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ1ODcyODg5MDU5NDIwOTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgzODEzMjU5MDU2NzA4OTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a6c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.91Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTk2NjUzOTc0MTU2MDYzOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4e5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUyMjkyMDQ1Nzg2NDQ0OTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"766fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.12Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTczMzMzMjM3MTEyMTE2MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cfd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE0MDcyMjI0MzE3MzI4MDE1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwMjYyNDUwOTkzNzk3OTExOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a9c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.917Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwODQ2NDMyNTY1NjIyNjgwMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"515ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzczODUzNTE0MjQzMzE3MDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"796fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.127Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk0MjYxNTYxMDAyODU3MTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d2d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjcxMzU0OTI0ODQzMDU1NzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDEzNzMyMzg0NzExMzQ3MzY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"acc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.92Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTU2NDk0OTQyNDk0NzExNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"545ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTM3NTA3NTYyNjU4MjU3NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7c6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.133Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM5OTY2MTIyODM4MDE0MjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d5d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTE4MzkxODIxNjIyMDAxODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjMxOTQwNTIwMzY1NTY2NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"afc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.923Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjU4MzE5NDE4NzY1ODkwOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"575ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjMxOTE3MTU2OTAxMDExODA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7f6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.137Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDExMDkyNDEwMjQ0NDUxNzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-02-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d8d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkzOTc1NzY4ODI4NDgyMzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDAyNDQ4NzUxMzkzMDIyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b2c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.927Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk1NzM3NTMzNDg0NjY3MTEwMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5a5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTcyOTk1ODA4MzMzNTY5OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"826fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.14Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzODk4MTI2MTQ0ODY2NjM0MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dbd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkwNjYxNTY4ODQyMzc4NDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDQ5MzkxMTA0MTYzOTMzOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b5c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.93Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDkwMjc0MTA0MzMwMDA2NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5d5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzgwOTUxOTcyODQyNDAyNDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"856fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.147Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNDAxMzYxNDY2OTk3MjIzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ded0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMzMTA2MDY3NDExNzcxMzY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM1ODY5MjMzNjg0MjQyNDYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b8c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.933Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjUxOTc2NzM1MDEyMDE0MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"605ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ1NjkzOTUyMDczMTc0MzkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"886fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.157Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk0MTc3MDQzMDEzNzcxMDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e1d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMxNzE2MDc3NzEyNTMwOTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTI0OTk2NjQzNjc0NDk2MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bbc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.937Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjgyNjk4OTIxNzM4NzA4MzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"635ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODYwMTY2NzczNDA5NDgxMDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8b6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.16Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExODE1ODQ2NjEyNDEzOTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e4d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI5NjQ2NjMxMTk5OTY5NTc5OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7112da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjYwNDAzNjE1OTIzMjIwODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bec1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.94Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDQyMzUwNjMzNjAwODQyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"665ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYyMzkxOTg1NjI1OTYwOTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8e6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.163Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI3ODEyOTc0NDU1MzU1ODY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e7d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MjY1NTc3MjQxODg4MTY1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7412da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODYwNTQyMDAzNjg1NTY1ODE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c1c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.947Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDM2OTk1MjY2NDQ5NDYxNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"695ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTk5NTM0MTIyODYzODc2NzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"916fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.17Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTE3MDgwNjQ4NzE0MzU5MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ead0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTUyNDMwMzgxMDE2NjI4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7712da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjA5MTA2NTYzMDYxODgzMTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c4c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.95Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDMwODg5ODg1MTY1OTIzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6c5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTM1NDE4NjUyNDc5NjM5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"946fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.18Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcyMTY3NTk0MDA0NjM4MTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"edd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDE4NjQwMjAzMTYwMDA4OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODU1NTE4NjYxMzQwNjk0NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c7c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.957Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjQxMTc3MDUxNTM4NTE0MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6f5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTM3MDIyOTk0NzYyMzg1NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"976fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.183Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTczMzc1MTkwNDk1MzY1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f0d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzE5OTgwMTQxNTM5MjE5MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDg2ODkwMzQwMjE5NDI0MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.96Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU3NTQ4MjE3NDEzODAzMDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"725ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyMDE1MTg3NzIyMDIwNjE0NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9a6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.193Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTIwNjU5MTEyNjE5MDI0NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f3d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTczMzc5MzM3MDAzNDgyMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8012da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTUwMDQ5MjkxNzQ2MzU4NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.963Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTc0NzUyMTA2OTk1ODc1ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"755ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODAwOTM1ODY2ODQ2Nzg4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9d6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.197Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NTQ4NDg4MTg0NDAzMTg2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f6d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA2NDc1OTIyODUyNjY3MTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8312da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjE4NjExODYyMjUwNDM1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.97Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTExNDYzMzY0NDA0ODY2MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"785ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU5Mjg2NDMwNDk4MjYxNTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a06fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.203Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MzgwNjgxMzgzNjg3MDAwNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f9d0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE2NjMyOTExMDE3NjEwNDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8612da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NzE5NDMyMzQ2NjMzODgwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.973Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjcxNTk2MjMzOTcxMzYwOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7b5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODg4NTcwODI5NzIyODUwNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a36fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.21Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODUwOTY5ODQyMTkyMTUyMzE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fcd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODIwMzcwOTgwODQ1MzU2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8912da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4MzE0NjQ5MDY5ODUyMTg5NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.98Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc1MDY1MzM4NTQyODA1NTYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7e5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI5NTc0NTMyMzA1MTkyMDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a66fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.213Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDQ5NzE3MDU3OTAwNTc3MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ffd0ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY5Njc3NDU0NDI0MDkzNDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzUwODAyNjI2MDI1MjIyODUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.983Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDIzODc5NjcyNDIwNDA4MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"815ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODYwNTQxMjAwMjc4NDkxMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a96fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.22Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM2NDc4OTQwMzA3Mzk4NDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"02d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA1NDY3MDE0OTg1ODcxODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzc4MTMxNzY5OTQ2OTQxNjQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dcc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.987Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzMyMTk2MzgzMjEzODAxODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"845ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg1MTI4NjQ4MjgyNzE2OTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ac6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.227Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzY3Njc0MjU5OTg2MTAzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"05d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTY2MjcwMzc5MTQ3ODAxMTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODk0Mjk2ODkyOTY5NzU1MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.993Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTgyMDgwNjg0MzA0MjI3NDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"875ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTkxMDc4NTk0MzEwNDQ2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"af6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.23Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTc2OTMwOTMyNDg4NzM0NzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"08d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODU4ODQ2OTE3ODQ0MDgzMjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5OTA0OTI0NTc3MDMxODYyMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:40.997Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:40.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODMwMjgwODM5NjY4ODU3OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8a5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDg2MDYxODEwMTM3MjI3NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b26fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.237Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjUwODkzOTUxNTE5NjMyMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0bd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjQyOTM1ODY1MjE0NjA4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjQ1Mzg1ODA1Mzc4OTUwNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY5OTQ0ODU1NjIxNzc4ODQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8d5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjI0NTU5NDM0NjUyMTI0NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b56fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.24Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDkzNjkwNzA3MzkwNTY4MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ed1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDc1Njc4MTU1MzA4ODcwNTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NjQ4NDE3OTA1MzYxMTUxMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.007Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTMyNjgzMjQzNjY1NjA3NTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"905ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODI2ODgzMzM1NzYxMDk1NDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b86fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.243Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjQ4NzY0OTQxMzUzNDc5MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"11d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQwMzcyMzA2NTE1OTQxNzkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMDY4Nzk5MTE2OTIzODkzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.01Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc1NjcyNzk1MjMzNzQwOTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"935ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzA4NjQwMzAyOTMyNDg1ODQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bb6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.247Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjU2MDg1ODg4MzQzMjMxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"14d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY4OTYyNzAzNzE2ODQ2ODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a112da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDIxMjYzMDEyMTkwODAyNjI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eec1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.017Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDE2MjkwMzg4MTQ2Mzk2OTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"965ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjIyMDQ4NTY0OTI1MjQ0NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"be6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.253Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgwODM5NTQxMDIwMzg2MDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"17d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NDgyNTIyNjMxNjk2ODk2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a412da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI5NjY2NTcxNjY0NTY4NDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.02Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTc5MzEwMDk1OTExNzk2OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"995ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDEwMjE4MTUyMjUxMjc0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c16fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.263Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU5NjkyODA3ODg2ODcxMzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ad1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODA3MDUwMDk2MTE1NDQ4NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a712da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwODIxMDgyNjg1NjM5OTgyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.023Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTgxNTk2NzE2MDIwMjU3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9c5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTkzMzMzODIwNTM0ODAyNDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c46fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.267Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ3MDY1NTY3Nzk1ODg0NzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1dd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTgzOTY4NTgyOTQ4MDY4NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU5NjQyNjU2OTc3MzcxMDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7c1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.03Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU3NjExNTA2ODY4NzkxNTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9f5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODcwOTc4MjAwNjM2MzY5MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c76fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.273Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM4MDI5MjcwMDczNDY5NTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"20d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk0MjQ0MDk2NzI2OTA4Mjg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODkwMzA4OTYwMzcxMzcwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fac1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.033Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTkyMzE2NzY5MzAwODE3NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a25ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Njk1NzkxMDM0MjY5NjMzMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ca6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.277Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg4NzY3MTEwMDg0ODUwMzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"23d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ2NTkzNTg2NDEwNTQ3MzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b012da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE4NjE0OTY4MDE0NjAzODg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdc1e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.037Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTkyNTEzMjg0NTU4MjE3MTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a55ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA2NTEyMDQyMTI5NzYyNjUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cd6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.283Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzkzNDk1NzEzNjU2NTU1NjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"26d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzNjY0MzM3MzQ0NzEzNjA0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b312da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NjMwODM3MjAyMTgxOTM1MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.04Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODU3MjU1NDgxODg1MDQ0MTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a85ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjQ5NjYyNjY3NDI5OTgyMTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d06fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.29Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTE5NjczNTI2NTI4NDc4MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"29d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTQ1NDk4NzcwMjM1Mzg3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b612da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTc4OTE2NzMxMDIxMjAzODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.047Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDk4MzE1MjYwNzkwOTc3MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ab5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1MDIzNDgxNTY4NzA3MzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d36fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.297Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDc3MjMyMjI1Nzg4NDU3OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2cd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk2NTY5OTgyMTgzMTI2MDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b912da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTgwMzEzODIwMjAyODI2NTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.05Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDcyMTgxNjQyMDY4MTQ5NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ae5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQyNzE5MDYzODQyODg3Nzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d66fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.303Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjU2MzI5MTMwNDQ1ODI5OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2fd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjEwMjcxMDc0MjkzNjAxNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODQxNzgxNzE4NzQyMzc1MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.057Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODE2MDIyNjcxNjk3NDY5ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b15ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzY4NTA4MTM2NzQ1NTQ2MzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d96fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.307Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMTgyMDM4MDk0MTU2NDkyMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"32d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzUwOTMxMjY4OTk5OTE3MjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTY4NTY3MzA3MTMzMjMyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0cc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.067Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTE5MDYxNDc2NzE3ODU0Nzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b45ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMwMjg3MjY1NDU4MTc5NTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dc6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.31Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzkwMTA5NjczMDQ3MjkwOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-03-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"35d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE3NjI3MzMwNzk5MjUwODYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTIzMzk2MDYwMTk4NDQ2MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.07Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMyMDc3MDg2OTk4NDQ5NjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b75ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzUyODI4ODM1NDA3NzY5NzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"df6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.317Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTg1MzkwMDg5NDk4MjY5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"38d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAxOTAwMDc5NzAwNzIxMzg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDUwNDIxNjg3OTgzOTgyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTY0NTk1MTc2ODI2NDgyNTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ba5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODEwNjg4MzE2NzMzNzU0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e26fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjU3Mjg3NDYwNDcwNTYxNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3bd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg3NzAxNzE2ODcwOTEzNzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYyNDE4OTY0NDc4NjA5MDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDcxNTQxNTE2MzI2NDU0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bd5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ0MzUwNTM5MTg4NDA5MDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e56fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwOTA0ODE2NjkyNjM0NjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ed1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODQ5ODA0MTIyMzMxNDQ5NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYxOTcwOTQ3ODc4Mzc0MDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjIyNTUyMjYxOTY2Mjk0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c05ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDEyMzU3MjI2NzczMTA2NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e86fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Njk5OTgwMzI3MjYwOTE5MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"41d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDUzMzE1MTM5NzI3NTE1NjY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDA4NDA5ODE0NDU4MzI2MDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3Mzg3NDAzODM2MTI3OTc5NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c35ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODY5Mzg3MDU4NjM4NjI3NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eb6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ0MzQwMDY2NjQwMjY1NTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"44d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTMxNzA5OTQ0Mjk0MDQ4MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d112da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDA0MDMxNzg5ODQ5MjY5NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ec2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDIwMTYwNDk5MTA0NzQ2NzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c65ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0MzkxNTEyMjY0NDE3ODc5MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ee6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYwNzk2NDcwMjYwMDYxMDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"47d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MDA4OTQzNTY1NzAwMjM4NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d412da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDI4NjE3NzQ5MjUxNTA3MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDczMzgzOTEyNTM2MDcwMTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c95ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTk0OTg3MTE5NzU1MDE4NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f16fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMzI4NzE2MTc4NDc4NDU3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ad1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDA0MzUyODY5MzY1MDcxMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d712da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTYwNTM5NjY0NzY1MTc0MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzAzMTk2OTE1ODY4MTQ0NTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cc5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgxMzQxNzE2NzEwMzkyNTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f46fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc5NzIzOTEwNTc1NjgzODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4dd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA0MzI1Nzc2NTcyMDY0Mzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTM5MDY4ODEyNzAyMzIwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ3MzgzNTAwNTE0MTgzNTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTk2MTIxNTUyNDAxNTU0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f76fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjI1OTE3MTgwNjA4MDMwODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"50d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzM4NDg3OTM4NTgzOTMxMzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjAzMTk1NjMzNzg1NDQzMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ac2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjEyNjEzMjg0MTgwMDQzMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d25ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk3ODg2NzAyNjI2MTI1MDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fa6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NDM5ODQ5MzM4MTI0NDU0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"53d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTAwNjk0MjE0MjEzNDgxODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e012da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDE1OTIxNzYxODA0ODI2NTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIwMzM2ODE4NjUyMDU1NjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d55ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk3MzUzOTcxOTI0MTA5MzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fd6fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE0NjczOTk5MzcxMzIzODA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"56d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1ODUwNDQyNDEzNDAyNjYyNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e312da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTg3NzUxNjg5MzY5NjE4NDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDE5MTIxOTcyOTcxMzI2MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d85ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjQxMDU5MTM5NjAyNzU1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTEwODcyMjc1ODc5MDAyMDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"59d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE0MDMwOTM4NzUyNDYzNjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e612da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE4NzQ0MjAzNDQwMDM3Mjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgzMjgyNTI1ODcwMzg3MDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzU3MTMzOTEzNTY5OTUzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQwMTgwMTIzNDA0MTEyMzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5cd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NzA4MzA2ODAwNTc5MDc2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e912da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDA3NjY0OTQ0MDUxMzIyMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA2MTU5MDkzNDIxNDU0MTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTEwNzkzNDk5ODY5MDE3OTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ1NTM3MTI4MjQ3NjU1NDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5fd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY2NjI0Mjk3MDk5OTU5NDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MTEwNzI1MjkxNTYyOTU4NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDgzNzM0MjczNTY3NjM1NjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e15ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDk1NDQxODI4NDg2MjE0NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTg2OTgyODA2OTE3NDg4MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"62d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxMTc2NDQ5NjUxMTg1NjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjc1NzQ5OTYwMDYyMTU2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3cc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDgzMjkwNTM4OTMwODAwOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e45ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMyOTEwMzY2MzQwNTgwODM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0c70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNDYyODc0MTQ0NzA5NjMwOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"65d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTg4NzU3MjA5NzUzMDU2MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f212da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTQ5MzU3MzQwNjAwNDMyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDc5ODc4NDM0NDk2MjQxMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e75ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg2NTIyOTM0MTY2ODAxNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0f70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMzczMDUyNTc2MjI2MjkyMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"68d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA2MDg2MTE4MDk4MTM0OTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f512da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Mjk3NjM4Nzg4NTYyNDc3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA1NDk0ODcwODQ3ODM5MTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODc4OTgzNzkyNDM1OTA2NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1270d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM0OTAzNjQ0NjQ4NjM0NDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6bd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzgwNTYxNzkxNTY5NjQ0ODY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f812da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjA4MTM5NjM2OTc5Mzk1NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjcwNTY5NzM1Nzk0ODI5NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjcxMjYzMDcxNzU0NjIwMDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1570d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjYyNjIwNjQzNTY5NTM0NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6ed1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk2MzM3NzQ5ODg0MDk5MjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzc2MDI4NzI3NDk3NTMwNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzM5Mzc0NzgyNTM5MTE4NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f05ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM0OTIyNDk3OTY1MzkwMjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1870d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTMwMzE3OTM4NTU5MTEzMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"71d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDA0MzQ4OTY3NDYyNTk0NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe12da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjczMjE2OTU3MzQ2OTMwMzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDEwMDU2NzIyMzE3MDgwMDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f35ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTA4MzcyMDczODk2NDgzMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1b70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDQ4MjQyNTg5NDg5NDU0OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"74d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzYwOTgzNDU1NjQ2NzQ0NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU3NzI1OTIyNjg4MTAzNjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ec2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAyNDA0NTY2NDQ3MjE5MjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f65ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg4NDY1OTI5OTI1MTE4MTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1e70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTg5MzgzNTA2MzM0MTMzNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"77d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTYxNTA5MDg5OTg4NDc4MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzI1NDEzOTI2MjI5MjAxOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjcwNzU1MDk0NDMzMzc4Njc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f95ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjA3MTI3NjIwMTE5MDA0MTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2170d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQxODg5MTQwNTkyMDgyNDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ad1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzYzNzU2NTgxNzQ3MDA0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTA0MzM0MTI4MzMwOTI2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTQwMDc1NjE1MTk4MDAyNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTYxMzgzOTkzMDY1MDMyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2470d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTQ2NjY5NTYwMTIzMTgyODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7dd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTI1MTcyNzkwMzY5NDI0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc5MjU5NjA5ODIxMTQ3MzQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzIwNjI1OTU5MDI4NDA5MTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff5ed262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYwNDk5MjE5MzcwNjcxNTQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2770d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk5MzY1NTY2MDYyMzk3NjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"80d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTQyNjAyMDEwMDE0OTY1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODIyMjE2MzI0NTEzMjk3NjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ac2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzkwNzg2MDQwMjI4NjIwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"025fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTQ4MDE1NTM3OTI0MTE3OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2a70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODM5ODgyNTY2NzQ2NTE3MjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"83d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDE4NTAxMjU2NjcyMjg5NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1013da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDczMDY2NzM0NjY0MjY3MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTM1MjAxNDY5MjU4OTc0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"055fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA3OTYxODgyNTU0ODI4NTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2d70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDkwNTQyNjU1MDkwMzYzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"86d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwODI2ODQwMTY2OTAyNjU4MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1313da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTIwMzM3OTI3NTg3ODM0NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzIyNjM0NTYyNTc5NDM3NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"085fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTc0MDYwMDk3NTIwNTYyNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc1MTQwNTE5NTQwODU5NzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"89d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTE0MjcyMDg2MzEwMjE4MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1613da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Mjk1MTU0Njg5NjU5MjU4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTM3MjgwODMwMDM0OTEzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc0MDU2OTM1Njc4ODM3MzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1MTMzNTMxNDI3MDcxMjIyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8cd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDUzNTMwMzk5Nzk2MDUzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1913da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:48.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:48.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA3NzM4MzU4NDU3NjY4MjU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTM2MDg3MTU4MTgzMTgzNDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc0MTQ1OTY3OTQ1NDE5MTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMyNjE0MTQ3MTg2MzEwMTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-04-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8fd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ1MjIxMTUyNTk4NDAwMTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzIyNDE3NTE5MTA3MDYwNDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ0NTM5MjMwNjMzOTc3ODIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"115fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzY1MTE4MjEzODkwODIzMzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE4ODY5NjM5NzAxMDQzNDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"93d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA0MzA0MTQyNzIyNTM5NjQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzEyOTAyMzM0NzQyMzc4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6cc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjAyMTMxOTQ0ODM1MzQwMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"145fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc0MzU3MTY4MDUzMjA0MjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3c70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjk4MzA2MjcxMzY1Njk3NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"96d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE5NTgwOTE3Mjg3MzQ4NTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2213da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDUwODI2MDEzNzk2ODIwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjkyNjE3MTA2MjI1MjA1MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"175fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk4MzU4MTAxMTMxNDMyNjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3f70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MjExNzc2MDI2NjYyNDUwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"99d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjI0MzI0NTc5NzkyNDA4NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2513da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE0ODIyOTE5Nzg4MjE2MjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDU2NzAxNTA3ODI5Mzg5ODYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkzNDg0NDUxMTM2NDU5ODY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4270d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjY1ODk4NzAxMTYwNzgwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9cd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTEzMjMyMDI0NDYzNDgwMjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2813da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI5OTUxNDI0NDg3NTEyNjg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDkzNDc3MTAyMTI5OTg2Mzg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ1ODU2NzUwODkzNDUzODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4570d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzM0OTgxNDY4NzA4NDg4ODY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9fd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDc5MDc4MjY0MjIzNDYzMzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjQwNDEzODc1MzUzNjk4NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTU2MTYzOTA4OTQ2MzY4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"205fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MjYwMjY1NTcyNTEyNjY0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4870d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ3MDc5OTkyNDM0MTE3MDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a2d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzE5NjUyMjIzOTcwMDMyODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDI4OTY2Mjk2MjM2ODIwMzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjM0OTkyOTAxMDg0OTcwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"235fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTE2MzgyOTI0ODM3MjYxMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4b70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDk2MDgwNDU2MzE5MTk5MDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a5d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Mzg5OTY2MjI2Mjk2NTQyNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NzYzODA0NTQwOTY2MDc4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ec2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY4NzE1MjA2OTMwNjY0MTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"265fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA4NjM4NDU2OTUwNzE4ODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4e70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg1NjIwMTI3MzMzNzQ1NzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a8d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTc2OTIwMzMwODc3MzQ1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA4NTcwNzE4MDM2ODkxMTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjI1ODgyNDk3Nzk4NjUxMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"295fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE4Njc1ODYzMTc1MzEwNTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5170d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg2MzU2MTE5OTE2NDU4NTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"abd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDUxMjk2Mjc1MTkxODEyMDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTkxMzMyNzYyMTAzOTY1Mjc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODMyMDUxNTk3NzEzNzgyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk4NDg3MjE0ODQyOTE2ODgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5470d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDgxMjc0Njk1MDg4NDA0OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aed1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njk2NzU3ODg0NTQyNzQwMzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYxMDY4NTQwODIyNTMyMDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ0NzMxMjM2MjQzNjA0MzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYzMDk2MDczODMzNTQzOTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5770d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI2OTU4MjMyNTk3MDkyMDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b1d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDg5OTc4OTgzNDY2NzI2NTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjYyNjA5OTc0MDU0NjEyNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ac2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA1ODE3OTc0NzAyMDE1MjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"325fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDA0ODExOTQ4NjE3OTIyOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5a70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTE1NDgzNDU5OTQ1ODQwODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b4d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUwNzQ5MTA4OTE2MzAwNDQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4013da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk4MDc0OTcxOTEwMTIxNzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY4NDA5Mzk1OTUxMTA5ODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"355fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzQ3OTg3NDkwNTQzNDcxMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5d70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDM3MTE4NTYxMDk4NTkzOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b7d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTI2MjYwNTkyOTgwNjQ0NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4313da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjIyODI0OTkyNTg1NjQxMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODc5MTQ4Mjc3Nzg5NzU3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"385fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzc0MDkyMTcxNTIyNDg2MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjMzMzgzMDMyOTA0Mzg0MzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bad1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjU3OTk3NzY3MDMxNTU1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4613da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4MTczNTUxNjE3MjcxMjMzMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMzMjY5ODI5MjcyNDEyOTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODEwMDY4OTk3MTQzMjg1OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5OTgyMzY2MTA0MjI3NTEyMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bdd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQwMzg0NDUxMTUwMjI4NDU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4913da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzAzMjk2MTIxOTA2NTQzNTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3OTM1NjQ5NDgzMDg4NjkzNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzA3MDkzMjg3NDEwMTUxMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTIxNjg2MTczNjk5MTQ5ODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c0d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQxNzk3MDIzOTkyMTU0MDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzA4MDk2MzY4MDc5NjA3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDQwMjc4NTUwMTYzODgyODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"415fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NjM1MDUxMzgyNTMzMjcyOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODk5NjY3MDkxNjUxODE0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c3d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTc4OTA5MTQ4Mzg1MzUzMTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUwMzA1MjY2OTc4NzMzNzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9cc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzk4NTIyNDAzNTY4Nzg1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"445fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI4NDcxMzA3NDk1MTUyOTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6c70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDczNTAwMDg1NTMzMzY0MzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c6d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTMxODAyNjAyMjMwMzExNzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5213da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTY4ODY1MTA5MDUzNDI1NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTY5Nzk1NzU1NDY0NzA1NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"475fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODExNzY0NjE1ODM5NjEyNzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6f70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODExNzg4MjA3MDQ4OTc5MTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c9d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc0OTEyOTQyMjM0MDc0MzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5513da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjE5MTcxNjYwNzkyNzY2MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDgzMjczNzg2OTc1NjExMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE0MTQ0MzQzMTAxMTc4NjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7270d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0ODAxODg2NzE3MTQ1MTYzMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ccd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc5NjQ0NTg4ODMzNTg4NDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5813da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4NjM2NjY3ODYyODc2MjYwOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzkzMDc5MTAwNzYzNjc0NTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODY5NjMzNTg5NTM3ODYzNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7570d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTQ0NDQwNTM0MDE0MTY2MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cfd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQxMjc0NjcwNDU4MjgxMzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5b13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQxODg2MTQxNDQ3OTYwOTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzQ3OTgyOTEzMjMyMDE3MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"505fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDgyNzQ3ODI2NDQ2NTE5MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7870d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA5OTQ5MDkwMTY0ODE4NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d2d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDM1NjkwNzMxNjg0Nzc4MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5e13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg5NzI2ODg4MzY2NjA1NDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ3ODkzMjU1MTYxNjk3NDYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"535fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODA0MDMyMDgzMTU1MTQwNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7b70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTQxODgxNTQzOTQyMDQ0MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d5d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0MjQ2Njk3NjczMzUxMDI3NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODkxNDQwODgwMzkyNDgwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aec2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODYyNjYxMzE1MTg4NTc2MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"565fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTE4MDkyODQzMzMyNTQzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7e70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzk2OTQ3NzI0NDYzNTE4MzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d8d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDkzMDA5NjM0MDE5OTU2NTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTE3MzQ0ODIzNzM5MDk5ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjY4ODA3NzM5MTUyNjExOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"595fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzk1NDg4MDg5NDAwMjM0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8170d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4ODYyNDc3NjYzNjg3MDQ2MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dbd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODUxNjQ0NDkwNTAwNzcxNDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTEzOTExNzk5MTk4MjE5NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTY1MzkxNjQ1MTc0NjI3ODczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTYwNjU5MTI2NzYyNjcyMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8470d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDUyMjMxMzI0MzAxNjAxODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ded1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzYxODgxOTc4OTc1MDE1OTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6a13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTgwMDUyMTQ1NDY4NjEyNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MzQ3NzE4Mzk5NTg1OTI1MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU3NDI5NzM2MTYwNzA4MTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8770d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MzU1MDAwMTg0NDkzNzMwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e1d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTAxMjc0OTQ4NDYwMzE1MzA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6d13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxODY5NDAzMTA3NTMxODU5MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bac2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTAyMDk2Mzg3MTc2NzEyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"625fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2NzMzNTA2NzQyNzc2MjU0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8a70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTczMjkxNTAxNjkyNDY3MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e4d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAwMDE4ODA4NTY4NzQzNjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7013da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzUxNDI4NDQxMDg4NDY3Mjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTg4ODY2Mzg0NzcyOTk1MzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"655fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDEyODEyNjI4MzQzMjY1OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8d70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQwNDQxNDQyNDUwMjEwNjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e7d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNzc3NzgyMzQ4NDE1MjI2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7313da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjUwMTYxMTI4NDI2MzE2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NzEyMjQ5MTU5OTcyNTgwODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"685fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzIxMTk1MDEzODEzOTg1MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTIwMDcyMTUyMDQ2ODIzMjczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ead1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDUzNTM2ODkwMDYwMTQzODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7613da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE1ODU5NzYyMzU0OTY2NDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjQ2NTY5NjMyNDY3NDI1OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA0MDQ3MDkwMTI5NzUzNDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU5MDAzNjM3MDQyMjAyNjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-05-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"edd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMzgxNDY4NjE1NTk4Nzg5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7913da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5Nzc1NzgzODc0MjUyMDU4MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI3ODEyNDkyODAwODE3MTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ5MDk1NTM3OTQyOTk3NzM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE3NDY3MDI0NDg3MDc1NzM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f0d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTUyOTI0MjcwMzU2Mzc1OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7c13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYyNDg3NTcxMDgzMTk0MDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTE1MTMwOTkyMjM0MDM5NjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"715fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDc0NzcwOTY2NzI5NDkyMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjcyMTM4MjU2MDMyOTgwMzY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f3d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDQ0MjkxNTM2MDk5MTMwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7f13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTE4NzA2ODIwNjE4NTE2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ccc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjI3OTUxMjAyNDgxOTEwOTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"745fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODg4MjgwMTI2MTgzNzM0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9c70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjI4MjQzODI0MzUwMzk5ODU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f6d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQzNDA5MDQ5NzA0NzM2MTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8213da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTMxMjk1Mzg3MDk0NDMzMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzcyNzkzMzkzNzAyODc2OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"775fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg5OTI4NTczNDYwOTk3MzgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9f70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTIzODUyODQ3MDI3MDM3MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f9d1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzUyMjEwNzc4MDA3Nzc0OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8513da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk1ODEwNTI4Mzc0MTM2NTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ1NDU0NDc4NDIzMDA5MzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA2MTQwMDY1MDI3OTk1NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a270d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODA4NzU3MDgwNDQxMDU4MDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fcd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMTk2NjcxOTg0NzEwNDk3ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8813da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDAwOTg5MDk3MTAzNDc4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjMzNzE4OTE3OTc2ODUzMDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU5MTA0NDg3OTYzMjAzMDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a570d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMwNjg5MzgyMjAwMTE4Mjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ffd1ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ2MTg5OTQwNzEyMTYxMjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8b13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDEyMjU0Mzc5OTMxOTg3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg5MjcxNTgxMTQ5MTY4MDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"805fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc3MDQxNzA2MTEzNjU0NjczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a870d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU5MDc1ODU3OTgzNDAyODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"02d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU2OTI4OTMxOTEwMTE1MzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8e13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMjk3MTkzMDM2Njk0OTM3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDMwMjE0OTkxNDAyMDU5ODQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"835fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzk3Mjg2NzM5MDYyMjAyODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ab70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDIyOTkyNjY5MjI5OTg0NjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"05d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMzc0NTE1MjYyOTQ0MzE2MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMjQwNDA4NTQxNDM4NDQ2MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dec2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQ4MjgzODQ5NzE1NjUzMDQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"865fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQxODgyNDU1NjcyMzE5MzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ae70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzI2OTk3MjkwOTE1NzQ4OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"08d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDkyNDM5Mjk0NDgyNjY5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzkwMzY5MTExOTk2NTA3MDY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDk5NjczNjgxODI0OTE2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"895fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjY2OTU1MjIzMjI0NDk1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b170d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjAzOTY5MDMzODA4MTQxMzQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0bd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk4NTM5NDE1NzM1NzEwNTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI4MjcxNjU3MDU2NjY3MDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjUxNTM4NDk4ODU2NzIwODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1NTM3MDI0MTE1MTM1NDA1MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b470d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjI3MzE4MzE5ODQ2MDY3ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ed2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzExMTE4MzI1MDU3NTQ1ODEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9a13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUyMjk1NjA0MTAxNzEwMTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzQ5ODIwNTIwNjQ2MTMxMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDAwNjU3ODU2NDA1Mjc2OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b770d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDM3MjY2MzI3NDkzNjAzOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"11d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDcxNTUzNjQyNDk2MDQxNTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9d13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE1NzE3ODUzMzYzNjg0MzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eac2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ1MDY1OTIxMjkwNDM5MjIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"925fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTgxODEzNTA4MjE2MzI3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ba70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MzE4MzQwMzcxNjE3MjI0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"14d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDMyNDk2MjEyMjAyODcyODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a013da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDEyNjY4NjY5MjMwNzE2MjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY2NTMwNTQ4MDM1OTg2ODQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"955fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzc0MzE1NTUwNjQxMjQzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bd70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU0ODc1OTcxMTQ0OTkwNTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"17d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTcwODUyNTY4Mzc2NDcwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a313da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEyMjY1MjY1MTA1MTI1NDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTkxMDU3NTIzNTAyMzE5MDQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"985fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYyMTUwMDc3Nzk0MzIwMjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI2MjM5NDcxMzE4OTc3MDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODU5MTk2NzU0ODAxNTIzOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a613da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTUxMDI3OTE4ODk4NzcxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjM1NDM4MjU2ODA3ODYzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTQ4MjY1MzQ0MTIyNTU4NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTgxODE1NDA1Njk1NTI2OTg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1dd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTEwODI1MjU0NjI1MTUwMjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a913da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NDAwMTI1NDc0MTg1OTMxNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk5NTI4ODA5ODQ2MjI1NDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjYwMTA5OTIzMzE3ODYzOTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTQ4MjgyNTA2MjgyNjEwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"20d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MjY3NjMyMzU4NzE2OTI4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ac13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4ODExMDA0MTQ1MTI3OTA3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9c2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0NDIwNjQ4OTIxNzA1MDIxMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a15fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzI0NDg5OTAwOTU4OTY4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzMjgwOTY4NTQ0NzA5MjQ2NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"23d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzYyMjI2ODExNzkxNTE4NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"af13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDA5ODIyNzk3ODY0ODgyOTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fcc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU1Njk3MzQxODg2ODM5NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a45fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY0NjQyNDY1NzgwMDI2NTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cc70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjIzOTc0OTQ3MDA1MzMzNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"26d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDM3ODE5OTA1NTA0NTM5MDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b213da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzkzNTU1NTUzNDE0Mzg3ODEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffc2e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjE3MjE2MzE1NjIwMDAwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a75fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk1MTY0NTU5NTE1MDg0ODI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cf70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ0MTQ2NzIzOTQ1MzQ5OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"29d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg5ODUxNDQzMTUxMTI1NjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b513da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYwOTk4ODQ3NjI1MTQzNTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwMjMyNjcxMjE4Mzk1NzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDQyMDI0MTk1MzI1NjE0MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d270d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjY3NTI5ODcwNTkzNjEyMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2cd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTMwMzYzNjU5MTcyOTAxNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b813da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDE2MDExNTUyMTQ1MTczMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzUyNDY5MzAwMTQxMTQwMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzkyNjA1NTQ5Nzc1OTM1NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d570d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjU2MzMxOTQ5NTcxMTUxMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2fd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDYyMjQ0MTg4NDgzMjc2ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bb13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE5NDU2MTExMDU5MjY1NTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTUzNTY2NTk5NjY0NTg5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b05fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTI0MjI3MTM4MjAyMjM0NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d870d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE2ODk0MzQwMDg4ODY1MDY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"32d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTY4MTE3MTQ5MDQ3MTI1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"be13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjY5ODIzMTg2NzE0MjQ1NTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjE5MjA4NzQ2NTgxNjEyNDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b35fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ3OTI0ODY3MDYzNjcwMDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"db70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTc3MjYwNTA0MTkzNzA2MjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"35d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTU4MTkwNzQ1MzI0OTE2MDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzIyOTcyMDk0NTI1NjE2MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2Nzg3MzU2MzYxNzE2MzIwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b65fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTY3NTI2MDUxMTkwMTM1NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"de70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTA5MDE1MDU3NzYzNDQ3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"38d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTc5NjY3NTEyMzU1NjgzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYzNTgxODk2MjQ0OTAyNjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ0ODc5NzE2NTExNDgyMjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b95fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQzMjU1NTQ2NjAwNjQwMzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e170d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTEwNTU4NjkwNDA0MDY3MjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3bd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE2MDc5Mzc0MzM4MTY0NTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgwMjI0NjkwODAzMjQ4MjQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTM4NDc1MzY2NTMwODE2NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI4NjkyMjY5MTg4MTIwMjE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e470d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgwNDQ3MjcxODczOTcyMDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ed2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTc3NDIxMjI5MDUyNDYyMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ca13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODgwMDUxMjc4ODU0ODM1ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTU4MzExNTIwMDAxOTA1MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDE1NTI5OTczMjQ3MzEwMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e770d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMTk4NjgzNjU0MjM0MjE5OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"41d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzE5NjM3NDMzNTAyNzE4MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cd13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDc4MTM1NzY2MDY5ODE3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ac3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTcwMTQ4NDM2NTA2Mzg0ODA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c25fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Njg1ODkwODQyNDEyMDMzNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ea70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDkwMTAwMjA3MDY0NzE5NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"44d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzc1NzgzNzIyNzAyMDYyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d013da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzgyMzgxNjI5MDEzMzg3OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzUzNDU2MDIzNDY3MDEzMzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c55fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzEzNjQ5NzE1MDE4OTUwOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ed70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODk0MDIyNDMzNzU2MTExNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-06-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"47d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDUzMDgzODIwNzkxMDkzNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d313da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MzU3MjMwNzUzODUyNTMwNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg3ODg2NDQ2Mzg0ODY1ODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c85fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjk4NTYzMDI5NDA2MDIxNDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f070d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQzODY3MzE2Njg5MzcxOTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4NTU0MzA5NTc5MDY1ODYxODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d613da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg5OTU4NDQwMTQ1NDExNzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4Mzk2NDYxMjQ5NzY5MTY1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzg2MjgxNzY5MjQ3MTI2MjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f370d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg5MzI4NjAyMTM3ODgyMDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4dd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMzNTc5NzE5NDQ1MzQ2MzU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d913da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzk4Nzc4ODQxODg3MzI0MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODk4NTE1MjA4NDM3NDY2ODkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjk0NzMwOTUxMjk3NDQ4MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f670d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzY4Nzg0Nzg5NTAzMzM2OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"51d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIwNTIwMDMyODYyMzc3MjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dc13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTQ5NjI1NjUxMTUzNzIwNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjIxMDYzNTg3NzI1MTg2NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d15fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDMzNDQyOTcwOTYxMTM5NDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f970d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU3MzgxOTM3MTk3NzgxODI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"54d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTI0MjkxMTI1MDI2NzAzMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"df13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTczMDIyNTIwMjUyNDczMzI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2cc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTA4OTY3NjY0NzE2MjEyMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d45fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTI0NDc3NTg4ODc4MTM1MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fc70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODE0NjExMTczOTg2ODM1ODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"57d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAzODQ4NTMxNTAyOTQ2NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e213da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzUwNTE4ODM5ODk4Mzk5NTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2fc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjM1NDczNDExNDQ2NTA0MzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d75fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzI0ODQ5ODQxNTUzMjIyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ff70d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjM3MjQ4MzkwMDAyOTE0NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ2MDk1MzYzNTYwNTY0NDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e513da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3Mzc5NDQyMTU1MjExMzY4ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"32c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTE0MTQwMDc4NjI5NjQ4Mjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc1OTkwODM2NjMyNzIwNDEzMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3ODEzMjMzMjMxMzUxMDY0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5dd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjIzMTM4NTA5NjI2ODc4MTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e813da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTk4MDM4MzM0MDE2NjE4OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"35c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY3MjQ3MjI0MDc5MjUyNzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mzg4MjIyNzk5NzEzMTk0MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2Njg5ODgxNjQ4Mjc2MzQzNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"60d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDg5OTk1ODU5NzY0Mzg5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"eb13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDk3ODI1MjUyOTcwODc4MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"38c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDYzNjk5NDI0MTcxOTcwOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e05fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyNTYzOTgyNDY3NzI1MjIxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTEzOTQwNDY3NTQ2NDA0MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"63d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0Nzg2NDU1NzU3NTU3MjU4MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ee13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzQyNTQwOTMxNDA0MDE1NjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3bc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjYzMDU5OTQzMTg2OTEyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e35fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTc4MjkyNjk4OTUzNDI2OTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0b71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkzMDYwNTkzNDI2NDk3MTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"66d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc5NjQxMzQ5OTQ0MDgyNDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f113da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjM5ODI2NjY3MTU3NzUzNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzk4MTUwNDExMzkzODYyOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e65fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NTI3MjU0MTczNzkzOTg2NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0e71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjQ1MzYxNDU4MDUyODc0NTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"69d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzU4OTU1NDAwMDM0MzQzNzQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f413da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA5MzgxMTgwNzYzODUzMjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"41c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NTQ0MjEzMTA4NTI3NTg5NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e95fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUyMTgzNzU5NzI1NTI3NDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1171d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2MTQxMjY5ODg4MDU0OTc1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6cd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTMxODEyMTk5MTk0NzI2NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f713da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDA4NzY4Njc5MDYxMDUyMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"44c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MjEwNjY4ODcyODkyMTkzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTgzODgxODI0NTQwNzAzNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1471d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDc4OTE2MjA1NjA4MTczNDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6fd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODM5MjY4Njk3MDI3MTc5NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fa13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzM1Mzc2NjEyMzI5MDMwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"47c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzUwNzE0NzU3MTE5ODMzNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NTcwMjgwMjE2ODQ3MjE3NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1771d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTQ2MzMxMTQ0NjYzNjMzMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"72d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDgzMDc0NTE5NDA0NDg3NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fd13da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzQ5MDQ4OTMxNzU3NzUzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ac3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkzMjUxNjg0MzIyODI0OTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f25fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzY1OTE2MzUxMDg4Mjc0NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1a71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjA4NTk2NjQ2NjU3MTcxOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"75d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM2MDMyMDI0NDc5MjI4MDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0014da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDE1NDgyOTE0NTc5NjM5NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4dc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ5NjUzMTM0MTc1NTUwODg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f55fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzM2NTExMTExOTYwMjk2NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1d71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzkwMzQ3MzY4NzYzNjE1ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"78d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc2OTc3OTk4Mzk0NDI5MDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0314da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMwMzM3ODQ2OTg0Njk1NzMzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"50c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNjMxNTM2MDM1MDcxMDE4OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f85fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDUxODIzMzQ3MDE0ODg2MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2071d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA3MjE2MDA2MTIxNTc0NDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7bd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjUyNzQ4OTAwMzQ5Nzg1NzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0614da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA4Nzc4OTkxMzk1NzczMjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"53c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzMzNDAwNzU4OTc0NjQ5NjA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2ODEyOTgzMDQ3MjUzMjQ2NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2371d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyNzQ1MzA3MDY2NTYxOTk0MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ed2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTY1NDc2ODY2NzY5OTc0NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0914da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjI2NDI4MTczNjUyMTE0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"56c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjg1MjUxMDc3MzQ0NTE3MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe5fd262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjg5NzI5MDk1NTA5ODQzNDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2671d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ3OTUyNjM5MzM0ODY1NjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"81d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTYyMjU2MzY0MDY2ODg0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTYxMDA3NjcwMzQxMDUxNjg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"59c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExMjgyNDA3MjA4MTE0MTI4OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0160d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzkzNzQ5ODc0MzUyMDcxOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2971d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE5MjczNjk5OTE3MDE4NTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"84d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU2MTI4MzMzNDI3NjgxNDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MDMyNzUzODUzNDcyNjMxMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5cc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzkzNDA1MjAwMTczNjI3NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0460d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjcxNjQ1MDg1NTIyNjcxMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2c71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExOTM0OTMzNzQ3MjEwMTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"87d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzExNTUzMDQwMTgxMTgzNDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1214da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU3NzczMTIyMTI1NzY4MTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5fc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzQ2NDQyNTA0NjE2ODg1ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0760d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyMDk1MTIxMjE5ODAwMTAwNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2f71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE2NDU2MzYzNTMxMjg2MDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTk2NDQzMDMyNzM3NDcxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1514da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NzQ4NjU1ODE1OTYwODg2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"62c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDE5Mzc5NTQ5OTc4Mjc4MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODY4NTc4Nzk2ODIxOTk0NDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTAwNzUzNzc2NzQ4OTE0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8dd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDc4NzI2NTUyMjg4MjM2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1814da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDQ4Njc0MjY4MzU2NTM4OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"65c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTEzNzc2MDU2MTIyMjk5OTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MTAzOTA1ODQ0Mzk5Mzc2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODc4NzkwNDk3NzIyMTg0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"90d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA2NDE2MzQyMTAxNDk2NjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTM0MTE5ODk1Mjg2MzgwODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"68c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk5OTU3OTI3OTc4Mzc1MDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1060d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:56.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:56.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTA4NTExMzExMDM2ODUyNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTQ1MjEyOTY4NzM3ODU1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"93d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NzQzODc2NTM2NTc1MTc3ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc1NzI5OTAyODM1MjM5MDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6bc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk1MzcwMjM1ODU1MTM3MjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1360d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDA1OTE5NTMwOTA5MDYxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3b71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDYyNTYzMjEyNjYwNzM5NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"97d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTU5MjY5MzU1NTIxNTQxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzAxMzYyNzIzMjUxMTAzNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NTE3NTU4Mjg3MTMzMzg4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1660d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0ODYwODgwOTcxNDY1MDI5MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3e71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:04.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzc2NTUxOTYxOTIxOTM3Njg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjgyMDU0Mjg1OTIxMzc2NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg1MDU5ODk4OTYxNjY5Mjk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"71c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDc2NjM1NzIwMzMzMjE1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY1MDY3NDk1MzE3MzI1NzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4171d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:04.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDY3NTE2ODUwODEzNTg3OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ1ODU3MDY4OTY4NDkzMzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc3ODQzNDI0MTkxMDE5MTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"74c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjUzMjgxNDA2NDY5MzY1MTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDg4ODg0ODIyMjI3NzU1OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4471d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjQ4MTA4NTk0Nzc4OTMyODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc5NTAwNjAwNTAyOTMwNDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxOTg1Mzk3MTQ0Nzc5ODc4NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"77c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTg4MDk2ODQxNjI4NDc3ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODgwMTc2MTIyNzU5NDE3MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4771d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE1ODUxNDI2OTk1MDIxNTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:13.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:13.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTgzODU0NDcxODAzMTExODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjcxNzU5NjYwNDkzNDI4Njg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ac3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzAyOTEyODAwNDU3MDQ1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NjY1OTAxMzY0NjUyMzkxMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4a71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjQ2NzIwNDQzOTAxNDUzMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-07-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njc5MzY0MjExMzEzOTYxNzI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3014da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODc3MTY1MTg0MDQ1NDU4NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7dc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM2MzA0OTI1MTE5OTU5MTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ0OTIyNTI3Njc3ODA4NDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4d71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMDEzNDU3MDAxOTYzNjk2NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTkzMzYwMTgzMTk2MzMzODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3314da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzc5OTM1ODE2NDY1MTkzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"80c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzE5MjEzNzM5OTcxNjI1NDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2860d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTg0Njg1OTYzOTk3NDcwMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5071d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzU0NjQxNDc2NzE5MjMyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"acd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ1MTY1NTgxNzczODEyNzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3614da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzg2Nzg2NjAwMzcwMzQzNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"83c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzAxNTMwNzczMDU1MzIwNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAwODIzMzY0MDA1MTIwMzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5371d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTI3NDA2MTg5NDExNTk0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"afd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUyMzAzNjA3NjYzMzY5MDQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3914da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA1NzQ0NzY3MzkzNDM1MzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"86c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDU4MDQ0NzQ3NzExNzkwMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDE1NTAwOTQwNTU5NTIwODA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5671d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTA0NTU1OTA2NzIwODI5MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b2d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ0NTMzMjg1MTg3OTExODU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODMzMzEzNDkzNDQzNjEyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"89c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDMxMDA1NTczNDkyMDE1NDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3160d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNDIyNzc0NDkzMjMyNzA5MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5971d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIxODg5Mjg0OTQxMTYxMTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b5d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzAxOTA1NDA2ODc3ODE0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDExMTM4NjkwMzg1NDk0NTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8cc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ3NTE2NTU3NTEzNTg2OTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3460d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjg1MjAxMjk2MjgzNDc4OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5c71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDAwNDEwNTA3NTUwNDAzODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b8d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDg4NDY4NTcxMTY3MjM2NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4214da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU3MjkzNDQ0ODYzODU2MjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8fc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAzMzE3MjI3OTAzNTEwMjcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3760d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQxNDQ5NDAyMjQwMDkxNjgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5f71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzUzOTAyNDMzNzUwNDMwNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bbd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTEwMzg2NzgzMjI1NDYxNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4514da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTUwMTcwOTA2NTU0NTU2MzQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"92c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzczODIzNDE2NjQ0NTI3OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjExMzM5MTY1MjY4ODA0ODczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzM3OTUyMDMxMTI1MjkxNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bed2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTIwMTMwNDYzNDQ1ODIwNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4814da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTMwNzkyMDM5Mzg5NzQ0MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"95c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjk5MTE1NjE5MDkxNTQyNzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA5NzUwMjQ0ODAyMzY4MDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjExODc1NTIxMTY0MTAzNjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c1d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQyNjIxNzM4Mjg1ODA5Mjk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDkyNTI3MDc1MDk1OTU5NzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"98c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM5NTY5NDExMTgzNjQxNjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4060d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA5MTk4MTE1OTU5MzUzMjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0Njk4MTEwMTAxNjI0NzE0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c4d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NzUxMjI3MDA3NjY0NDQ5MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3NTUwMjA0Mzc5MjI5MzQ4ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9bc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODYyMTg4NjY5NDU2OTc1OTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4360d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODQxOTk2MzA0Njc1OTczNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6b71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjMwNzkzMjQxNjcxOTg5MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c7d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ5NjIzNjExNTEyNzE5NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk2MTMxNzc0MDUxNzY2MzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjEwNDQxMjU5ODQxNTAzNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4660d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTYxODU0NDgxODc4NzM3NzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6e71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDk3MjQ2NzQzMzU5MjM0NzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODA1Mjk1ODIzMTIxOTI5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjQ2MDk4NjkyNDYzMTg2MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a1c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTM5NjA2MTMzNzE3NzUzMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTg2MjkxNzAyMjk0NzE2NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7171d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTYxNTIxMjY0NjY5NjM2MDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cdd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk0MTYyNDEyNzc5NjMwNDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk0MDIzOTE4NzcwODIyMDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a4c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTY3NzA2OTQ2NjgxMjM3MTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjMxMDYzMzAxOTE0MjY4ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7471d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzgxNjcyNzUxNjYyMzIwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d0d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY3NjA3NzkyNzg5MTI5MDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzcwOTU0NDQwNTQzOTMzMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a7c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjYzMTM1Mzc4MjU2NzU0ODcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTgyNjY4NTMzNzkxOTk1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7771d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjA3OTgxODQ0MzQwOTI4NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d3d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyOTk2NTQyNDg1MTA0MjM1ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQ1MTYzODc2MTIzMzg5NDA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aac3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ3MTAwOTM5NjE4OTQ4MTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDg1MTc4NDgwMzgxMjQ2MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7a71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MTc2MTgwOTA2MDg1NzgwMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d6d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyNjc5MTUyNjA0MzAyOTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6014da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzM3MjA0NTY3OTkxNjMyMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"adc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgzNjYxNjc2NzE5NzQ5NTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTUwMDI2OTIzNzE1NDg1MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7d71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzUxMDkyMTg0NTI0NjEyNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d9d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0OTE1MjIwODYwMjkxNDY5MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6314da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI4MzQ5NTgxOTc4MzU4ODMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b0c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODA2MjM0NTE1OTY4MjM0ODM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5860d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzcyNzE2NDUwOTA0NDY2NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8071d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzc2MjQ2OTExNTI5NjQ2MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dcd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIxODM0NjE5NzI5OTYxNjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6614da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk3NDA2NjEzNTIxOTczMzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b3c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDAyNjM2NzE1MDg5MzAyNjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDE2NzI3Mzk2MjQ2MzEzNzc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8371d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYwMTc5NTgzODE1MDA5ODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dfd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyNDMxMzMxMjU3NjQ2MjM0NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6914da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTk3NDY0ODE2MzYxMTc5NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b6c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTEzMzY4NzgyNDE2NzIxNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDk0MDIxODI4Mzg5Njg0NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8671d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDM3MTU2ODAxNDU5NDY0NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e2d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDU1NDc5NDQ5MDU3NTIxMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6c14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODQ2Njg5NjcyOTM1NDUyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjcwMTIxMTg0MzUzOTg2MzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6160d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjIwNjg0OTc5NDEwNzgwMDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8971d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDc5MzIwODc1OTI2MTAyMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e5d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTg5OTk0ODA2NTMzNzM3ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6f14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDg4OTc1MTQ1NTI5OTYzNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bcc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg2NzU4MDA1NDY1MTM0OTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6460d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTUwMzAzNDU3NDgzNDAwNDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8c71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMTM2Njc4MjE4MjQxMzM5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e8d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM1NDU4MTUxODU5NTI3NzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7214da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODAwMzkxNTY2NTczODkwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bfc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MDMyMjQ1ODM4NTY3MDY4NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6760d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3ODgxNDUxMzkzNjI0NTQ1ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8f71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDAzNzY1NjQ0MTgxNDA2NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ebd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA2MzczODk0OTExMzgxMzQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7514da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODEwNDY2MzI2MjkwMTk5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c2c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYzMTI0NjQ1MTY5MTIyMjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODY5OTU3NjMzMjQ4NjYxNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTUyNDcwODgxMzAyMzAxMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eed2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU3MjQ2Njg0ODQzODA3NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7814da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzgyMTY4NzY0NzYyMjM3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c5c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2NTcxNjE4MjIyNzgwNTI1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE2OTkxMjc4OTY1OTQ5ODYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYxNjA2ODE0MjA0OTc3NTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f1d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcyMDM0NDk0NTQzNzQxMzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7b14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODg3ODMyNzY0NDM4MDQzMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c8c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODUwMTkwNTgxNjI5NDM3ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7060d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1NDA4ODgwMzEzNDQ0MDQ3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjczMzg3MDA3MzA1NDYxMDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f4d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MjQwNjY2NTE2Njg1NDM0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7e14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ5OTA1Njg4MzU5NDgyNzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cbc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Mzg4MDM4ODUwNDkwNTE5NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7360d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAyOTk0OTcwNTYyODM4NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9b71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI1MzQxMjQxMjc5MTcxMTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f7d2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTMxNDk0MDM1ODYyMDA4MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDIzMDc4NzQ1NTU4ODI0ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 7,\n            \"bookingsAssignedRoom\": 7,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUzNTc5Mjg5NTAzODUxNTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7660d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODkzMjcwODU1NTEyMTM5MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9e71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxMzgzNjE1MzIzMDExNzU0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fad2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTM2Mjc3MDAzNTQ5OTEwNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNDI0NDgzODc0ODE2NTA5NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d1c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODE5NTY5MTcwOTE2Njk5NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDg1OTY3NTI3NjQyMjE3MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a171d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTkzOTQyNTEzMTE1ODIwODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fdd2ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg2NDE5MjA3Mzc4MTMxMTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxMTkzNTE3MjQ3NDU4Nzc5NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d4c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 2,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 1,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTMzMjE2OTI1OTU2NzY0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIzMzIwMzI1MjUxNDExNTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a471d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3Mjg5MzgyNjU5MDc2NzE3NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"00d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2NjIxNTM5ODY3OTM5MzQyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8a14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDkzMTc1MDYwMjQ1OTkwMDY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d7c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 5,\n            \"bookingsAssignedRoom\": 4,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjQ0NjQyMTA1Mjc2NzEwNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTczNTY0OTk1NDIxOTc0NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a771d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkyOTg2NzM0NDc3MjQ2NTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-08-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"03d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDc1OTMxMzgyNDQ4OTU3ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8d14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDIzNDA0OTYyNTE4NDgyNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dac3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 2,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 1,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTg2MjczODI1NjYwNjU0NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODcxNzU2NTc1MDkyNzM2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aa71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzU0MDU0NTI3MDMzMjI0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"06d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjEyNTE2MTc5OTU3NjE3NDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9014da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzM5NTQ3NTk1MDIxMjY3NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ddc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 3,\n            \"bookingsAssignedRoom\": 3,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDE1MzMwNjIyMTk2MDMyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ4MzExMDI1OTUxMDYxMDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ad71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTAyNTk1NjQzOTU4OTYxMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"09d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MzY3MDUyMjI0MzI1NzU1MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9314da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjcxMzAzOTA2NzkzNzcwMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e0c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 2,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 1,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQxNjE3Mzc0NTA2NzkxMTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8860d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM2MDg3MDkyMjMxODkzMjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b071d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU5ODAyMTAyMjM2ODMxOTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0cd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk3MDc5OTY0NDcxNDcwNDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9614da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjEzMjM2NTEwMDYwMTkyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e3c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 2,\n            \"bookingsAssignedRoom\": 2,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 1,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjA1NDc3MjkzMTIxMzI4MjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Njc2Mzk4OTg0MjkyMDA1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b371d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjc2NDM0NzkyMjUyNTU0NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0fd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDc0MTgwMTI3NTEyMjAyMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9914da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MzY5Mjk4OTE5OTUyMzg4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e6c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODk3NTYyMTc4NTgwNjE1ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDg1NzA1MjczMzUzMDMzMDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b671d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjEzMjMxOTk2MzkyNzgwNTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"12d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDU1ODkxODM0NTk1OTY2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9c14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY5NTI4MTc0MzY4MzU0ODUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e9c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzY3MjExODcxNDk4ODk4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9160d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjY1MzQ2MTkyMzUxNTI5MDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b971d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxOTM4OTAyMjI4NzQzOTgyODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"15d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDU2MjQ1NDI1NTIzNzY5NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9f14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTY2ODQ1NjEzMzkxNzIxMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ecc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Mzg0NDQyOTE0MDczNjU3NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9460d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzgxOTIyNjc0ODYzMzkyNjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bc71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTY1ODk5ODM4MTQ0NTg1MzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"18d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTkxNDUyMjQyMjIyNjE5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a214da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTgyMDMzMzgzMTE2MDY1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"efc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQyMTEyOTI1OTI1NDcyMTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9760d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzI0MjczNDI4OTU4NDc3ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bf71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTc1NzM1MDQ5OTQ3ODMzNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1bd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDIyOTkwODY4MDIxNzQ2NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a514da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDU2MDcxMDg5MDk2MzczNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f2c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODM0ODM4Nzc1MDM1MTk1OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTgzNjkxODQzNTUzNjM3NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzYwODc2MjQwMTQ3MzQzMTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1ed3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0NjI1MDU2MzA5OTEwMDUyMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a814da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA3ODAxNTAxMzc2OTYwOTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f5c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzgwNTExMDc4MjU5MDU5ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNzE2OTA5MjgwMTIwNTcxMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDA2NzQ2Mzg1MzA5MjYxODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"21d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MjI4Mzg3NTEyODIwMjAzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ab14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODIyNDcyMjU3ODk3NDA0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f8c3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg2MjgwNzQzNTYxMjAzMzIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a060d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODkyODUyMzkxNTEzMzQ1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDAxNjAyMjUzNjMyMjQ3NjM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"24d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyNzgyODI2MDcyNzIwNzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ae14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMzMjAxODU4OTE0MjMzOTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fbc3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODk4MDc0MzU4NDQyNTYxNTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a360d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTAxMTE0NDg1OTIxNjc2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cb71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTkwNjQ3MjgxNDY5NjQwNTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"27d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ4OTcwNDc5ODg2MTQ3NjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA4NDE2MTk1MDIyNjkwNzgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fec3e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU4MTE1NDE1NjczOTg3NjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a660d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk4NTIxMDY5ODE2MTE2NTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ce71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDU3NDQwMjg3MzI3Nzg3OTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2ad3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDczNjg2Mjg2OTgyMTI1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDgzOTU1NDYxMDM2OTg3NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"01c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTAxNzI3NzI3NjY1MTI2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NTM1NTExNDg2ODYzMzM3ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d171d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjkwNzEyNzE3MDg1NDA5MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2dd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDIxNjIxMDUyMzIwODE4MjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDk0NjExMDE3ODk5MjU1MjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"04c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTgyNDczNDczNTI2NTU1ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzMxMjQ5MDkyMzI0ODc1NDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d471d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5ODQxMzc3MzYyODkzMjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"30d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExMDU0NzcwMzkzMDgzMjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ba14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQ4ODc4MDk0ODE2NTQ0Njk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"07c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc3ODEwMjA4MzE1MzU5ODM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDIzNzk0MDU1OTkzODc2MzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d771d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODU1MzAzMjkzODY4NzE4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"33d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTI3OTI0MTQzNjE1MTgyMTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bd14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTE0MzE0MzM4NDUzOTUyODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDEyMDAwMTkwMzY3Nzc4NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzkxMDE5NjMzODczNTM0Njk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"da71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODczMTAyODU2MzExODMxMjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"36d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI2NjkwNjM1ODk1Nzg4MjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NzQ0NzYwOTM2MjQ1NjcyNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0dc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzI4ODI2ODU2Njg0NTUzNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzI1NzE1MjczMDI4NTkzOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dd71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0Njk3NTk5Mzc4NDQ1NjkwMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"39d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDc3NTc5NTQ2NTg1MjUwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM4OTg2MjU0NDA0ODQzMzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"10c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE5NjQ2NTAyNDM0ODE3ODk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b860d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDE3NTkyNDI0MjkyMTA1MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e071d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjk4MDI0NjMyMzk1OTE4MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3cd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA1MDE0Mzc0NTUzNzc1ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDI3NTMyNDU0MTAwMzkxMTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"13c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTEwNDM5ODI3NTc1MjU0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bb60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwNjQwNDk3OTIyMTYyNTA5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e371d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTc2OTQyNjc3NjA4NTYzNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3fd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjcxODkzOTQwNjg3NjM5NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ca14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTA3ODYyNDg1MDY5MjMyNzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"16c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2NDM1MzE4OTE4NDA1NzUzMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"be60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxMjYyMTcyNTY0MDM4NDE1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e671d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjIxNzQ5MTI1MTkwMjE2OTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"42d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTU0MDIxNzE5NjM3NzY2NDI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cd14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyODY0NzU4Nzg1Njc0MjY0MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"19c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTE0MDMxODgwMTY4ODQ5MTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c160d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDYyOTUzMjEyMzc1MjUwNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e971d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg5ODE1NzI0NTQ5MTA0OTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"45d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjAwMDA3ODY5MTQ2MjcxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d014da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDkwMjU5MDcxMzQzNjE3MTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1cc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjAyMTQ2OTc1MTMyNjYwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c460d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MzYxODc1MTQ5ODIyNjgzMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ec71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ1NTM1Nzk2NzY1MzAwNTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"48d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODA3ODk3MzU0NTg2NTA2MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d314da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTc3ODc5NjAwOTAzOTI0ODY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1fc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDkzNDU1NTUxMjUyMDE1NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c760d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjcxMjI0ODU3NjMzMjExNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ef71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODM5ODEwNjk5MDkzNzYzNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4bd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDQ1Njg2ODgwOTM4MzA1NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d614da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzI5NTcwODM2NDAzNTg4OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"22c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDc5NDM3NDU4ODE5NjI2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ca60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQxMTY2MzAxMjk5MzQwNDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f271d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTQzMTIzMDE4OTM3NjcxNzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ed3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzg3NjAzMzAzODM1ODA1ODIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d914da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjQzMzQ2MjMwNTg4OTY1OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"25c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODAzNDAwNzQ4Mjc5NTY3OTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cd60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTIzNDA3MzMzNTYzMDM4MjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f571d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5ODA5ODEzNTk0MjQ0NDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"51d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTI3NjgxNjA2MjU2MjAxMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dc14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:49.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:49.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzc1NjA0NzM3NTc3NTg1NzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"28c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjk3MDExNTM4Nzk1Mjg1MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d060d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ2MjM0NjQzNzYwMTUwNTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f871d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDI1ODg4MjE5MTk4NjA3NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"54d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzI1OTg0NTYzMDE5MDc5MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"df14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTgwMzc2NDg4MDI3NDc5MjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2bc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEyNTYzOTY0MTM5NDc1MTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d360d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA0OTI1ODMzNjA0NTI2OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fb71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzI1NDkwMDY0MTk3Mzc1NzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"57d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzExOTIxNTUxODkwMjU2Nzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e214da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzI4MTI3MDY5ODY3MzY2NTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ec4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU0MDAzMzA3MDA3MDkyMjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d660d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU4MzQxNTcxNjE2NDA3Mzk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fe71d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzM0MzM1MzQzMzIxMzI5NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ad3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODA1OTQzOTcwODI0ODg5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e514da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk0MTY2MTYzMjU0ODM3NTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"31c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODkwOTI3NjQ2MTI3MTA2ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjAwNzc5NjAxNDkwMjg5MDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE1MTU2ODEzNDM4MTE4MTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-09-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5dd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzg2NDIzMzI2ODQ2OTAwMjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e814da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Mjc2MTQ0MTA4MTI0NTYxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"34c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NzkzNzc5ODMyOTkzMzU0OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dc60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkwMDg0OTcwNzQzOTQ4NjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzEyNzgyOTU1MzA5MTQxNzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"60d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzU1NzE3NTk0NjQ5MjU1MjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"eb14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMTkxNDc3MDA4NjA5MzY4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"37c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDEyODYyMTkzMTc5MTU3NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"df60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTA2NjY0MTk2NjQ1NTk2OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUxMTU0ODUyMzk0ODY0NzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"63d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg2MDQ1NDAyNTEwNjYwNDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ee14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTY2OTc3NDUyNjQ5NTM0OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjk0MjAxMDMxMTUxMzI0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjE2MzMzMjM5MDk2NDY3OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0a72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzQzNjc5Mzc0ODI2Nzg2MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"66d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQyNTQ4NzI5ODk1Nzg5MTIzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f114da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDU1NzIyMDUwOTU2ODM5NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3dc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODIzOTUyMTg1NjA1ODAwMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzk2MjYxNDE1NTQwMDM3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0d72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODI3MTIxMjYzNzgxOTkzODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"69d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIwMTgxNTgxNDQ5NDIxNDU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f414da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTM5MTE3MTU1OTkzNzA3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"40c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:41.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:41.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NzM1MjEwMDk3NjQwMzk5OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e960d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTEwMzEwNzgxMzAzMTM0MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1072d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTU1OTEzMTY0NDYxNzc1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6cd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTYwMDY0OTI3ODc0Njg5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f714da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzU1NDEwODg2NjQ0OTI5NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"43c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTAxMTk4NTE4NTM5NTcxNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ0Nzc5NDY1ODcwMDIyMTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1372d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzI0NTY5MDQ2MjE2MDQ2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6fd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODMyMjAxMDMzNjcwODU4MjExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fa14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Nzg2MjcwOTEzNjE0ODM3NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"46c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTcwNDczMTk3OTExODAzNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzOTM5MzA4NDQyNjE5MjczMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1672d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDg2NjAyNjYzODEyNTAxMDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"72d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODg3NDgxODQyNjMyMTEyNTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fd14da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODAzMTA3MzkwMTAxNjQyOTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"49c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTM0MDE0OTgzNDk3NDA1ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f260d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTczODQxNDI1MjQwOTMwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1972d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYyOTMxMTE1ODk3MDE4ODg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"75d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NjMyNjEyOTk4MDAwOTY3NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTAwMTQzNzkyNzY1OTUyMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4cc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY2OTE4ODg1Mzg5MTE1MzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f560d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMDk0NTA2ODk5OTYwNzkzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1c72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5MzA0MTEyMDg3NjYxNTQ3OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"78d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNjIxNTc0NTMzMzYzNTc3NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Nzc4Mjc4OTc2NDQ4MTUzMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4fc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAxOTM3NjY3NDM3Mzg2NjE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f860d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk5MzEyNzEwMjc0NTUyNjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1f72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA1NDU2MDc4MDYzNjExMDAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7bd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Njk5ODkyODE4MzA2NzQ1ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MjUzNTI4NTQwOTk4MjcwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"52c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzM0MzY1OTEzNDIyOTI1NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzI3OTA3MjI4ODU3MjY3MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2272d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4OTI4NzQxMTAzNDk2MTIxMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ed3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM1MjU2NjEyNDkxNjIwODY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTU2MzA5Mzc0MzIwMTg3OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"55c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzE4MjU5NjM5NDUyNDgyNjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe60d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTY4ODE4ODA3NDc4MjkxNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2572d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNzQzNjU3OTE0MzkwMjkwMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"81d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTcyODk1MjgwMDE0NzEwODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTkyODcyNDc1NzU1NTUzOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"58c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzY0MTM5NDE1NTAwODA2MDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0161d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzcxODQ3NjkwNTA4MTkyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2872d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDc3NTIwNTI5NDIwNjg5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"84d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzgzNDc2Njg3NjIzMzUxMTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTczNzY3NTIzMzQ1MzM2NzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5bc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzkzNzY1NDIwNzA3NzI2MzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0461d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzEzMDgyNDIyNDk2OTc4NjcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2b72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTc0MzI5OTYxODE4MTg2MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"87d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ3NzE3MTQ1NzEwOTc5NTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1215da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjI1MDc5MzMxNzg4MTk3NjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ec4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3MzYzNDQxMzg2NDIyMzEyNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0761d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDYwMjg3Njk4MjI0NTA4NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2e72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTYxODU2ODY2NTAwODE1MDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ad3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE2MDI1MjYyNjQ5MjE2Nzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1515da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjk2Njc2ODQ2NzYzMTc5OTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"61c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTQwMDQ5NDAxNzQwOTYxNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzA4OTkxNzA1ODExODM3NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAxODI0MTYxNjQ3NTQwOTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8dd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTU5NjcxNjQwNzE3NTk4NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1815da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTMwMjgwNjE4MDg0MDU5NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"64c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzM3ODM3OTE4MzQ3MDA0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTkwNjc2NDA3MDk0Nzc3ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjA2OTQ2MjM4NzY5Njk4ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"90d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0OTY5OTgxNTkyMTYzODA2ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODE1OTc1ODE1NDcyNjg1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"67c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM1Mzg1NjI2NDI0MTkwNTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1061d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA2MTE4NDg3MTQwOTc2NzcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTM1OTYzMjMyNjE5MjA2NzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"93d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDgyNzcwOTk4NTkzOTIwNDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDQ0ODE5NDY1Mjc2NDU2MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODI3OTgzOTMyOTYzODAwMDU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1361d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDUwNzA5NTExMjE0MDQ5NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3a72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjU5NjIwNzQ0MjU3ODI1MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"96d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Njc5MTkxNDkwNzIxMjEwNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2115da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzcxMjcwNzUxNTU3MjM3NTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6dc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjY1ODQ1MzQ5MTc4MjQ5OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1661d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE2NTA4MDc4NzE2MTk2ODIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3d72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTUyMDI4NjgxMDE5MDcyNzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"99d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzOTY3MDAyNjQzNjM1MjQ2NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2415da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjM2MzcwODY2NzQ2MTY2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"70c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjk2MjI0MTc2MTI4NDMzMTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1961d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjIyMTQ4NTE0OTM1NDQ2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4072d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODg3ODc3Nzg3NDcxNjM2MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQwNzkyNjIyOTE3ODM0MzQ2ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2715da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ0OTYyOTA1Njg5NDM3OTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"73c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTU2MjkyNzIzNjMxOTQxODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDYwNTAzMTAxMTYxNzM3OTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4372d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU5MzAyOTM4NDU5MjEwODM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg1MzI3MzQwOTY4NzQ3MzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzA4NDEzOTY2OTk0NDI0NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"76c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTU4MDYxNDAyODUxMTgyNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTYxNTcyNDI2OTE5MDYwMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4672d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODE1ODE3OTM3Njc5NjA4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjg3NTcwNDA5MzIxMzc4ODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MTU4NDYyMTU1MDMyNjUzOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"79c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY2MzQwOTU0ODMxNTg4MDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTAzNjI1MTExMzM5MDM2MTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4972d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk0MTQ1ODQyMjUyNjc5Njg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Njk3MjEyMTg4NTQyNzEzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQ1MzA5NTg2NzQxNTUzNTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7cc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTMyMzgxOTA3MjkyMzEyOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzM0ODc2Njg0MzIzMTg0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4c72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk5MjI2Mzg5OTAxNjI4NjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg3MjkxMjYxNTkyMTczMzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI0NTY5OTIyNzY1NDk2Nzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7fc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzQ3MjU3MDY2NTM2MTYwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ1MDA4MzIyNjM1NzMxNDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4f72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTgyODU1MDkxMDMzNDU0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"acd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjgwNTE4NzM5NTUyOTI2MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTM2Njc5MTE0MTU5ODIxMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcyODQ3MDcwNDEwNDkxMDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Mjc5MDU3Mjk1ODE0NzM2MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5272d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY4MjY2MDUxMTg3NzEyNTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"afd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTYwMTU4OTk4NDc4NTE2NzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMzNzAxMjcxODQxNjcyNjk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"85c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjU2OTM0MTQ4ODcwOTU5MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDIyMTUzMDE5MDgxNjg0MzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5572d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTAyNjg0NDA1NTk2OTg3OTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b2d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzMxNTA2Nzk5ODk2MjM5NDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI4ODM4MDY2NTM2MjE3NDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"88c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Nzg0OTE4MTgxNDIxNTY2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3161d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTM4MjM0NDUyMTc4OTUyNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5872d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODI5MDMyMzc5OTc0Nzg1MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b5d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MzgxOTY5NDYzNDk1NjE4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjk2MTcyMjU4MDAwODI1NDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8bc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUxOTIyNjM2ODA3ODYyMTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3461d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjAxNzQzNzM5MjUwNjg2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5b72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg2NzA3NzI4ODEyNjUxMDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b8d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwOTA1NTcyNTAxNzU5Mjg1NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4215da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI2NjcxMjYyNTcxNTc0NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ec4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzkzOTk0MDI3ODE0NjU1MjczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3761d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTYxMTg1MjQwMTg3OTgyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5e72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI0OTc3MTUwNzQ4NjQxMjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-10-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bbd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTg3ODg3MTQzODU4NzE1NjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4515da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDUyOTA1Mzc2NzYxMTY3MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"91c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3Njg4ODM2OTI5MjkwMjcwNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTE0ODI0NjI2MTIwNTQ3NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk1MDE4MjY5MDY2MDk2NTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bed3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyNDIxMTkwMjYxNzU1NzUyMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4815da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMTA1NzY2Mjg0OTIxODI2MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"94c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NjE3NjM5NDI5MTEzODI2NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDUyOTYwOTMzNzc2MDY3MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzUwMDA4OTQyOTkxODgyOTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c1d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3ODc5NjA4NjM0MDc3ODk0MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjE5MjgzMjA3NjQ4NTU5MDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"97c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQwMDM2MjQ2ODM3MDk2Mjc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4061d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjI3NzczMzY1MjI0MjYxNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDI5ODE1NzQxMTgyMjA2MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c4d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyODg3NzIwNDcxMzgyMTk3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTEyMDkxOTY0NzQyMzQyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDI3NzM5ODU2MDA5MTIyMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4361d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ4NjE0NjI3MzgzNDk5OTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6a72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTQ2MDI4ODAwMzY3NDg1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c7d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDY3ODY2MTY5NjQ4NDEyNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5115da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1Mzk3MjE4NTM4Mjg1NzgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9dc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDc0MjQxMzUzODE4OTk2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4661d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTUyMTQ5MzQ5ODI0NTI3OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6d72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODA0MzQ4MjE0ODIxNDE5ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cad3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk3NDQ3NTE5NjA3MTYyNzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5415da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzcyOTYxMDMyNzk0ODIwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a0c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTQwNjEyMjMzOTQ3MDkzNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4961d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDY2NzYxMDcxMjYzODkyMjkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7072d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ2NjYyNTkzMTAxNTU1NzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cdd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxODQxNzk2MTAzNjgzMDk0MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5715da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEyODIzMjA2Mzg3MjgxOTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a3c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzMzMzU0Njk0MTgzMzk1MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDY0NDI5NjQ2NTMzODU1NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7372d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU3MTc4NDcxNDA3NTAxNTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d0d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODgyNTA2MjY3MTIyODYyMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwNzM0MDAxNTcyNzIzMTA3MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a6c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjY2MTQwNjc2Njk2MTQyNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4Nzc5OTA1MjMzODI1NTgyODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7672d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIyOTYyMTU3OTA4Mzc5OTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d3d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc5MTY4NzEwMjU5MDk4MDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU1ODA2Mzg5NjI3MDc4MjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a9c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3Njk0NDQ1ODI5MzQ2Njc3OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM4MDI4ODkxNjUzMTcxOTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7972d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTEzMzEyMTY0ODM0MTI0NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d6d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzUyNTkwMzE3NjQ3NzY4NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzk3MjQzNzg0MzQ1NjM2NTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"acc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDYxMzIwNDM5MDUzNTc3NDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ1MDUwNzU1ODM4MjMzNTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7c72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk4MzM5MjYzMzM4ODEyMzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d9d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDE4NTQ0MDIzODQ5MDM4MDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Mzc4NzM5MDk1OTEzNDQyNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"afc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM2MDM5Njg0Nzg2MzYyNDE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjUwMDc5MDk2NjMyNDMwNDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7f72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2Nzg4MTY2Mjk4MTExNTgyODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dcd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjQwNDA4NjcyMjA0OTgwMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQzMDYzNDY4NDQ2OTEwMDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b2c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMDUwMjkwNjY5MDYxNDM3ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTAxNTc3ODA2Mzc1NzIyODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8272d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTI2MDIxNjEwNzgyNjc1NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dfd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE5OTk2NTgzMDY2MzM5OTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTU5MzQ5OTIwOTA0NjkzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b5c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzY4MzY3MTU4ODc0MDc1MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0OTg2NDc2NjkxMjM3OTk2OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8572d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MjU1ODU2NDQ0OTM4MTQwODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e2d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI4NDM5MjA3NjM2NDI4OTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6c15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODgxNzA4ODQ3ODc5ODAxMzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b8c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM4MDg3NDI0NjIxOTY2MDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6161d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjI2MDY2NTcyODM3NDkyNDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8872d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDkzNjAyNTc5MTgyOTU3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e5d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDE1NDkzMzgyOTA0NjUyNjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6f15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ0Mzc4MDkzMzEwOTY5MTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bbc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODA1MjA5Nzk1ODYxNTU5MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6461d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzM2ODA1NzIxNjAxMDQwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8b72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTg2MDAyNzc4NTQ4NDg2NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e8d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MDQyNjEzNjY5ODg2MDU3NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7215da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDk4NjgxMzY4NDY0NjMzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bec4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDE2MDUwNTUyODkzMDM5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6761d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDE3NjU1Mjk1Mzg4OTQ0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8e72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjY0NjQwNzMxOTY2OTE5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ebd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDczNTg4OTI1ODkwMzYxNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7515da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODUyMDYwODk5MTQ0ODI0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c1c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjAzNTQxNjE1NTEwMTA3NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODEwMTIzOTU1OTE1NjMzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIzMDM3MzIzNDE1ODY3MzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eed3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMzE2NzkzODYxNjY3ODYwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7815da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY1ODU4OTAxNTY4Mzk5ODA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c4c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTA5Mzg0NDAxMjI0NzIwOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDA3NDgyNDAzMDczNTI4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjQxMTQxODM1NDU4NTYzMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f1d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTAzNDc2OTE0NTY3MDU4OTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7b15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzAyMzI0MTU5OTMwOTIyNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c7c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMzMjAyNzE2NzY4NDc4NDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7061d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODEwOTM5NDAxOTc3Mjk2NTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTcwNTcyODI4NjcwNTUxOTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f4d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDU5NDk1MTAwOTc0MzE3MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7e15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTIxNzk0ODA4MDY2NDU0MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTQyNTM5NDIzODM0NDgzMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7361d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxNjY4MTM5NTY4MTM0OTM3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9a72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzg5MjAwMjc2Nzc1MjY1MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f7d3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTA1MjIyMTExMjk0NDA0NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8115da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODE3NTcwMDQ4NzQ3Mjg5MTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk1MjYzOTA0NzE4ODQyMjI0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7661d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzYwMzAwMDAzODA1MjkyNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9d72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDg1NzUzODgyMDk1MDM0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fad3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU3Mzk1Njc1OTQ3MjAwNTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8415da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE2NTMwODcxODk4NTIxNDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODA3NjY0Mjc0OTk5MTAyMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7961d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkwMzYzMDAzODg4MzUyODUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a072d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjA5MjQxOTQ3MDIxMzY3MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fdd3ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQ2ODQ2OTc1ODk1NDMyMTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8715da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDI5OTgwMjM5MTcwODI5MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTA5ODEwMDcwNjU2OTQzNjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjU0ODczNjQzMDY5ODkxNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a372d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODEyMDk2MzA2MTgxMTcyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"00d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA0NjYzODg0NDY4MzQ1MzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8a15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk1MzE5MzMxMjY2NzYxODc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY2OTM5ODMwOTQxNjQwNzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzODkxMjI0NjY1Mjc1MDQ4NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a672d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkzMzY4NTEwODY4ODA3NTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"03d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDYzOTE1NTE0NDI0ODkzODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8d15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNjc2ODU3NTY4MzgyOTYwNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDUzOTk1MTQwNTIzMDA1MDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTIxNTg1MzgwMzQxOTIyNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a972d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNDcxNzMxNTQwMTg5OTA2NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"06d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM0MDk4MzQ2NzY1Mjc2NTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NjA2OTYyMTQ4OTY1NzM0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dcc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTk2NTE0MTIwNDkzODQwMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTI5MzAxMTc1OTgxMTQ0NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ac72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjM5MTUxMzIzMDM3MDc4NzY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"09d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTc5NTIxNjE3MzkyODQzNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUxMjQyNzAxMzkxOTk1OTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTMyNDY4MTkwNzY3MTg2MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTE1MDc4MDgzOTkzMDIzMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"af72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDM0ODY0MDQ1MTU4MDI2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0cd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg2NDc0OTc3NTg1MTI2MTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDI5NDE1Mjg0NzUxNzc0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk1NTY5NTU5NzYyNjMxNjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI5NjQzMTE0NzAwNTI3MzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b272d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE0MzkxNTMwNDA5NTYwNjYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0fd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MjAzMzA4MzUwMjU5NDg2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk4NDY3ODE1MjI0MzQ2NDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODE1NTM4MzkwODE4MTMxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MjgxMjAxNDU2MTk3MjI3MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b572d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzMzNzAyNTMzMzkwNDc1MzQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"12d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NDQ1ODQ5NDE0MTU5MzU3MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9c15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzEzMjk5NzAwMDcwNzA1NTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE1NDg4ODc0NTg0NTQ4NTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9161d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM3Nzg2NTU1NzcxMjY4NDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b872d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDc0MDgzNDI3MjA0NTY4OTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-11-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"15d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjAzNDk0MDcxNDY4Nzk2NDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9f15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzIxNTMxMjgxNDc0MDAzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE2MzQ4MzE4OTM2MTAyOTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9461d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDgzMzQyMTc0NTkxMDU4NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bb72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDAwOTkwOTU3ODA4NjE5MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"18d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjUyMzc4NTg3NDM2MjYzMzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a215da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI1MzY3MDk4MTI2ODU1MzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eec4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTAwODEyNTY1ODUwMTQxNzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9761d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDkxNTM5NTQ2MjE4NzQ3NDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"be72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk1NzU2Nzg5NDM5OTM3MTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI3NTkwMDUwNjg0ODE2ODEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a515da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTEwNTE5MzcxNjEzMjk3NDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI2MDEzMjM5ODM5NDg2NDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc0MDgzMTYwNzM0MzIyNjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTg1OTc5MDU4Nzg4NjI1NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1fd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NjcyMDE5MjkzOTU1MTUzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a815da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTg1OTQ4MzU4ODQzNjE0ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjMzMjQ2MDI5MzI5MjYzMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDA3MDY2NzE4NjExNTkyMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMwOTMyMDQ2MjY3Mzg0NjI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"22d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODg0ODk4NDUwOTQ3NzQ5MDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ab15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODAzNDU1Mzc1MTk4MzEzNTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7c4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAzMjg1MzU4NDU4MzA1MzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a061d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTYyODM4OTg3NDYyOTI0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzcxMzI1MDYxOTk3MDg4ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"25d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI1OTQ5MTE1NTA5OTczNzA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ae15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQ5NDY1NDc5NjQxMTE5MjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fac4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODkxMjE4ODg5MzI2NDQ0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a361d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzEzMjQwNDkxNTU0MTAxNjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ca72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTU5ODQyMTMxNTU5MzQxNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"28d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODg2NTI5NjI0MDUyMDkzMDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b115da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTM0MDA4MTc2OTg3MzcwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdc4e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg4Mjk3MDc3NDM4ODk5MjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a661d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODg4MDkwNjU4NTc3MTQ5MDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cd72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODIwMzM4NzkwMTA4MTQyMjQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjgzNzc2OTQzMzQ0NTkxNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b415da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI1OTg4OTYzNjU2NDAyNjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTEwMTg4NTQwNjgxNDg3NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a961d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTg1MDM2NjgzNDk5NTEzOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d072d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQ4MTQxMDYwMzg5OTM0NDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2ed4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA3NDkxNjAxMzUxMjQwODIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b715da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDEwNTg3ODUyNjA3NjIyMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODY1ODY1OTIzMDIyNzYyODk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MDU3MTU2NDAwMTcyODU0NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d372d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUxMTYyNzIyOTYzMDkwMzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"31d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY0NzY1OTMzNDY5MjM3MzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ba15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzc5MTkyNDIyMDYwODg2NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDYyMjA0OTEyODUzNDc5NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTI0MzIxNTYyMjA4NTE5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d672d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDI0NjMyNjk2NDMzOTk3MzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"34d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MjA2NTE5NjY1ODU1ODUyNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bd15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjM0OTg1NzUyNjI0ODA2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODkwMjE5NjE2ODU2MTMxMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDcwMzk0NTg2MDM0Nzc3MjgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d972d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTUyMTg5OTE3NDYyODIyODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"37d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY0MjM0NDY1MjYwOTUwNjU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzI5OTc0OTc3MTg1NjEwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0cc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjU1OTc4NjIxNTQ4MjA5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTYwMTk5OTY1MzE3OTYxOTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dc72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODE0MTIzNjcyOTAxNjI5MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ad4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTY2NjAxNTg0Njc4NzU3ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjM4NTM4MjIyNTU0NjQ3NzYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY2ODMzNjc1NDE2MjM3NTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxMjQzNjc2MzcwMDQwMzYwNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"df72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDEyODc0NTIzNzA4ODY4MzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3dd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTIyMDU4MzAyMjQ0MjI4OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDkwNTUwOTkyMDg2MjIyMjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODM2MDEzODgwNzk0MzYxNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDI0OTg0NDY2NjgzMzM2MzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e272d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI2Njg2OTQyNjQxNDE4NTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"40d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjAyNTU4MjIzOTcwNjgwNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzI1ODQwNTc2OTg3MjQ5MDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDE1MzA1NjUzMTQ4ODA4MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTIyMTUwNzA1MjA3NDc2NzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e572d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzQxMTQ0NjE0NzIxOTY0NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"43d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg1NDUxMjM2Njg3NjMzMjI0NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cc15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTUzMDU2MzA1NTc4MzU4NDEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMDA4MzQ4MTU4NzIyNzcyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDkyODAyMjkzNTc5MTk1NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e872d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTM0MDMzNjUwNjE5OTUzMDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"46d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDQ1OTIxOTI5NTcxMDE2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cf15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjMzMDIyODYwODA4ODAwNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTE1OTYwNjE2MTUwMDU5MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTAwOTE3ODIzNDI2MzYzNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eb72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDUzMjU5OTUwMjg0NzUyMDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"49d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTQ2NzQzMjI5MjEwMDMxMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d215da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEyMjY0MTI5MDA3NzQxMjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ec5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDQ2ODgxNjg2OTgzMTAzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzc5NTIwNzE5MTI0NTMwOTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ee72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzUwNDQyMTUxMjEzNzk4NTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4cd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjU1MzY5MjI5NzM0OTY3NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d515da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODU4Mjk5NjgxMjQyOTk5MTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTYxODgxNzY2MTQ0MjI2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjIyOTMwNjQyODYzNTc0ODYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f172d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg0NzkyMTA3NTQyMzI4NDE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4fd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTkzMDc5NzAyMzUzMDA4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d815da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTUxMTEzMjA5Nzg2MzE4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI0MDAwMTAxNzA0NzU4ODM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc1MjE0MzAzODM2MzUyNzg0NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f472d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjU4MjEzMjE5MjQ2MTY3ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"52d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTIzNzkxOTc1NDU1MzIwNDgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"db15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1NDY2ODk4ODI4MDgwMTQ1MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTAwNjI5Nzk3Njg4NjUwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d161d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzgzMTczMjI1MjA0MzUwNjIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f772d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgwMTczNjYxODEyODY5MTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"55d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDkwMzc2ODY4Nzk4MTAxODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"de15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDYxODg4OTQ5MjI3NzAwMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ac5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NjQ5NDIzNjEwNjYzNDc3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d461d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzIwMTAzNDgyNDg3NTMwNTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fa72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEwMjA5NDY5ODYxNjg0NTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"58d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTczNDA5MTc4NjE5MTU5NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e115da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzc2MzE5NjAwNDczMjU0MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjEyNjkwMTAwNTgyNDk2NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d761d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc0NDY5MDQ0MTMxMjYzNzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fd72d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI1MDkxMDYxMTQzNDExMzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTY1MzUwMzYwMjYxODQ3MzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e415da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDExMDE0NDgxMDM4MTIzNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMwMzExMTIzMTI4NjExMTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2ODExNjA4MDQxOTE2NTIwMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0073d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjIzMjE2OTE0MTkzNzEwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ed4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTM0NzA1NjAyMzU3MjI2MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e715da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTcyMzczNDg2MzUwMTI3MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgxNjU0NjgyOTI5NzI4NjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODM2NDUxNTE1Mzg3NDg5OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0373d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTQ0NTA5NDM0MDYwMjMyMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"61d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTcxNTkyNTUxODYyNTQ3Njk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ea15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTAwNjU2NzY3Mjg4NjEwMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjY0Mjg3Mzk4MTAwMTQ4MzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e061d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjY5NzEyNzEyMzEwMzAzNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0673d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5NjcyMDIyMTE2NDUwMzgwODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"64d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk0ODU3MDQxNTg2Mjc4NTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ed15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIwMzU3MTQxMjQ2NTE2NDE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODc4MzQ3ODg5MDgyNTIxMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e361d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTk1MjQ5Mjk1NDA2MDQ2NDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0973d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU0Nzg1NTI3NjEyOTU0Nzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"67d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTg1NTgxMzc1NjAxNzA2NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f015da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTE2MzcxOTE4MTQyMTg0NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3cc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1Mjg4MTM3ODQ2NzA4MzM2NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e661d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc5NzMzMjc2NjQyMjU1NDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0c73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTIxNDA1MTkzNTg0NTYwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzM0Mjk3MDE1MTcxNzE4MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f315da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTcxMDc0Mjk1MzkyMjUzMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTIyNjY1MTAzOTc4NTU3MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e961d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY3MzkwNzg1MDA2MzM5NTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0f73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU4NDE2NTA5MTg5MDc2NDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6fd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0Mjg2NDY5MjU0MzI3NTgxODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f615da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU3ODAyNDI4Mjk3OTUyNDkyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTY5MjYwNjQyOTI0MzI2NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgxMjMwMzU1NTkzMDQ4NDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1273d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzIwODMyMDAyNTg4NTcwNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"72d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc3MjczNDExNzUzOTEyODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f915da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ5MzMxMTQ5NTE5OTk4Mjc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNTk3NjIxMzM2ODI2MjA2MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMTk1NzgzMzg0NjgxODYzOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1573d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4Njg2NzY5Nzc5MTQ2NjI1MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2023-12-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"75d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzg0MDc2ODc4Mjc5MzExMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fc15da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODEyMDAwNTU3OTUxMDYyMTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDMwNDg3NTYwMDE5NDU1NjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f261d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTI3NjgxMjExMDI1OTU3MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1873d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTQzODgwNDcxMTg2NDU1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"78d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDgzODQzMTM4NzYxMzk0NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0016da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDExODkwMjY0NTQ4MTYyNzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjI1NjQ2Nzg2NDc5NzYxMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f561d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzUxMTY3OTE4MjkwMjMwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1b73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwOTExMDg0NDg1NTc4MTUyMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjUyODYyMjkxNjk1NDYzNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0316da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1OTYzNjc0MDA4MTc3MDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ec5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Mzk3ODI2OTM3MjQ3NzU5NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f861d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDYzODY0MzcyOTUyMDYxMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1e73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExMzY5MDAzNzI4MTY2MzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ed4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2Nzc4NjE1OTkyMzUwMjI5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0616da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxMDg2NTEwNTE3Mzg2MDUyMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzQ3ODE2NzAyNTU5ODU2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDg2NDYzNzgxMzEyMjI5NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2173d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzczMTczNjQxOTY2NDY4NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"82d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjg3NDY1Nzk0MTE0MDY3NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0916da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTE2MDM5NjkzNjI2MTMzNTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTI1NzQyMzAzMTY1Mjk3MDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe61d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODEwMzA5Mjg3ODc4ODU1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2473d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTczNDgyMzg4Mjk0NTMxMzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"85d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTUwMzkyODY3NDAxOTgzMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTQ3MzkxNzk1MDg3MjUwNDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NTUzNjE3MDU1NzE3NzY2MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzk4MDc0NTk0MjAwMDE4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2773d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzE2ODQ0NDcxNTQ0NDA5MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"88d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjQ0NTIwNjkyMTQ3NTcyOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzI2MjAzNjEwNjU5MzczOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ac5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM0Njg3NjE3NDAzNjYxNjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkwNTM3OTMzNTAyMDU2MTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2a73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTU0Nzk1Nzg2MTg3NzQyMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8bd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzYzMTE2NzA0OTc5MTU2ODM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1216da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDM1MzkyNjY3MTI3OTczOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NTEwMDczMTQ0NTM0NzE0NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEzMjE1Mjg5MDQ4MjE2MDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2d73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjM0NDY2MzMzODE3ODI4MDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ed4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQ0NDI5NzU4NDc3ODY2MzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1516da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDM2MjQxNzk5NzE1NTcyOTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAyOTg2OTEwMTU4MjQyODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDIwMzE4NDM3MzU0OTUxOTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3073d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Njc1ODEwMjIzMDUzNDE5NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"91d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MDcxNDc4MDk0MjM1NzkyMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1816da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTk2NDA5NDI3MTUzOTk2Nzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDU0NTA3MTM2NDk4ODIxODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMxMzE1NTUyNjI5OTM0ODcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3373d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE4MjU2OTQ4OTY2MTY0NDE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"94d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTczMjg1OTI5NTQyMjIwNjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzExNDgyMDE0MzkyMDM5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjIwMTY4MjQzNjgyNTAzMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1062d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTk4MzI3MDU2Nzg0MDY3MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3673d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:05.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjQzNDAyNTY5NDE0NDk1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"97d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MDU0MDI0OTEwMzA1NDE4MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2MjgzNTk5NjY3MTk2MjY3NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDA1OTg5MDIwMjgzMjk5OTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1362d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5MTk2MjU3NTQxNjEwMTI3MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3973d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:05.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM3MzM3NzUxNDA1NzE4NzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ad4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODk5Nzk5NDk0NjMxMTQ4MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjc4NjU4MDI3MDQwNDc0MTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6cc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NjE1ODE5NjU5ODIwODYzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1662d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzE0MDQ3NTEyMzQzMTk2NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3c73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjIyMjMyNTUyOTc4MjI1OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjg2MDk4ODcwMzM4MTU1OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzNjIzNzI1MjA4MTkxMjIxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjMwMDIwMjU0NjU1NjkyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1962d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzI2MDEyMzcxMDA1NzAyODkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3f73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQxNDQ5MjM5MjgwODY5ODAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc4MzIzNzIwMTI5MjkyOTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjU0NTQ1MzgyMzE5MjcyODQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Mzc0NjkzMjEyNjA4ODQ5NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDMyNDQ0NTQzNDYzNTg0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4273d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjEwOTE2MjU3MjU0NjM2MjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:14.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:14.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc1NDAyMTMzODg3NTc3Mjg2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODUxMzE2ODU2MDQ1NDkzOTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDIxNTcxOTExODk5MzIyNjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjU4NzUwMTQyMDc5MjQwNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4573d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTAwMjQ3MDU2ODI5NTY4OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTE1OTU0NTY4NTkyNDc1OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NzQxMDU0NTc3NjM5NTg0OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM4MTQ1ODYzMjk4Mzg2NTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2262d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MDA2NDg0NzczMjU2Nzg1NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4873d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MTk0OTc0Nzk2NDQ4NDY2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MDUxMDk5NzEwMjIxNTk0MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3016da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTMwMDA1MjcxNTAwNDU2NjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDYwNTI5MTg2NzE2OTgyNzgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2562d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQ5NjcyNzA2MDI4MjY2ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4b73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzczNDEzODY1OTEzMTAxNzE4NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"add4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzY2Mzg0NzIxODg2NzI5NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3316da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODkxODkzNzgzMzAxMTMzMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ec5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNzI1NDQ2OTU1MDAxMjUwNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2862d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODkxODIwOTc4NzY1NDk2NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4e73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjA0MDg2Mjc0NTcxMjM1OTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b0d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMjE1MTQ1OTM4NjM2NjM3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3616da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzkxMjIzMzA0NjU1OTExNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODU4OTg4NDg3MDI5NDM1NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzM5Mzc4NDEwODg1NDAyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5173d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTM2OTkxMDU0NDYzNTAyNDcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b3d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODE0NjUxNTM5NDQyOTczMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3916da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYzMTY5NzE1MzgwOTQzOTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjg1MjkyNTc0MTY2Mzg5NDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTY2MzExNDU0MTA0MTk4OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5473d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjgzMjg0NDg0MDUzMzI0NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b6d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTQ5OTQ0MjY3NTA5MjE3ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Njc3NjM2OTc0NTM0NDYwMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTQ3ODc3MjUxNzgwNzcyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTcyNTU0NjUwNzQ2NzQzMTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5773d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3NTY4NDYwNzU4NTY1MDIzMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b9d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzYxNzI5OTQ4NTQ1Njg0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDc3OTA5MTgyMjgzNjUwNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ac5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIyODU1ODM4NDY2Nzc1ODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTgzMDYyMDA5MDg1MjkzMzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5a73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDU3MDg1MDUwODExMzEwNTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bcd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI2ODUzNDA4NDcyMzQ3NzA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4216da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTYyMjk2OTA2MTA1MjE4MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTYyMzU2MzYxODc0MTYzODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNjIwOTUyMTgwODY1NDM0NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5d73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTMzNTMwOTY5OTMzMDAzNzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bfd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjExNTEzNDA4NjYzNDc0NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4516da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjEzMzUwMjc2MTI2MDAzNzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwODg2OTQxMDA2ODk5NjA5ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM0NzIzMjU4MDU2NjcwODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6073d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTkzMjEwMzI0NDc4MTA1MjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c2d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzYzMTczODgyNzM4NzE2NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4816da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODE0MDg5MjQ3OTk2NDQ5MDc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTg4NjEyNDM0ODMwNDA2NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjIwMTkwNzYxMjgyMDgwNDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6373d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI1NzI3MDc2NjU0Nzk5OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c5d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzg4NTE2ODUwNjUwNjI0MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NjkyODcxNjUxNzI0MDMyNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODMwODk0Mjk5OTA0MjIxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4062d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTEwNjQzMjY4MDgxMjgxMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6673d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYyMzQ5MjEwNjkyOTY1OTU5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c8d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjE0NzgwNjEyODIyMzIzMzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTg0MDE5NzAwOTUyNjAyMzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjA3MDE5ODQ0NTUxMzQ4MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4362d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDQ5NzY2OTg0MjgxNzc3MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6973d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTkxMDQ4MjI0MTI2ODQzODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cbd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNzEwNDA1MDc3NjYwMjcxMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDU5NTk2Mzg2NDQzNjQ2MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9cc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjI2OTA2NjQ2OTc0ODU5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4662d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzEzMjU1OTI4NjU2MTg1ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6c73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjU3ODkzNjIzMzYyODYwMjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ced4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ1MjI4Mzk4NjQ3NDg1OTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjk2MjI1NTE3NDE5MTk1MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNTI2OTY0NzQyNzgwNDY1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4962d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDkxODY3OTg0NDc4Mzg1MDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6f73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ5MDAzMTI1NTIwNDA1NjI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d1d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mzc1NDM1MjI4MTM2MTU2NzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTk5NjY2NTg3OTIwNDYyMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDMwOTQyMzA2MDY2MTI1MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDMxMDQ2NzU1NTc1MzM5NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7273d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzQ4NzUzMTg5ODYzNTczNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-01-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d4d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI0MjYyOTM3NjAxMjcwNzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDA1MjU5OTc4MzQxODc4ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODA5NTM3MjQ1MjYwNzk1Nzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjAyMDE5MjkxMzE0NjQxNDM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7573d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjE4Mjg2NTIyNzIzMTQ5NjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d7d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTM3NzYxNzE1OTExMzQzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTM5NDY2MDI1MTg3Nzk1MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTU3NDY5NjkwMjY4MTExMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5262d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNzY1NDYwNzM4MjY5OTYyNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7873d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzE4ODg3NTU3OTY3NzYxOTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dad4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MjAxOTQ4MDQ1MjU3NzcyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MDM0OTAwNzE1MTY4MDY2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTcxMDg1MjUwNzQzMzIzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5562d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQ1MTM2OTEwMjM1NjY1NzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7b73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTU5MTU3ODk5NDAzNzk3NjgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ddd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODY4OTY0OTcxMDQ5OTI3MzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMTcyMTM5NTYwNDE0NzkzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aec5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzMwMTczNTMxODA4MzY2MDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5862d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTcwNTMyODEwNTIxMzYyMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7e73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg1MDU3NTkzNTU2MzYwNDY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e0d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzIwMDAwMTU1MTUwNzE5ODAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY3MTIxMTc4ODM2MDI2ODY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzExNzQ5NjQ2NzcyODIzNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjI0OTU2NzQxMjg1NTA4NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8173d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg5Mzc3NjEzNDY4MzgxOTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e3d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzEzNzI4OTk5OTAwMjYxNTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6a16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzAxODU2MDgzNTg0Njk5MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NzkxODc2MDQ0NjMxMTQyMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzAzNjAyMDM3MTIxMzkyMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8473d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjI2MDQ3NjY0MDk4MDI5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e6d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTAyNTAzOTcwMDcxNzQzMTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6d16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU2MzU3MzMyMDc4ODc4NDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjY4MTAzMTQ4ODU1OTg1OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDExNTcxMDQyOTk5NTMzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8773d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDE1MTQ4ODc4MTk0NzIyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e9d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzODIxNzQyODA5NDQ1NjgxNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7016da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTcwNTYyOTA3NTEwMzg2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bac5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDE2MTgwMjg0NTQ5MjY1MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTczMjk0OTM5Mzc0NDMwNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8a73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NjgyMDg4MzM3NTcyODU0ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ecd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjcyNzE1ODEwNTM5ODQ0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7316da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUwNDA5MzI1MjYyNzE0NDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk1NzM1NjUxODQ5Mzc2ODU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDQ0ODYzODgwMzE5MjY1NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8d73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODcwMTAzMTUzMDg3MDQzNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"efd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Njc2ODQyNDk4NDAwMDc2ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7616da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjUyMjI3NjY1NjY2Nzk4MDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDgzNTIzMjU2OTQ0ODA4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjgwNTc3Nzk0Nzk1MTg4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9073d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MDU1MjQ3MTk4NTY4NjEzNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f2d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTQ4MTI1MDUyNTY5MTc1NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7916da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjY0NTA3OTA4MDY4MTExNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDMyMzIzODA4NzQ2NjI4MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDgyNzYwNTQ5OTc3Njc1NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9373d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNTA4ODcwMDcwNTE1MDU3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f5d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3MTE5MTk5MzA4MTUxODA1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7c16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTcwMDA2NTA0MjUxOTk1NDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU0OTA0NzAwNjY1OTU1ODI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7062d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:57.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDk4NTA2MDc3MzY4NzI0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9673d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDk3NjYzMDU4MTM5MzY3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f8d4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTY5MDEzNzk3NDY0MDA0OTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7f16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzczODY2MzgzNzY0MzUwNjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MzQ1MTA1OTk2MzYyOTY4MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7362d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:57.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAxOTkyNDgyMTM2MzQzNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9973d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI3ODE0MzU3OTU2MzY2NTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fbd4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTA4MzQzNzc2NDQ4NTk2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8216da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMwODAxMjQwOTYxNzgxNTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ccc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzYyMzQ5Njg1NTk1NDU2ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7662d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTUwOTk3NTk2MTczNDk4MTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9c73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg4MTg5NDY0NjkzMjc4MTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fed4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDc2ODAxNTg1NTI5Mzg0Nzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8516da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk4MTUwMTI4NzYwNjU4MzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjExODU4ODExODY0Mzk0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7962d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MzkyNzEyODkxMDM2ODgzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9f73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjkyMDk2ODE0MTg5OTk5NTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"01d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzcxNDk4ODA1NzU2ODI2MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8816da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTc4NDQ4ODMzNDA0MDQ3NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDQ2MTQwMTA5MDcxNjk3MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI5MjQ3MzYwNjg4MDY2NjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a273d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTQ0NTY5NjM1Nzg5MjM3MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"04d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTUyOTI2OTA4NjE2OTE4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8b16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTQ4ODA5MjIyMTQ0ODcwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjMxMzcxMjM2MDA2MDQ4MzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUyNjc2MTA3NTE2NzYzMTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a573d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDE4NTE0ODk5MTMzMTI2ODUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"07d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDcyMjA1NjM0MzAzMzAxMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8e16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQzNTM1MzUyMjk1MjI5OTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjAwNjcyNzM0MzU3MjY0NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8262d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODEwODI0ODUwMTcxMjI4MDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a873d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzgwOTQyMDYxNTk4NDQzNjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA0MTkwNDI3MjE5MjgwNjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTU4OTY4OTU5MzUwNjM0MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzU3NjU2MDM2MDY2MzE4MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8562d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE2MTk0MTE4MDEyOTAxMzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ab73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTI0OTM0NzYwNTM1MTkwMjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0dd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMzg2MTU2NTQwNjU2Nzg1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2OTQyMjMyNDg3MTIyNzYzMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dec5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjI2NTI1OTk3ODI4NzE5MDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8862d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTI2Mzg3Mjc3OTg0NjgwMzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ae73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Njk4NTQ0OTM4MjU4NDU1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"10d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzk4MTU0MzgwNDYyMjkzODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU5ODkxNzE2OTUwOTE4Mjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTE3MTQ2MzU3ODc1NTg0ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE1NTUwMjMxMzc5OTY1MDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b173d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUxNzEyNzU3MDYwOTg1NzA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"13d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjgyMTUyNDU3NDU0NTY3MzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9a16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTM1NzgzNTU5MTA4NTc5MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzY0NTU4ODQ2Njg5NDU2MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg3MDQ0NTE0OTI0MDQxMjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b473d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzQ4NjA5NDE2MDU2MzgyODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"16d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEzMTAwOTcwMjcyMjE4MzkwMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9d16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIwNDQzMjk3NzUxMTA3Njg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjY0MDMxNTYyNjQ0NjkxMTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA4Nzc4MDE5OTI5MjgxMjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b773d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY0NjIyNzY3NzU4MTAwNzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"19d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjA2NDY1NzM0NzI0OTk2ODM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a016da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg1MDYwNzc4OTU2MjMzMDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eac5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3ODA4Nzk1MTYzMDExNzU3NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjAzMjkxMzMwNDU4Njg3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ba73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODI2Mzk2OTgzMTAwMDEzNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1cd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTUzMTY5NDg2MjAzNTk0MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a316da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTc1NDAzMjc0NTUxNzA5OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY4Njc0NDU1OTg0NDM5NjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Mjk1NzQyODE0NDc3MzQ5NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bd73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTAxODcwNTQzOTQ2NTQ5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1fd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTAyODk3ODYxMTI4MTQ5NTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a616da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTc2MjA0NzQwNzk5MjIwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA2MjU1OTM3MzYzMDQxMDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjgyMjYyMDExOTk3NDU2MzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c073d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjMyMDU5ODgwMjg3NzM4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"23d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMzM0NDI4NzI4NzU0NzY5MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a916da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE3MTUyMjk5ODQyMDk5NTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzMyMTUwNTI4MzA2NDI4OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzI2NDA4NzU1NjkyMzc5MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c373d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjc4MzkzNDU0NzUxODE1NTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"26d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTk4NDQwMDAwNzQ4NjU5NDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ac16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTE0OTIzODgyOTQ5MzY2OTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTcxMTY4ODIxNjEyMzIxMDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a062d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkyNTY2NzQyMjg4MTA0MTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c673d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTQxMTQ4MDM3Mjg3NDA4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"29d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0Mzg2MzEyMTg4MDQxMDkxNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"af16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTc0MjcyMjA2NzkxODQyOTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9c5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTUyODM4ODkyNzY3NjUzNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a362d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTgzNTQ1NTAxMDU1MDEzMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c973d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjA1MTQwMzg0MTkwNTE1MTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-02-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2cd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjQxMDU0NTIyODM2NDM3NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b216da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDMzODk4NzYxMDY0NDI3NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fcc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTg0MDEwMjI4NzQzMDY3MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a662d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NjE5NTEyODA3MTI4NTAwMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cc73d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjM2NDY2NTA0MDMyMzk1NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2fd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzYzMDA5MTcyMDc0MjIxODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b516da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI2NjM2ODM2NTk0MTI1MTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffc5e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTI1NzUxNDEyOTM5ODQ0ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a962d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDM0NTQ4NjgyNTYyNjAyNTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"07c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUzMjQxNzg4MjAyOTk0MDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"32d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjE1NDI0NDgzODY1ODUyNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b816da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU4NTk5MTE4MDEyNzk4MzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA0OTUzMzk3ODQ1NzgxNzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDAxNzM5NzY0NzQ4ODI5NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0ac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc1NzQxNjY4NDQzMDU0NjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"35d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY3NzE0NTUxNTEzNzQ1NDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bb16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzIzMjIwNzg2NjQwNTczNjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA4NjkzNDE5OTUyMTM4NzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODM4MDI0MDAwNTIxMDg1MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0dc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI5OTc1NjYwMzY5MzIzODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"38d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDY0NjUwMzgxNTA0NjE4OTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"be16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg1Nzk0MTExMzM4MTQ1OTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzI3OTI4MDI4MjQxMDY1ODM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b262d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDkyOTY4MTQ1MTkxMDEzNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"10c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Nzc1ODEyMzgyNzE1NzI1MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3bd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3Mzc5NDM1MjcxNDAwMjc1MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE1MTAwNzU1OTM1NTI1Mzc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTk5NTQxNzY4OTU1NTMwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b562d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTU1ODIyNTU2NTk3NjY3MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"13c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTQxNTkyODI5MDU4MTA0NDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ed5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDU1MzkwNjU0OTMxMDU0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTUxNDU5NTYyODczMTMwMjIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1MTAzMjEwNTQyNzgyNzI3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b862d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTg2MzMwODE0NDkyNDY0ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"16c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNTM0NDMyMTg5MjQxMzAxNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"41d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkxNjc3OTYxNjE1OTU2OTU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTU1MDI3OTQyMTk2MzY4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg2NTY0Mzg5ODUyNTA4NTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bb62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjMyMzUxOTQ1NjMwMTU0ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"19c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMxODM2Mjg4MTA3NjEwOTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"44d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjY3MzI3ODQ4OTg1NjMwMjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ca16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDU3MzI1MTMwNjUzODc1MjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTcyNTIyODQ5MTQ1NzMyNTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"be62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI5NTMxOTQ2NDc1MzI3NDY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1cc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzQ4NDg4NjM2NDM5ODkzOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"47d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MzgyNzMzMTM4MTE1NTI4NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDM1OTc5NTgyNjI2MzIwMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTcxNDMwNDAyNjQ3ODI5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjY2MDg4MDc4NzM2NTc4MzM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1fc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMwMzYyNjQ1NDY5MjI2MDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4ad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg4NDQwOTc3NjAxNjUzMzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d116da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDM5MjUxMTU2MDU1ODAzNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ac6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI3MzIyMTA1ODY1NDg3MzQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDEyNzk1MDAxMzQzNzY1NjI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"22c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MDIzMDU5NjQ1NjYxNTE5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4dd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4MTg3NTEwNjkwMDAwMjg2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d416da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDcwMjExMzU0MDc1MDAyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NzgwMjc2MDEwNDcyNDIzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzc3MTgxMTY2ODM3MDU1OTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"25c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQyODYxOTI0MTAxMDMzODk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"51d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNTc2NzI1OTcyMzY0NTk5NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d716da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:50.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjIyMzY3Nzk1NDU5NTUyOTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzOTY3MTM4MTQzNjk1MzE1NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ca62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI5MjcwNDI5MjYxMzk4Nzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"28c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEzNDAyNTA2ODkzMDIzODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"54d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDA4ODkwODMwMzA2NjQ5OTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:50.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgxNTA3ODkwNzIyMTU2MzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI4MDk4NzYzOTcxNDk4ODk3NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cd62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzYwNTA3NjY3Nzg0MDkyNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2bc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM4OTg1Mzg5NzI4OTU5MDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"57d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzQ2ODI1NjY1ODk4OTA1MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDMzODIxMTQ4MzA2MzQ0ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTMzMDA0NDYzOTg1NDY3MDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d062d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTQ5MTk4NTcyMzA2MjUxNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ec4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NjIxNDMwNTM0Mjk2ODk1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5ad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDQ5NjgzMDE1OTExNTY4NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e016da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzkxNDcxNDcxNjMyMjUzNzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0ODcwNzg4MjE2NjM5NjgzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d362d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU4ODcyMzExNzcyNDY3NzUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"31c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTcyNjMwNjIxMjI0MjYzMzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5dd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTE2ODE5NDY5OTE4MDk1MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e316da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTIwNTg5ODAzMDgyNDU5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2cc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NjI0Mjk2NjA4MzI3ODkwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d662d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzE5MTkyMzc2MzI1NDQxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"34c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjU3Njc0MjI5OTk2MDEwNTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"60d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTkwNzY2MTI5Mjc4NzI0NDI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e616da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzE0NDY4NjE5MzU3NDYyNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2fc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc1NjgxODkyODIwNDc4ODgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d962d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk3MzE1MjEyNTE1OTg1Njc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"37c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MjIyOTk5Mzc2MTc2MDIyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"63d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDEzMTg0NjEyMDQ4MDYxMjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e916da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTQ2NjM1MTcwNjI3OTYzMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"32c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Njc2Mjk4NjE1Mzk3MDkzMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dc62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUzNjM1NzMwNzE5Njc0MTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3ac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzY3NzE2MTU2OTQzMTk0MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"66d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDE1NDAyODUwNTg2ODE2MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTcyMjE5MjI5MDIzMDI3NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"35c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDA3MzU0ODQ4NDY1OTE3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"df62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODg1NTU0MDE3MjM4MTIwNTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3dc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTU2MDY1MjQ5NzQ5NTM3NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"69d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDMxOTY5ODIwNzc3MzQyMDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDc5MzMzMDE4NTI1MjQwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"38c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDQ2NDAxNTkwNTc4ODA1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e262d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5OTc0MTU3MjQ1NzQ0NjgzODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"40c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzYzMzY3NzY2NTU1MDg3MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6dd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE2NDg3Mjg3MDI2NTQxNzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f216da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Mjg1MDIzMDUxMTczNTY3OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3bc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzY2NTg2NDk2NzAxMTEyNzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e562d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYyMDMzMzcyNTIwNDk1Mzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"43c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzMwMzI5ODExNzUyMjI4NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"70d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDk2NDM2NzgwMjUxOTk3ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f516da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTQ2MjUzNzkyMTA5OTMyMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDUxMDUzODEwOTIyMDA2ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e862d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTg0MzI3MTQ5MzUzOTg4NDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"46c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTM0NzAxNzQ0OTE1OTU1MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"73d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDYyNjQwNDY3NzAxODc2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f816da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTAwMDE3NTcxNDM3OTg5ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"41c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTc4NTE5MTQ5MTIyOTQ3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"eb62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc2OTkwMjc5NDYxNjc1NjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"49c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Nzk5MDI2OTc5MDc3OTAzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"76d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ1MTA1NTg4NDcyMTY3MzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ4MzQ5OTA0MTg2OTc4MzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"44c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA0MTgyMDc2ODgyMDk2OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ee62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzU4NjczOTk4MzI3MjY0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4cc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjM0Njc4NTU2ODY3NDQxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"79d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjcwNDc1NDcyMTQ1NDMyOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe16da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjU4ODk5NDkzNTAxMzg3ODAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"47c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTc2NzgwOTcxNTM4MTI3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f162d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjY3MzQ4MDUxMTI1NTEzMTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4fc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzA1MTg5OTYyNTAxODQzNzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7cd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDcyOTYzNjc2MTQ4NTE5NDE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzc3NDU5MDc2MjYxNTc2NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ac6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDA1OTIwNDU1MDIzMDM4OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f462d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTMwODI2NDQ2MTU0OTkxOTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"52c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjA4MjMwMjYzOTU3OTY3OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7fd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjAyNjk1MjE2MjY4MjI0ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjI1MzQyMjQ4NTQwMjI5NTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4dc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzM4NTE2NDkzMjA4MzAwMTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f762d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg3NDU3MzMwNzAzMzQyOTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"55c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODAwNzgwODY4ODg1MDI4Mzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"82d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTY0ODk2MTM3OTU1MzM1NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjE0NTIxODc3Njk1NjIwNDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"50c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzU5MTEyMjA5ODk0NzIwNDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fa62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDQ2MTU5MDcyOTc0NDg4MzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"58c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDYxNTk3MTY1MzI4MzQwNzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"85d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU5MTQzMTk3NDg0OTM4NzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjU5NTg2MjYzNDA4NzEwMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"53c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQxMjEyOTk5OTg2MzUzMTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fd62d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjkxMTcxMTQwNjE4MzgyODczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5bc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTc5NjQwOTA2OTE2OTAxNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"88d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Mjg2MzQ4NTA3MjA0ODU3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTA0ODUwNjk2ODQ0MzE4NDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"56c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyOTgxODYxOTk4OTk4NTg5NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4MTU1MzMzNDE2MTE1MDQxODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ec4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTE5NjU0NjcwNDQzODAzNjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-03-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8bd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTE1OTE5MTIwMjk0MzQ3MTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1017da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzM0MDc1NjM4Njg4NDA0OTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"59c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NzM0Mjc3NDc5NjAzNDIwMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNjA4NjY4NzQxMTk2MDU2NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"61c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjQyOTMyMzUyNTUyODk0NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8ed5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDIxNDkyODQxNzY0MjU1MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1317da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkyMzE0MjQyNDgyNDI4NzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5cc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Nzk1NDgyNjYwMjY0NTU3NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjkyMTgwMzQwNzc4NzA4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"64c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzQ5OTc1NDgzNjY0NDIxMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"91d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTczOTA2ODE2MjY3NjQzNTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1617da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTkzMzI2NjEyNzM1MTk2MDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5fc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDM5MjY2NTYxNTk5MzA4ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjM5MTU0MTY5NDQ2NDkyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"67c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjgyMjYwMDQ2MjMzMDM4MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"94d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU0OTI3MDcyMDIzNjg3MjUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1917da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5OTE0NzYzODgyMDMyNTIyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"62c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTA1NjcxMDEyMTY0NDAxNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0c63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzExODAxMzI3NTE3MTk0NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6ac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTUxNzg1MDU5MjIxNjUwMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"97d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODczOTExNDE1NTI5OTE2ODc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDU3MDIxNzkxMjcwNDc2MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"65c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjE3MDU0OTQ3NDUxMjgyODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0f63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDM1NDc5MDA3OTg2NzY3MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6dc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE4NzUxMjYzNzc0NjQxMjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzgyMzc3NzI5MDc0NDYxMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTEwODYwOTE1NDQwNzExMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"68c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjIzNTAyODU1NTE2NTE3NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1263d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjQxMTg1MTQyMjAxODg0NjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"70c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTA5NjMzMTU5MTY4ODg5OTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9dd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0MTU1MzgzMTY0MDQ5MTM3NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2217da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQwNDUxODQ1NDc4Mzg1NDQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6bc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI5Mzc0MzIwNzQ2NjY0OTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1563d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA3MzM4OTI1MTI3MTU1ODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"73c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDYwODAzNDIxNzY3NDk4NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a0d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk5OTYxNDM4NTEyMTY4NDI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2517da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgwMDM3NTk3MzYxNzczOTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDk1MzY1NzYzMDc5ODQ4MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1863d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTI0NDM3NTAzNjc1MzY0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"76c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTczMzk2NDE1OTM3MTYwMzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a3d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTY3MzY3NzI3NjM0OTIxMDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2817da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzE5NDY3Njc4NTY1ODEwMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"71c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTMxODU2NTExMzczMDE5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1b63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM1Mjc0MjU4MTI3OTQwMDIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"79c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQwMDcyOTc3MTU1NjI1MTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a6d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDEyODkzMjA0ODAyMzQyNjIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMDI5MjAyNzMyODEwNDMzNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"74c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDA1NzcwMTQ2MTMwNTk3ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1e63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk0MTUxNzI0MzMyNjU0MTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7cc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzMyMDUyMDM4MTAyNjg0ODA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a9d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAxMzI4NTA0MDIxNjI1NDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY0NTgzNTA3MTM4Njg4OTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"77c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjc3MzM0NzA3MjY2NzEzNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2163d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTgzMjI4MzcxNzY0MDg5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7fc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njk5NjAyMDEyNTkyMDIzOTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"acd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODg3MTgwODI3Mjg5MDcxNTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA3NjEwMjI2OTYwOTEwNjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ac6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY4NzI1OTA3NTkwODU2NjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2463d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjI4MjU4NzY5NzQ2MjI0ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"82c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTk3NTk4MTAwMzkyODI5MjkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"afd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODg1NjA3MDUyODM2MTEwNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzUyMDIxNjU2MjMyNjU2NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7dc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjAxMjc1NjM2NDk1NjY2NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2763d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2Njg3MzEzNTg2MDQyNDIwODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"85c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI0MzQwODI4NDUwNDM1Njc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b2d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NzczMzA4ODE1NzE5MDI3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk1OTY3ODk4MTk5NjA4NDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"80c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQzMzMzNDQwMzQzNzYzNzA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2a63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0ODg0NjA5MTg2NTUzNTg5MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"88c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Mzk2NzAxNjg4NTk5NTU3MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b5d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTk5OTg4MTAxODg0NDE1OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTY5MjgyMjk5MTE4MjI2MjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"83c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1ODcyMzkyMTAyMjU5NzUwMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2d63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI2MDY3NzAyNjkxMTkzNDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8bc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyODY3OTk5ODI0MjcwNDgyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b8d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTE2NTUxNzI0OTQ0ODE4OTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg3OTIzMjgwMzM5NjQwNDI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"86c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDAzNTE2OTQzNTQzODU4MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzQ3MDY0OTMxNDI1MDM2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8ec4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTQwNjE5NzY1NDc0NTg3MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bbd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIwNTI3OTI1NjEzMDIwOTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4017da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1NTYyMTQ2MDcwNjU4NjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"89c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMTY3OTE3NDc4ODA0NjUxNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDIzMzk2ODU2OTQ0ODYxNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"91c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMDYzNzg5NzM2ODQ0MjM1NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bed5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE2NTk4MjE4MTYyNjg4OTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4317da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjAzMTc1MzY5NzEzNzUyNTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8cc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NTkzNjI1ODk4ODk3MDM1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTM3NDA3MTM1Mjc1Nzk2Mjk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"94c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjEwNDE2MzU2NDIwNzAwNDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c1d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTkyODc0NTczNzEwMDU0MDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4617da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjY5MjM4MDIxODEwMjU2ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8fc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODk4NDk4NzU3ODcyMTY0NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQyMzg2NjQ0ODk5ODM0ODk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"97c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTA0MzQ1MDkxNzE0MDkxODgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c4d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTkzNzM3Mjg2MzM0MzYzMjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4917da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA2ODkyNzU1NDMxMTg1MDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"92c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ4ODkxNzI2ODM4MjE1MTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3c63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgzODMzMTg2NDQ2MDczODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDgxODg4NjUyMTA3NDQyNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c7d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwNDU2NDMwODQ5NDk4NzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk4ODI2MDUwNjU3MTI4MDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"95c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODMxNjE2MTk2NDc5OTcxNDk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3f63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjUxNTIxNzcxMDYzODMzMzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9dc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM3OTI1NDEwMzgwNDA0NDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY0MzMyNzM4MDIwMDk2NTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjEwMDUwMTQ0Njk4NDM0NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"98c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODM4NTI3MjI0NjI4NTI1NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4263d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg1MDIxMTMxOTAzNDY1NTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a0c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODcwMzgwMDExNDU3MTg4OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cdd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDk1Mjg0OTc0NTY0ODcwNTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5217da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY1MDg5NjQ5ODQ5ODcxNjExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9bc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNjUzNDYzODE1ODgzNDUwODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4563d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDcwODY2NTEyODUxODY2MTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a3c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTExNjYzNjQzODg1NzU1MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d0d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE3NTU5OTgzNTAyMTMwNTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5517da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzAyOTMyNTM4MjU0MzkwMDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTMxMTYzMTU2NDMwODQ1MTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4863d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Mzg3NDY4NzUxNTk0MTc5ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a6c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMyNjM1ODA1OTE1NDQwMTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d3d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM0MDgxMDA2NjkyMjI0NzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5817da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTc4NzM5NjI1MzAzNzEyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a1c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzY0NjY0OTgwMTA0MzAyNzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4b63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NDM3NjUyODQ0MjQ5MzQxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a9c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTUyMTAxMzk2NTc2MDI4MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d6d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjY0MzM2NTk0Njc2NzY3MjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5b17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA5ODU4NTExODk1NDA0OTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a4c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzE5NTU0MTcxMDM5NzcyMTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4e63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTg4MjAyNDcxMzE0MTI1MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"acc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTQ2MjkxMjI4MzY2MzM5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dad5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkzMzE2OTUwMDEzNzYyODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5e17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ1MDMwMzM5OTc1NTczNTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a7c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc4NzAwNDQ1MDgxODM0NDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5163d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjkwODAzNDI2MTgyODI3NjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"afc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzU1ODAxNjI1NzUwNzIwNTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ddd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzg3ODA3MzY4NzE1MTkwMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQzNTg3OTQzOTA1OTg0NzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aac6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE1MzY5MjkxMjc1NTg2ODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5463d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjk5Njc5OTg5NzkyMzgzNzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b2c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDI3MTU2MDQxNDUzNjM0MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e0d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkxNzE2OTk0MDk3MjE1MjEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjcwMTAxNDM2Mjg4NzI5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"adc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTc2NDc4NDM3MTQyODY1OTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5763d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDEwOTE0OTgzMzg4NjUyNzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b5c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzQzMDY4NjUxMzY1NjE0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e3d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MTU2NDAxOTA2MDIyMzIyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjY0Nzg4NjQ0OTA4MDI4NDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b0c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTQ0NTE3OTUyMDc2MTQxNTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5a63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQwNjg1MDg1MTg2MTc4MTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b8c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5MzM0NDg1NTMyNDI3NjcyMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-04-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e6d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ0MDY0MDAzNTE5NzEzMzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6a17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODA2MjMyMTQzNjk3NTYwMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b3c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NzExMjAwNTM0Nzc4OTYwMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5d63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3ODA4NDU0Nzg2MTQxNjYzODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bbc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODA3NjIxOTM2MTkzODU1NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e9d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDU1NTI5MDU3NTY2NTg0MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6d17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTY1MDUyNzk2NjQ0MjYxMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b6c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQwNjMzMjk5MTU1OTc3MDM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjM3OTE4Njg0MTQxNjU5MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bec4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTUyOTIzMzIyNTMzOTA5OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ecd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI2MjgxOTkwNDc0Mzg0NDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7017da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDIzMTkzOTgxNzAzODE0MzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NzI1MDAxODg1NDA5OTc2NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDY5NjEwMzE4MTk5NjQxNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c1c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQyMDk3Mjk4ODcyNDgyNDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"efd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDcxODU3Nzk3ODkxNTY3NDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7317da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQ1MTQ5MzYwNDE2NjM3NjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bcc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3NjI3NTkyMzgyNDc2MDY3NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTI1NDg4NTgyOTIyNDkwNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c4c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODM0NzMxNTgyOTQ3NDAwMzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f2d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU5MzIxMTU4NDE0MjMzNTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7617da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDExMTQ2NDg2MzgwMTAxMTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bfc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTA4ODY1MTc5MjAwOTk1MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDc4NDcwOTI4Njg4Njg4NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c7c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTU3OTQxNDIyOTk5MjgwMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f5d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Mzc0ODc0Mzg3ODMxMDY0MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7917da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQzODg1MTMyNjQ2MjAxOTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c2c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:42.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:42.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNjY1MjgzNzIzMjUyNDM1NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6c63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjk0OTA5NjEyNjY1MDY1NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMTE2MDMzODI4NTY4ODc5NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f8d5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjMzNzI5NTI0MjA1OTk1MDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7c17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTU2OTc1ODU5Mzk2OTExNzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c5c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzODczMDg1NTg4ODcyNjE1NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6f63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTY2NjU2OTAwNzQ0Mjk3NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cdc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM3NzQ3MzQzMDMyMDQ0MjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fbd5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzc1NjA0ODc2MjU1MTI5Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7f17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NjA3OTg0NTE4NzUwNzM0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c8c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjI3NDMwODEzODA5NDYyOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7263d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNjU2MTM5MzQ4NTg2Njg0NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d0c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDI2NjM2NjYwNTMwNTc0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fed5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyOTU2NTgyNDcyMTYzOTg5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8217da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg2NTM3MTc2MTg3NDc0MjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cbc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxMTM0NzY2NTcxNDA1NDIzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7563d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0OTM0NjkxMDY0MzA1Mzg5NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d3c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDQ0ODc0MTc1OTMwOTY2MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"01d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTg0NTg0MDU4NTE3MTQzMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8517da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDUyMzg1NDA4MzAzOTk2NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDExNjYyMTA4Nzg4NDI5MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7863d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTg1MDc5ODQyNDQ2ODYzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d6c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzgwNjU3NzA4OTU1NTMyOTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"04d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU5MzA4MTI5MTQ0MTg5MDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8817da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTQ1NjQ2MzM5NjI0NDUyNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d1c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzQ3NDQzMzU1NDUxNzYzMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7b63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTA2MDU1MDUxMzA2NjE0MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d9c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc4MzI0OTA3MDI2MDI0MTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"07d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NjA0ODA0NjcxMzc3NDY1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8b17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Mzc2NDQ1NDA3NDIyNzE5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d4c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTc5NTAyNzc2MDc1OTEwMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7e63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzg5MDI1ODE4MjY0NDA4ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dcc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTcxMzk5NjcyMDI5MDg2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ad6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTE3MDA0NjAxMDY5NTQ4NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8e17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc5NDU0OTg0MzM2MTg3MTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d7c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTI5OTI3MDk4NTkxMTcwMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8163d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzM2MDUwMTYzMDUwOTI0MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dfc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDQyNDA2Njc2MTczOTMyMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0dd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQzMzU3MTI4NTkzNTkyNDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ5NTAxNTcyNTkwNTE5NDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dac6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDcyOTkyNTg3NDI0NDc2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8463d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDM0OTA3MzgzMzk5MTUwNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e2c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyOTM3MjQ0MDYwMzczNzM0MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"10d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODYyNjU4OTA2MzIwOTk1MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDEyNDc0NzM1Njc1NDA0NDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ddc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIzMzg5MDQ3OTcyNjA5NjgyMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8763d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA1Mjk0MzQ5Nzg3ODM1OTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e5c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MTkzOTg4MDUzMDM2NTU3MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"13d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI0OTU5MzQyODkyNjM2NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzU3NTAxNDY4Mzk1MzY1Mjk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e0c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5OTk0NjU4Njk2NjI4OTQ4ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8a63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTAxNzE1Mzc1ODE2ODI4NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e8c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5OTExNTEwODUwODIyOTY1MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"16d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1Njc3MTkxMzAwODA1ODA2NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9a17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwOTA2NjU1MTM0NjI1Mzc1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e3c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjA2MjE5NjcyODk1NDMzNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8d63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mzc1Nzk5NTk5NzE0NzM5ODU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ebc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTk5NjM2NDY1NTU4Mzg2OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"19d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjY5NDQ2MTU5NjY4OTk2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9d17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTUzNDY0NDQzMTgyNDM5NTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e6c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzA4MjQzMTcyMjQzODU2MjkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4OTQ1MTE3NDE4NTMzNzg3MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eec4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg3NTE1MDQ3ODQ1Mjg2OTExMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1cd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTE5ODU5Nzk2MDEyMjQwOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a017da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDU5NjI2MjI0MzYxNDQxMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e9c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ4MTA4MzExOTk4Mzc1ODUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNzQ4MTA5NzI5NTE3MDM2NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f1c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTI3ODMxNTcxMTQwMTc0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1fd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjYxMzA4ODkxMjgzNTk3MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a317da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg3NzMzNzgyMjQ1MTk2MTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ecc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NjQzNTI1OTY5NjUzMDU2MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzQ5MzUxNDg2Nzg5ODU0NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f4c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjM0OTM1NTAxNjcyMDk4MDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"22d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMjA4ODg5Njc0Njg1MzcwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a617da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MDA5NDM4OTYzODQwNjkzMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"efc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyNjM1ODM1NTQyOTgwOTcyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc4MTg4Mzc5NjUyMTM3NTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f7c4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE1Mzc5MjE5NzI4NzQxMjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"25d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjUyNjE1MTAxNzc2NTk5MzA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a917da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDE1MDkyNzI1MzgzNTY2NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f2c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE2MDgzNzU5NjU4NDc1OTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9c63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjk4MjE1MDU2MTc2MTI4NjIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fac4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE0NjA2MzA5MzkwNDU5OTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"28d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTY5ODk5NTkxMjc1OTQxOTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ac17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjYyMjIzNDk4ODg4NzI4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f5c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODIwNDU4MTYzOTg4OTg5ODQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9f63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDcxNDAwNjc0NjMyNTYxMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fdc4ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMDY5NzQyNjg2NzcxODM4MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2bd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTIzNjE1NjEwMDAzNDQ2NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"af17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDYzMzI3MTUxOTg4OTk5MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f8c6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMzIxMDgzODM3NzUyNTE4NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a263d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzU0NDgyNjQ0NDA0MjU1MzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"00c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQ5Njg4Nzg4NDk5NzY2MTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2ed6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzQ0NDU0NzE4Njc5OTU0NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b217da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTMzMzQ4MDEwMzAyNzI5MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fbc6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NDkwNDE5NTI5MTk0NDg0MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a563d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTI0NTQ1NDM0MDE2MTczMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"03c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2Mjc0OTk0NTY2MDM0OTE0ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"31d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTM0NDkyNDcyNjc2OTI3MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b517da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTU5OTA4MjUyNjM3ODA2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fec6e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjYwOTQxODUxNTU1NjU1NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a863d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDc4OTgxNTIyODUxMzIwNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"06c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzEzNDMwNzQ1NjU4MTk0NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"34d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE0NzQ4MTE1ODEwNDA1ODgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b817da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzU5MzY5MjA3Mzc5NjA3NjgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"01c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQ2NjY5ODA2MTAxMjM1NTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ab63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTIzNTU4Mjg4MDMyNzY1NjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"09c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDM1NTk3NjQ3ODAyMzgxNDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"37d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTExMDAzMzgyNjAxOTY1MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bb17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5Nzc3MjI4MzAyNzM1NDkwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"04c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA1NTgxNDM0NDg2NDI1NjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ae63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzNTEwNjIxMTE1MDk4MjgwNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0cc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzA3Mzg2NTUzNDM2MDMyMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3ad6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMjgwNzgxMDA2MzE4ODQ5MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"be17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTk0MTYzOTQwMDQ3OTc3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"07c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NjI5OTYwMjMwMzgwNzM5NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b163d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTUzNjE5MTc5MDg4OTY4OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0fc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMxMTcxMzc5MzExMDQ3MzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3dd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5NjA2MDg0NzM0NTIwODU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUyNDIxOTI3MjAyMzY4MjA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUxMjA5MjE1NTA1NTYxNTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b463d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTM4MTE5MTI0NDMzNjQ2OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"12c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDM5MTgwOTQ5ODk2NDM2NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"40d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzA4NTg1MjI0MjE3MjkzMTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjczNjY1MTMwNzc5OTU2NzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0dc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTk4NzUyMjkyODQ5NTYxMDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b763d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTM4NjAyODk5NDM1ODA4ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"15c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODM0MzcyNzY2MTAyMzkwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-05-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"43d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjU5NDk5NTc2NTA3NTkwMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ4MzczOTI2NTk0MTcxODI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"10c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NDY2MDg1NjY2MjYzMjEyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ba63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjkzMjI3OTc2MDM2MDQ3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"18c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTIzMTI2MzQ2MzI0Nzc0OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"46d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDQwMzE0NzE1NTU1MzMzNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ca17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NDY0MTI1MTYxNjA5NDg2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"13c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYwMjMwMDA0NDg2ODg4NzQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bd63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDQ5MjM5NzI2NzMwNTU5MTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1bc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjU3MjA1NDk1NDcyNTYzOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"49d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5NDIxMDgyNTY3NzQxMDY4MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cd17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTA3MzUyMDYwMjE0OTkxNjk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"16c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Njg1OTQ3NzYyODg2MzQ5NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQ1ODU5OTk4ODAxMTI1OTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1ec5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE3NTU5MzU1NDkyOTk0NjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4dd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTg3NDA1ODg3NzIzMTMwNTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d017da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg5MzA4Mjk1NTQ4ODIzNzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"19c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI2NDczMDQ4MjIzNDQzMDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjQ0NDY1MTkxMjYxNjc5NzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"21c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTI4NDYwODIxMjY5NTczNzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"50d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzk2NTYwMTg2MjM2MTA1MTMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d317da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA1OTM2MzI4NDg2NDY5Mjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1cc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzk5MDQ1NzU0NzI1MjQzNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU5NTc0MzI1OTU3MTM3ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"24c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTM1MDQyOTQxMzcyOTg0MTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"53d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMzQ2OTM5NjMyMTkwNzA0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d617da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTA1OTc0NDg1MDQzOTg0OTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1fc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODk2ODQ3MjUyMzIyNzY0NzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk1Njg3NjkyMjQ2Nzc1NTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"27c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM4MzA5MjIxNjg2ODE0MTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"56d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzI5NTI5MTMxODI2NjAwOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d917da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ1NDM5NTQ3ODgxMDI3ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"22c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNDI5OTg2MTYwOTY5OTg3OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cc63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjE1OTI0NDcyMjU1NjM4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ac5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Mjk0MTA1OTQ5NzM3MTIxNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"59d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDk0NjI3NjkzOTY5MTI0MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dc17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzI2Nzk5NjcwNTkyODc2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"25c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODIzMTA0MjA5Nzc3Njc1MTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjM5MzQ5Mzk1NzUxMDc3MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2dc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODkyNzAwMjA0Njc4NjA2MzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5cd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTMxMzQ0NTE3MDgzNzg4NDUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"df17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTc1MTAwNjQ3OTcyMzA2NTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"28c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ0NTk0NDAwMTA1NDk2NTAzNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d263d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMwMjU3NTQzNjg1MTYyNTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"30c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDEyOTc2NjQ5MjQwNjE3OTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5fd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzI4MDI2MDA3MDczNzkyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e217da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU5NTk5MDYwODg2NzEwOTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2bc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyOTE0OTE1NjMxNzAzMjUxMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d563d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTg0Mzg1Njk2NzYwNTAyODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"33c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Mzc1MDQ3NTcyMzIyNjE5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"62d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMjM3NTcxMjg0MTcwMTg3MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e517da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDI5OTQyMjI2MjE1NDYxNzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ec7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg1OTAyODg4NzI0MjE1NzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d863d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2NjQ3NjQ0MTgyMDg2Mzc4MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"36c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTk1MjQ1OTg1MjkwNzgxODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"65d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTExODE1MzI4NDQyMTcyOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e817da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjg3NjYyMzYyOTczMjc3MTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"31c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ0MTUxODczNzg3NDU3MjIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk1MjU3NDYzNDA3MTYzMzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"39c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE3NDM5ODQ4OTYwNDg4OTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"68d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:15.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NjU0NDUwODQxMjIyOTc4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"eb17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzY3NjU2NjQxMTkxOTM1MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"34c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyOTc3NzgzNjQ4NjUyMDg3NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODA5NDYwMjU2OTY5MjEyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3cc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTQ0MjY5ODg0NTI4OTQyMDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6bd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:15.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1Nzc4MDM2OTc1MjI5NDU0NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ee17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1OTYzMDExNDUwMDE1NjQ5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"37c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTQwMjQ0NDc3MTA4MzUyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e163d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE5MDU2ODYyMDgzMzE0MjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3fc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTA1MDQ1ODg1MTQ0NDg0MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6ed6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTY3MzgzODIzMzA0NzU0OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f117da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ2NjI5MzUzMDc2NDczMjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTM0ODgzNTkzNzQwODI0NjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e463d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzE3ODgyMzUwMjczMDY1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"42c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTQyNzkwNTE1MjY1MDgwOTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"71d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzI1NTk0ODQwMDkxNDcxNjgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f417da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDU1ODQ1ODIyODczMDA4OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3dc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTY2NTg5NDAzNjk3MjEwMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e763d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NTk2MzkzNjI3OTMzODQxNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"45c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjIxMTgwMzE5NDc2NDE5NjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"74d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEzMzYzMDU3OTcxMDY5MDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f717da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxOTQ3MTc4MjQ4NDM5OTIzMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"40c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjczNDAwODUzNjM1MTE4NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjIyMDE5MjgyNjY3MDM5NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"48c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjY2NDI3MTQwODExNjM5ODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"77d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDgzNzgwMjQ2MzUzMjY0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fa17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NzA1NTUxOTExNTQ2MDI2MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"43c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTY2MjQ5NDY0MjEwMTgwMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzU4MzA4MjgxNDM5OTgwNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4bc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI5NzI0MjE4Nzg4NDU4MDc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7ad6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDk3MjgyNjg2OTcwNjk0MDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fd17da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzAxMTAxMjA2NjMxODI4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"46c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODk5Njg0MDg1MjE5MjU1NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f063d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUwNTUyMTY0MDMwNDA4NzUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4ec5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MTU4MDA1MTM4NTE1NDQwNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7dd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk1MTAyMTI5OTIwOTQxNDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzY0NDAzNTU4MTY4MDk2NzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"49c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMzMzcxMTY2ODg0OTk0Mjg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f363d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzg0NTczMTM3NzA2MjUyNTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"51c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc0NDE2MjY1Nzk4Mzk1NDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"80d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc2OTY0OTMyNzgwODI1MjQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTU0MDMwNDA2MTU5MzMwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4cc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTg5ODYxMDI5MzE0OTUyNDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f663d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTU2MTc2NjU2MzgyNDE2MDgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"54c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg0NTkxNjMxNjQ2MTYzMjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"83d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODIxMzAzNzY3ODI5Mjg1MDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjEyOTI3MTI0MTQ4NjA1NjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4fc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjA3NDk5NzczMTkxNTgwMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f963d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTExMDkzODIwOTIxODMzMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"57c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjgyNTMyNTk5NzAwNjMxMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"86d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzI5MjY5NDI5NTQ2MzQxNjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjcyNTA2OTQ0NzMwNDE2NTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"52c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTg4MjA0NjcyNDIyMjg0MzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNTI1MTEwMzM4NzQwMTAyNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ac5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDQyNTE5NDkyMDg5MTIzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"89d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTE1MjU1NzQwMTAzMjgxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzU2Njg4MTY0NjUxMjk2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"55c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3Nzk0OTQ1MzA4NDc4MzcwMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff63d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTQ1NjU2OTQ0MTAwNDkxMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5dc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDE0Mjk3NzY4MjI4NjM0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8cd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNDcwMjMzMTQ3MTI2MTQ5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTMxOTQ1MDA1NzYzMzQzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"58c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjYyNjk3MTM2MDQ3MDc3MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0264d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTk2NjkwODY4OTA5NDk3NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"60c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY0MzEzMjQxMjkzNDI1MDY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8fd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTAzMzA1NTQ0NzA5NTk1MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1218da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4NTQ2MjI3MTY3NzUzMjEzMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5bc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzEzMzEzODU4NjM5NjM2NzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0564d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDgzNTY2NjYyODk3MTE2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"63c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjc5ODQ4ODA3ODU5Mzg4NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"92d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1MzIwNjYwNDczNzMxMTg5NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1518da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDk2OTQ5NDgyNTE0Njk5MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ec7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUwMjczMTkwMzkyOTUwNDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0864d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MjczNjg5NjEzMjU2MjYzMTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"66c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:06.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzcxNTg4NzM2NDM0NjE5NDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"95d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NzA4NjI1NjA5NjQ3MTkwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1818da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTc0NTAxOTU5MjUzNjMzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"61c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk1MzYxMjMyMzg1Mjk4NTU2MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NjYzODUzMjcxNjg0ODM3MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"69c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:06.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyNjI5NDkwMzU1MjMyNTM0NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"98d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1NjIyMDE5MDQwNTE4MDMyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzA1NTI3MDYyMzQyOTE5MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"64c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIwNzY4OTg4ODA1NjkwMDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDA4NTc1NTcyNTkxMjcyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6cc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDEzMzE4MjczMTgzNjc5OTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9bd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODIwNTAwMTc5NzU4NDQ2MzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjgxNTM0Nzk0MDQ0MTY4NzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"67c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDI4NDQ3ODU0NzM0MTI5MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1164d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzk0NjEwMTQwNjM5NjYyNzcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6fc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTI4ODMxMDM0NzY1MjUwMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-06-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9ed6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTY3NDkyNDQ1ODA2MjgyODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2118da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzkwMDEwOTU5Nzk4NjUwMzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY0NTQ3MTQ2NjYxMzU2NjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1464d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjY5MTIwNDE2ODI2NDQ1MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"72c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDcyMjQ2ODM4MTM3MzY1MTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a1d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc4NDg2MDgwNjMwODM0NTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2418da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MzM0MzkwOTYxMTA0OTI1NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6dc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODIwNTg4OTAwNDAxMTEwOTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1764d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTUyOTY5MTk5Mzg2MTI2NzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"75c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI2MzkxMjU2MTA4ODA1NDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a4d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ1ODg1NzkxMDk0NDU3NzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2718da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjY3MDc0MzkxNzI0MTQ1NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"70c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgxMTIxOTQyOTU2OTUwNDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk1MzY0NjQxMTEyNDQ4ODk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"78c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM5NDI0NzY2MjAzNzIxNzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a7d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNjQwODU4NDQyOTQ2Mzk4OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDU1MzQzOTI1MjEyMTc0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"73c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjExMzAwNjY2NjA2NzUyODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTExNDc4ODk0NTIxNzY2NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7bc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTcwNTgxMTgwOTk3NjE0OTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aad6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzgxMDAxNTAyODgxMzEyODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjI2NTI0NTg1NzE4MDE1NDE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"76c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkwOTYwNzU5MzYxNjQ1NTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk0NTk3MDcyNzQzODg4MzczMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7ec5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzE4MjY4NTU2NjU4NzUxNTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"add6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzczMTA5ODY3MzgzNzUzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODcwNjM2NzE5NTMyMTg1NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"79c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjI5OTYyMjI2NDE2NDM2NzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY3ODkxMTY3MjQ2NjgxODM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"81c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTE0MTYzNjkxODI2NzEzNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b0d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTg4OTQwNDQ4Njg0OTc1ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg2MjQzMDAyNjE3NzY4NDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7cc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzUyNTc2NTAxODA3OTc1ODY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1ODc5NjkxMTIxOTIxMDkyODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"84c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzk2OTM3MzE0NTAwNDAxMzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b3d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjg5NjA3ODQ3MzMyNDQxMTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDcxMDUzMDIwNjM2NTAzODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7fc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTYzNDI0OTEzMDk3OTIxNTg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMTE0NDMyNjExMTQ3MzI2MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"87c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjMxMzUxNzc4NDE1Nzc5MTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b6d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDM0MDkwOTcwNjIwNDE2MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NDM1NDQwODQwNjE5OTIzMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODU0MjMxMzM1NTE4MDY2MDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NjUxMDQ2NTMxMzczMTI2MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8ac5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTk5MTI2NDQyMTA1MDUxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b9d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjUxNTYwMzc5MDAxNTgzOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgzMDA0MzY5NDAwNDQxMTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"85c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg3MTY1MDY4NTM2ODU2NTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODU5MDEzMDU2OTkxNjM1MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8dc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODcxNDQ1NTU0NTY1ODkzMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bcd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMxNTk3MTQ2MTM2NDM2MjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTY2MTIzMTM2MjEwNDE3MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"88c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTQyNTgxMjgzNzg2NjM0NjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3264d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQxNDA4ODczODk2ODExMTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"90c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU4NDk1MDQ0MzExOTUwNzY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bfd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY3NTIwNjcyNjk4NzI0MjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4218da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzU1MjAyNjAwMDk0MzA0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8bc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NDYwMDMyNDgzOTgzNDIwNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3564d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NTIyNzIwNDk2MzQ3MDM0MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"93c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODA0MzUxNjYyOTE0Nzc0MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c2d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDEzNjQ0Mzg0OTE5OTc4NjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4518da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMwODYyNTk0ODkyNDIzOTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ec7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNzgzNDczMTQ4ODc1MjM1NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3864d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTE4MDM0NDU3Njk1MTA3NTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"96c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3ODUwOTMyNTYxMzg3NTQ5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c5d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTMxNDczNzQ4NTgyNjc3OTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4818da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzkzNTA5NDIxMDUzNjkwNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"91c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjg2NDE4MTM1ODY0NzU3NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjg2Njg1MjA2OTA1MDgyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"99c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzI1NDgyMDc0ODUwODk2Njc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c8d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODczNDQxNzAwNzYxODk2MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg5NTEyMDI0NjMyMDI4OTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"94c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDQ1OTUyMDU2ODQzNDAyNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NDMxMTM1NzA4ODkyODQ4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9cc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzg2Mjk3NzY2OTUzOTQ1NDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cbd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzcxOTYwMjIzNDM1MTM5NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTY1MDE5MDYzNTk1NDI1NzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"97c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTg1MDE2MzgxNDc2MDUwNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4164d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzcwMDAyMTQ3MTA1MDE2NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9fc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI5MDQ4NjA0MjA2Mjg5ODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ced6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDU3NTUxMDczMTEyNTE0MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5118da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTA5MDM3OTAwMDM2NDAzOTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNDY3MDAyMjUwMjMzMTQ1MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4464d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxNDczNzU0MzAzNjE5NTg0MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a2c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTM0MDIyNDIyNzEwNDI0MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d1d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTg5OTI3OTkyOTE0NjQ0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5418da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NjI4MDM2MTgzOTgyNzE3NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9dc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDU0MDg0OTI4NzM1MTk2NTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4764d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3MjYzODk4NzE2MTkxMDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a5c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTg0NjQ5NDU5NDE0MjI1OTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d4d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYwNDgwMjcxNjM3NzgyMzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5718da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3MDc4OTc0NTQzOTQ2NTIwODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a0c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjE2NTU2MDY4MDk2ODAyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDIwNjc2MzYwNjEzODk2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a8c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTI5OTg4NzUzMzc0NzU4MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d7d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjExNDM0MDAyODQxMzY1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM3OTUyODg4MjU3Mzc2NzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a3c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU0NzY5NTgzMDY0OTI5NTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTI3NTU0MDQ1NTg5NDQ2MzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"abc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDU4OTAzMjM3NjY0NzM5MDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dad6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzk3OTUzMDQ0MjExOTc1NTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODM1NTQwMDk5MjUwNTg1MDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a6c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NDExODUyMDg2MDIyNzIzNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzM4NzczODA4MDg0OTA2NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aec5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTI2ODczMzk2ODQwNzc2MTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ddd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NTY1OTEwNTA2MDEwNDE1NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQxNDQ0Mjk1MDMyOTY5MTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a9c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njc1OTQwNzI4NjA2NjM3NTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTkyNDAyMDU4NjY1NjIyNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b1c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODEzNTY5MjIyMzEzMTY4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e0d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzIzNTY0NzMyNTkyODcxMDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDA0NDA1OTIyNDI4ODIyMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"acc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxODQzNDQ1NzI2Njg4NzI0NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwODYzMTc5MjMxMDM4OTc0OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b4c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgyODgwMjcyOTk1NDI2MjQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e3d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODQ3NzIzNDY5ODg0MDE1NzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MjM3MTI4OTAyOTgzMzk4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"afc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTY3OTUzNTYyMjk1NzM2ODQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTExNDQ2NjE5ODM1NzA5MDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b7c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjYzMDQ3MzEzODI0MTMyNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e6d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjU1Njg1NDQ2MTQ5OTQxMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODc2MDIwODAwMTk1NjEwNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b2c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzgyMDQ5Njc4Mzg0MzU0NjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzQ5MzYwNDA0MDA2MDc5NDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bac5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTEyMzQyNjExMTgyNzMwNDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e9d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDM1NTA5MTgyOTc2OTY0MTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6c18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MDI4MTI2MTcyOTIxNDExMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b5c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzU1MzY5MTQ1Nzc5MjI2OTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNzYwNTI4MDU2NjIzOTA3MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bdc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTQxODI3NDI1OTYxNTQzNzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ecd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjUxNTE5ODU1MjE2OTI5NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6f18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMzUwNTAzMDg5NjcyNDE4NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b8c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTUyNzI0MjM3NTM2MjAzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6264d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUyMDAwNjM2NDEyMDc3OTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c0c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTI0NjA0NjcyMzQzODc4ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"efd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjcxODk1MDA1OTg3ODUzNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7218da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODQ2MDA5NTQ2NTEwMzkwMjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bbc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDU5NjQxODQ3MzA0MTAzNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6564d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE4Mjg5MDQ0NzM4NzY0ODg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c3c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTQ2MTk5ODIwNDY5MTAzMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f2d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNjc0MTc4MjAwNTcxNTE1NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7518da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDYxOTc2MjcyOTg2Nzg3NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bec7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODg2NDk2NjcxMjY3MDI3OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6864d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTAwNjI1ODM3MzExMzA5Mjk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c6c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzExNDA2MzIxNjk1NTQwMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f5d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDM0Mzc0ODU1OTQ3ODg3NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7818da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg1MTczMjk5NTU3MjU0MzE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c1c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzQ5MDkxODk5NzQxNTU0NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzE3NjU2MzU4MDI4MDQ2MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c9c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg4MjE3NDU0OTY0ODA2OTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f8d6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNjg0NjEyNjg5MTA4OTM1MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7b18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAyODQwOTAzMzk1MDUwMzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c4c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzAwNjU5MzA2MDgxNDkyNjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODEyMzQ0NzQyMzEzMDEyNDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ccc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTk0NDEyMDgxMjc0NzUwMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-07-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fbd6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTAxNDI5MzQyMTM0MDU4Mzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7e18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzMyOTEyNjU1NzEwNTgzMTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c7c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MjcyMDgxOTM1OTExNTEzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7164d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5MjE5NDU5NzQ3MDQ0NzcyMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cfc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTE0Njk0MzA4MzkwOTA2MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fed6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTI0NzkzNzMxMjk4Njg1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8118da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzcyNTU1NDQ1NzkzMTgzNDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODcxNjQyNDc3MjA5NzE1MjI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7464d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTE1OTIwNzk2MTQyNzUxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d2c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkwMzMzNDI2Nzk2MTk4ODExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"01d7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjIyNjkxMjYyNDk2NTc0Nzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8418da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMzgwNjM4NDU5ODU5Nzk3NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTE3MDgyNTkyODgwMjgzMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7764d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDUwMzM3MDYzMDA3MDI3NzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d5c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDI1MDg2OTUzMjc5Mzk5MzkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"04d7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMjkxODgxNzM3MjU1MTgwOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8718da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzc3ODE1NzU3MTI5ODc1MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzExMDcwNjA4NjQ5NjcyODgyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzMwMjc0OTY4Mjk3MTgzMTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d8c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5ODI0NjEyMzkyMDAyNjA5NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"07d7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDU2OTAxNDE1NzkyMTkxOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8a18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTA1MTAzMTc4NzQxNjE4OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzEwNjEyOTI2NTM0NjUyNTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzUzMzIzNTMxMzU3NzMxMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dbc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDQ3NTI0OTk0Nzk2Njg2MTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0ad7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTQyNjQxOTE4NDg4NDQzODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8d18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTQ4MTE1MjQ5NDMxOTEyNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTI3Mzg2MzI5Mzk3MDUxMzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjAxMTkxMzkxMzg1OTA0NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dec5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDQ3OTE5ODA2MjY3NjE3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dd58c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjE3ODMyMjM0OTg1MTI1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODg1Nzg3MDcxNDQxNjY5ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjg4MDU0ODE4ODM3Mjg5MjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5Mzc0NzA2ODc4MDU2OTE1MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e1c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDQ3NDM3NDY2NzAzNzI5NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e058c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTcwOTQwNTIzOTUzNTM2MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNDQ2MDc0NjE3MzczNDMyODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dcc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzc4MDc5MjU2NzQ0NTI4MjI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU0MTY5OTYxMDYwODM0NzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e4c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzMyMzA2MDY3MTI5MzA4Nzc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e358c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkwODI4MzM2ODIwNzA5NjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NTk3MTY0NjMyNDk2MDc3NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDEyMTk2OTg1NDcxNjMwOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQyMDkyMDY3NDA1MjQ1MjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e7c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODMwMzkzNjcxOTY5ODIzNTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e658c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NjE1MjE2NjgzOTE4Nzc4NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDczMjA5MDkzODQxMDYwNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDI2MDI2NjU3NzQwNTAxMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzQxNjc0NDA1NzAyMTI2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eac5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTM3NjExOTg1NTEzMDg5OTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e958c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MTYyODI0OTg2OTk0OTQ4NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9c18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjEyMTA3NDU2NjUxNjA2OTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDc0MTkxMTAzMDM5NzkwMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjA4MTI3NDc1NTIxODIxMjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"edc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTAwODg5MDY0Nzg2OTM5ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ec58c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MzA4NTkyMTg2MDM1ODc5NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9f18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MzE4Mjg3MzE1OTA2MzQ0NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTkwMTg3OTk2NjU2MTM2NTY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9264d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzA5NzE3MTQwMDE3NDAzNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f0c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjMwNTQwNzAxOTE1NDE3NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ef58c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY0MTIwNDMzNTIzODA4MDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a218da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MDE1NDA0MjU3MTgzMzY3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM4OTgwODcxNTk5MzQ2NTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9564d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc3MzYzMjI1NTU2MTQyMTQ5NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f3c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzQxOTY4NTA0OTM3MTY5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f258c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjY1MDY5ODExNzA2ODMwODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a518da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA4ODM3OTE4NTM3NDI0OTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eec7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Njg1MDMzMjY0MzUyOTc0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9864d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzEzODg0NDYwNzk2ODg5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f6c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDM4ODkxOTQxMTMwOTI4NDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f558c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjM3NzYzNTc2NTcwMDQ0MTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a818da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDMwMTAxMzYxMzk1NDI4NDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjcyODYyODQ0MzA4NzAxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTk4MTAxNjYyODM2NjQ1ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f9c5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTg3Nzc0MTI0MDY0ODY4NjQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f858c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mzc4ODU4NTk1ODExNjYxNDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ab18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgxMTAwNDIzODQ2MDAwOTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzIxOTM2MDU1MjgwMDMwNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODM0OTIxNTEzNjkyNDA0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fcc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQxMTgxMjYyNjcxOTIzNjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fb58c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwODQ5MjI5NjM0MTU0OTA0NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ae18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzExNTkzMjUzNTg2NTc2NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7c7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MjU1MDg3MzI5NTEzMDU3NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a164d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc5NjEyNDU4OTQ3OTY5OTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ffc5ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMxNTA1NDQxMTI3NTg4MzY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fe58c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0OTM5MjA1MTgwNDg0MjIwMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b118da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQwNDkyMzY3MTA2NTYxNDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fac7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjMwMzQ0NTY0ODgxNTQwNjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a464d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzgyODQ0MDk3NDQ2MDY5NzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"02c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc3OTI2ODU0MjU4ODI2MjIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjk2Mzg0MDM2MjI1MDk2ODI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b418da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjMyMzU1NDAyMzEyMDI5MTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdc7e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNTY2ODgyNzI2MDk4NTEwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a764d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM0NDIxODgwNjA1ODg5NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"05c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDI2MDg2ODgyOTY0MjY0OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMDczODEyNDAzMTAwMDIwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b718da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1OTc2NDg2OTA0NTY5NDk0MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDU1NjY1NjY5OTc3MzA1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODQ0NDAxNjIxOTIyNjEwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"08c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzExODgyMTA5MTk3NTgzNDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4OTY0OTY2NDU3MTQ3NDYzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ba18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Njg1OTg3NDg0Mjc2MjI5OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTQ1ODEwNjU3ODY3MTM1ODMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjU4NjgwNzIwOTQ3NjU2NjczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0bc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzUxNTQ1NDAxOTk0NTc5MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0a59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxODc4MDMzODk5OTQ0OTAwMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bd18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQwMTgyMzM0MzM5OTUzOTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MzYwNTQ3NDQ5NTM0NTIyNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NzYwNDc3MjM1OTk4ODY2MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0ec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODM3OTA2NzM2NTU2Mjg0Mzc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0d59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQ1OTQxMTYzMjc5ODk2NzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTAzNzA5ODE1ODk1NzU1NjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzUyNjI2MDgxNjI4MjQ1MDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDE4NjMzNjQxODIyODUzNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"11c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDgyODI3NTk4ODYwMzkwOTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1059c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTUwMDQ4Nzg2MzUxNzU4NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjIwMTgzMTQzODI4NzAyNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0cc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1Njk4OTE3MzA3ODEzNTQwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY3Mjg0ODM4MDM2NzQ4ODI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"14c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTE3NzY2NTYxNjY4MzEzNjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1359c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjgwNjM0NTk0MzEzMDU2NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc1NDEwNTExNjQ3NjcwODkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjcxNzAwMjk1MzAxNjcyNDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODY2MTMxODA1NDc3MDQ4MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"17c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NDUyODAzMTcwNTU5ODA2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1659c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjk4MzM4NDc3MjY4MzkxOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTY0OTE0MDkzNzcwNzQ1MzY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzAyMTk3OTI2OTEwNDUyNzkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDQ4NDQ4NTkwMDYxNTYwODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1ac6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg3NDU1Mjg3NDc2NjA0MjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1959c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzcxOTUzNDcwMjkxMzYxOTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cc18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTg2OTExNzg5Njc4MzYzNDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI0MjU2MjIwOTEwOTQ5NzkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk4ODM4NjA2NjU1NzM2MjE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1dc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjI1MTk0MDE1NDY3Nzc0MzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1c59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzc3OTMyMjg5OTIwMTMyOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cf18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTM5NjEwMjUzNTEyNTMzODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTIwMjQzMzIwMjUwNDUxOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c264d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NjU1MTg2MzM3NDQyNjY0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"20c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI5NzE2OTM5MzU4MTIwNTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1f59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTI3MDIzMTcwMDg0MTI5NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d218da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1Njc5MzgwMzc0MDUzMjg2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzY3Nzk4NDE3MTQ1ODc4NzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c564d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg2MTQwNjgxMTM1ODgwMzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"23c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2ODc1NDgzMjY0NTk2NjM3NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2259c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjUyMjczMzM3ODI4MTU3MzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d518da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU3NTU4NjY1OTc0MTY0MjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ec8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MTM2NzYxOTIyMDc0MTk5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c864d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTcwNjEyODQ1MzIzNDAwMDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"26c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzg0MjIyMjk3MjAzOTc3Mjg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2559c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjExNDU0NzgzNzI0NzM4ODI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d818da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDE5NzE3NTExNTE2NjExNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTg4ODM3NDQxNzIzMzA0NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDA4OTI3NDM4NTg1MjM4NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"29c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDA5MTczNjU0NTUxNzE5MDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-08-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2859c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ3NTYwMzU4ODIxMTg2OTM2NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"db18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTE1MTY1MTI5NzM2MjY4OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNzAzNjQ5OTg1MzQ5MzU0MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjc1MzExODY0OTQ4MDAzNDE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2cc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzMTU1MDIyMDYyNjY4MzcyMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2b59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk5MjI3MjE0OTM1MzI5ODIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"de18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzY1NTU3OTQ5OTgzMDA5NzY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0OTI3NDQxNjQ2MjQ1MDExMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d164d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQyMDYwOTczMzA5MzczNzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2fc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2Mzc1ODk5OTE1MTk1NzU5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2e59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MjgwOTE0OTM0NDQyNTc2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e118da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzI4NjkzMjc0MDM5NjQ1MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ac8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjY1MTg0NzQ3Nzc5OTA5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d464d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTM1ODY0Nzg1ODQ2ODI4MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"32c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTk5NDg4OTc5MTUyNzYzMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjk3NzY3NDkyMjE3MTYxMzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e418da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzIxNzcxNDA4MTgzMTI2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MjQzNzA4NDE2NjEzNTkwNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d764d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:58.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:58.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTM2MTU4ODExNjM2OTkzNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"35c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjQwNTM4MTg0NDM5MDcxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NTA3ODE3MDE1OTY2NTMyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e718da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NzAxMzY5NzI2Mjg2Nzk2MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMjU5MzY4MzYzMTA3MjI4NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQzODYzOTU4ODI3OTU5NTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"38c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyODE4MjMxNTM3MDY0MDAzNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDUxNTM5MzgwNjIyMDY2NzY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ea18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTU1MTk4MDI3ODk5ODgyNjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 1,\n            \"bookingsAssignedRoom\": 1,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 2,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzM3MTQyNTQ3MjgyMjY5Mjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc0MzExNzU3MjU4MTc4NzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3bc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NDY0OTQ1ODIxNjYyMzAxODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3a59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzODk5MTU4NDg5OTk0NjY0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ed18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTUyMDkzOTkxMTk2MjYwNDE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAxMDQ2ODEyODY5NDYyMDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTU3NjUyOTAxNzM3ODkwMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3ec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzgzNzY3MDUwMjM5NTQzMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3d59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODEwNDg5NjcwMDk4MjU2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f018da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE4Mzg5NDk4MjMzOTM1MjkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzQ2NjM4MzA2NDc1MTE4NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjc1Mzg2ODcwNjEzNDAzNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"41c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODEzNTk2ODU1OTUxNTk5NDAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4059c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzM5NDcxODc2MTg5OTk4NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f318da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM0NDQwMTc1MDM0OTIzOTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3cc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA0MzM3ODE5MzQ1MjY0Nzc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjMwNDA0MzIyNTgwODMxNTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"44c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDAwNTc0NTAwNTc2NDA2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4359c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MDQzNjMzNzU3MzM3ODc4MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f618da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTgxNjY5NTkwMzkwNTUxMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE4MTc2NTQ0MDc1NjY0MDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE4Njg4ODEyODQ2MjcxNjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"47c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAwNDYyMDM1MzIxMjg3NDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4659c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTUyNzk4MzY0NjMxNDcwODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f918da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODExNzI3ODg3ODQ0MDY1MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDMwNTkyMTE3OTc5MDc5MjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDM3NzM4NTU3MzcwMDk0MzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4ac6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDk1Nzc3ODI2MTIzMDMxNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4959c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDkwMzk3Njg1MDcwNzM4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fc18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NTUyMjEzMzcyODEyNjg3MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5ODkzNDc4NDE2NzM1NzExMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f064d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ1MjgyNjMwOTk1MzY5NjEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4dc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MjgwMjIyNzk0NTQ0MjAxNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4c59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDQ4NzM4NzYxMDA4MjgzNDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ff18da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDM4OTQyMTI0MjU1ODAyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ5NDExMTA5NzkwNjA4MzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f364d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDA4MDEwMjkxNTcxNTM0ODUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"50c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM3NTE5NDczODIzNTczMzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4f59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDYzMDU2OTQ3MzA2NTYzOTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjkwNDg2NjEwNTUwNTY2NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODA4OTg4Mzg4Nzk1MDg0NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f664d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDEzNzk5Nzc1NjU4MjMwMjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"53c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MjU5MjIxMTI4NTQ3MDQ5OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5259c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTkxNjg0NDI1MzgxNzU4NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:51.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:51.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAwODEyNjczMTg5MzM1MTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ec8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NTgzODc0MzA1NTgwMDAzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f964d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDczMjIxNTE0NjgwMDA3NTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"56c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjcwMDE3NDQ0NDkxMjExMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5559c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY3OTEzNDA5NTAwNjQ2NTc1NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDUzNzU0ODY0NDY1MDc2NjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTM3MjcyMzkxNTUzMTc4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTQ3NjMyOTk3OTUwMzYwNTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"59c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDQ2MDQwMzg3NTQ4MTcwMTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5859c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDY3MzQyMDMwMjY5MjI2OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0b19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2MDUxMTQxNzcyOTE1NzgyMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjQ4MzU1MDkyNDIxMDYyNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff64d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTgyMjA0NzIyNzY4NDU3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5cc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5OTEzMDg4MzUxMjUxOTM3MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5b59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Nzk3NTgyOTc4NzY2NzcxNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0e19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkxMzU1NTUyNTg5Njk3NzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjM0NDI5NjExODU3NTA5MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk1MTU1MjExOTgyMzM3NDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5fc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODQwMjU3NjMxNjMxODA1NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5e59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzkyOTIyMDE0MTg2MjE3MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1119da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTYxMjc4NTYxNTI5NzY4NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ac8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4Mjc1NTQ0MDcyODExOTk3OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozk2MjM3NjY1NjQxNTQ1MTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"62c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjQ1NDM3MzIxNDc4NDY2ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM4OTUxMDkwNjQwMTg1MDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1419da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDI0OTM2NjM3ODY1NTE4MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDMxODc0MDE2NDgxNzg1NTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0865d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDg0MDkxOTk3MzQwNTczMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"65c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MDYwOTMyNTYyNTc5ODM0NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDUxNTM1NDU1ODY1NTUyMDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1719da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg5NzYwNzg0OTc5MDUyNDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMjg3MjczODU0MTAzODUwNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODYzOTA0MjA0NzQ4ODI5MzA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"68c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQxMzE1MzYyMDIxOTUyMTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjE2MzgzNTI3NTY5NzIwNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1a19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzAxNDA4Mjk1MjQ4MzI5MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTQ2NDQ3MzQ4MjIwMzEyMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0Mzc2OTIzNzc4NTgyMjQ4MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6bc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTAzNTM3ODM4ODY0NDAwOTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6a59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2NTM5NjMzODU1NTk3MzI0NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1d19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTk3MzUwNjY3NTQxNjgzODYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODE1MjIyMTkwMzM4NDU3MDYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1165d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA2Njk2MjUxNjExODEyNzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6ec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc4MTY5ODgxMTYxNDUxMDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6d59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzU1OTE4MTA3MjY0ODIwNjc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2019da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg2Nzc5NTY2ODYwNTExMDg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzcwMTk4MTc5NTM0NzM5OTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1465d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM4MzcwMTczNjk2NDc5NTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"71c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTUxNjg3MjY5NTYxMjgwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7059c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjczNzAwMDE5MjYzODI3NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2319da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjUzMzM4NzA1MDk2MDU2MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6cc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Mzg5OTQxNTQzMzM5NTU4OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1765d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTYwMDY0MTEzNzgxNTA0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"74c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1MjEwNTAyMjU3OTE2NDc1NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7359c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ4NjgxNjIxNjAwNTUzMzU5MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2619da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzkxOTQwNTUwMDk1Njc4OTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MTI2ODk2OTY0ODg2Nzg2MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTAyMDIyMDY1NTU5NDQ0MDI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"77c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTg1ODEyOTgzNDgxMzc0MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7659c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMjAxMTE4NTA2Mzk0MjQ4NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2919da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzU4NzYxMDAwOTc0NTkyODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzQxMTEzNDU5NTkxMTg0MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDg5NzYwMjE0OTkyMTAxNTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7ac6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzg2MzA4NzA0MjQ5MTI5Nzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7959c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc1NjYzNDI2MzcxNjMxMzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2c19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzYyNDgyMjIwNDE2MjcxNDExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzYzODI1OTY2MTg5MTQxNjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2065d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzkxODk2Mzg0MjczMDI2MDc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7dc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NTM5NzYwMzY4ODIzOTI0MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7c59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODMyNzE2MjE5MTQyMjgxNDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2f19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQzNDkyNTk2OTk3NjA4NzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODA1OTE1NzExMTc0MjUxMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2365d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDQzNjIyMTM4NTU3NzQ1OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"80c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTUxMTIwMTI4NjY4NjkwNTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7f59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MzQxMzM4MTUxNjAxNDk4NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDE1MDA3NjY5NTE0MDE5MDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDkzODM5MTUxODE5NjIzOTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2665d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODQ5MjI4MzIyNzc1Nzg0NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"83c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDk4MDE2MTE3OTQzNDU1NzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-09-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8259c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY0MDExMjgyMzcwODg5Nzk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Mjk5OTA2Mjk0ODMxMDE2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ec8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTMxNDIwMjA0NjI3NjAwMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY4MTI2NTE2NDY3NDg3NTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"86c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQxMjM3NTg0NTQxMDU1MTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8559c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzk3NTcwMTI4NjQxNTk4NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMyOTMwNjA0NjE0OTM5OTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MzM0NDQ4NjU4Mjk0NjI1MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1MjI4NTcwMDExNDIyODY3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"89c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTg4NTYwNjU1NTM4NjQwMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8859c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4ODMyOTU3MTY4MzcyOTU3MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3b19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTc3NjgxMjg2OTAwOTgzMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTk5NjQ1NjgzMTI2MjgyMDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzY3Mjg3MTczNTkwMDI5NTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8cc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ1NTQ4NzY1Njc3OTgzMTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8b59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODc1OTA0NzA4MDE4MTE1NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3e19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjIzNDM3MTA2NDg3MjU2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTQxNjM1NTkxNDcwNzYxMzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjAxNTA5MzcxODczODc2MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8fc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MzkwMDM5NTEwMDU4MTAyMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8e59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTUyMTIxMjgyODg5NjgyMjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4119da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzQ4NzEwMDI0NTk2ODg1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ac8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDQ1ODc5ODAxODIzMzYzMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTg2MDk2MjE0NDA0NDc5MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"92c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg0Nzg0MjI0NTM3NTg0MTA2MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTA2NjA4MzQ1NDQ0NzQ4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4419da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwODc5OTEwMDgzODE3MzQ5MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NTg5Mjc0MjQ3OTY4MzU3NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3865d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NzM0NDgwNDI4MTI1NTgyNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"95c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTc4Nzc0NjUwMTQ3Mjg4NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzUyMzMyMDMwNTc1Mzk2NzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4719da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDgzOTI4OTMyOTEzNTI2ODM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY2NzY1MDY3Njg1NDM4NzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzk2NDU4Mzc4NzUxNTMzNDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"98c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTQyNTI5MzgzODYxNzc2NDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzU0MTc2ODI4NDQ0OTA5MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4a19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzg2MzQ0MzQ4NjYxNDcxMzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzNzg4Mzc2NTI4MjQyNjg4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNzYwNTc3ODc0NTE4OTEwNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9bc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODE0NzMyODY0MjA4Nzg5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9a59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5Mjg1ODE5NDYzNjQzNzQ1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4d19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDIzNDQ3NjEwMjI0MTU5NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjQ0NzE1MjA5NzgwNzY2MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4165d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzcyNjEwOTAyMDYxNjI1MjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzI2Mjc5MjA4Mzg4MzgzODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9d59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzODg5NjU0MDMyODY0NTI1MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5019da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzEzMDQwNDY5MzYwMTQxNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMTk2MzIwMDgzMTEzMTYzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4465d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NjA3NzU4MDM0MDc5MTc4ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a1c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzk3NzI2NjIzMTE2MDE4ODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a059c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTQ0NjY1OTg0NTM2NTEyOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5319da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODc2NDcwODg2NjE5ODY3MzIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9cc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMDc4OTc0Mzc3NDgwOTAyNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4765d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjgyNzcxMDg3MjQzOTU1OTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a4c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzkxNjQ3MjE5NDgzNDc2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a359c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDMzNjg0NDg0MzcxOTU5OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5619da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzE4MjAzNDMwOTQ2MjM3NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MTQ0NTY2MjIwODAzMDU5MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MDA4MzYyMDcwNjcxODAxNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a7c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDg0NzU1MjM0MjMwMTk3NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a659c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDE5OTMzNjI2OTI3Nzg2NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5919da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzY4MjAyOTQ4Mzg2NDEyNTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MTIzMDMyNzgyNDI0MDQxNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM4NjU1ODY0ODk3MTQ3NDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aac6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTE3OTgzMjE5OTE3NjkwNzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a959c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDc3MTkzMjU4NDMxMjI2ODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjU0MDY3NTUyMjc1NjM3MDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTk3NDExMDAzMzk5ODA1NjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5065d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTE5NjIxNjk2NDAyODQwNDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"adc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njc1OTEwMjAxODQ0NjEwMzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ac59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTQxMDI3ODUyNTkxODU3MzUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MTkwMjEwODE2NjE0MTYyODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODExMTg2OTI0MzU0MDI0ODMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5365d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxODQ5ODg0NjA5MDQwMjgyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b0c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDcxODQ2MDUxNTkwMTM4ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"af59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzQ1NTQ1NDE1MzQ1NjM4NzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDY0MDQ2MjY4OTg5NjkwMjMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NzAxOTUwMTcwNDk0MDc4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5665d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTcwNjg0NDA3MTQwNzI3MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b3c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjM4ODMyMjM0ODM0NjEwMzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b259c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA3NDQ2Nzg0NTgyMzMxOTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTUyMDYzNTU1OTEzNTc4MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aec8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgxMzA0OTU2MjU1MDc1NTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDYxMjExNDMzMzM2MjE4NjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b6c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDExMTUyOTc2Nzk4MzEwNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b559c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzEzOTY2NDc4Mzc1NDYxMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1OTgxNTY2NjEyNzk1ODg5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIyNjQyNTUwNzgyNjkzNTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4OTUxMjQ1OTA0MDUyODg0MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b9c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDI1NDY5NTg1NzIzOTg4MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b859c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjEwMjE1Mzk3Njk4Nzg4NTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTczMjA5MTQzOTcxNzQ0MTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcyNzU3ODMzODk2NDU3Nzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MTgwNTM3OTY0NjU1Njc1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bcc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzQxOTU3NzQ3Njc3NDQwMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bb59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NDY0NjQ4NzEwNzAxNDkzOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYxNDY4OTI1NjM2MzA2NjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTg0NjQ1NzM1MTM1MjM1NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjAwMTcwOTM4NzM1MTA0MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bfc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDIwMDQwNjQwNTg3MTEwNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"be59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4Mzk2MjAwNzk0MzI2NjU5MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7119da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE5MjM2OTE2NTc4MTA2NTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bac8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjM3NzY1NjQ1NTMxMzU1ODgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MDY3NTMzMjg1NDM4OTQ0OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c2c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODkwOTYzMTU3OTY0OTI4NTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0Mjk5MDIxNzYyMzQ3NDU0NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7419da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NjYzNzcxMTc0MzY3OTE1MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTUyNzc1MTA2NTkwMDI1NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6865d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MDI3NTIyMzM3ODM4Mjg4NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c5c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNjkyMTcwMDUxMTM4MjY0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMzkwMTY4MzcwMDg3MTUwODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7719da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzMzMDQ4NDc0Mzk2ODU3MjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIwOTA5MTIxMTE5Mzk3NTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkxMTk3MjYzMDc1MzkzMzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c8c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MDk1MDA1ODQ1MzMyNzU2NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDExMzQ0NTIyMDM3MDI3OTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDM5MTQxODA0MzEyMTMxMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDk5MTA5NjMwMjI4Nzg0MjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDAzMjg1ODA3NzU0NDk0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cbc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Mjk2NTc3OTY2NjM3MzUwODQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ca59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI4MTQ2NTY5NTMzOTI3NTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM4NjI3MTg4NjQzMzMzNDM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjQxNzMwMTU4NTY5OTY2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7165d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDE3MTQ1MzIwODU0ODIyMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODE0MjY2NjY0NzYxNTgxOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cd59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNDA0MzY2ODIwMTQ3Mzg3NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8019da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTc4NTc2MjY4MTYzNDQxNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyOTc0MjAxMDAwNDI0MzgyMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7465d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTI4MjEyMjI4MDQwMzY5ODIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d1c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTYwNDgzNzA1NDA4MTk1MzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d059c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTA3MDAyMDM4Nzc3NDU4NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8319da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg4NDg0NzMzMzY2MjQ4NTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ccc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzY5MjMxOTM3NTEwODIwMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7765d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNzgyMTE1NjYwMDA1MDg3OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d4c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODg0MDcyNDU5MTYxMzI1MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d359c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODMxMDA3MzcxNzA1OTMzODU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8619da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODQ2NDA2OTgxODAwOTQzOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTIxMTA1MjExNDUyNTk2NTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDg0MzQ4NzYwOTA0ODU0ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d7c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzAyOTQ1NDg0OTU0Mjc4MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d659c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTAxODcyNzA1MDc2MzUyNTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8919da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDgxMTA1MTI0OTgzNTYyMDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMjk0MzU1MDMwNzc0MjAyODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNTk2NzQ5ODQ3MTQ0NzEwMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dac6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjI2NDE3ODc4MTMyMjkyMzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d959c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzEyNjEwNTkyODQ2MDY0NjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNjEwNTg0OTEwNTM2MDgyOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM5NDE2OTU4NjQ1OTI5NTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8065d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc0MDgxODkzODM4MTc5NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ddc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTQyNDY3NzU4ODk0Mjk5NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dc59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MjA3OTE0NjkxNjI0MjI4NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzI4MTg3MzExMzMwMjUyMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDE4MjUyMzg3OTUyNjE1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8365d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTg5MzM5NDU5MzMxMzY0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e0c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE4NDQ0MTgwNjU4NDk0NjgwMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-10-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"df59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY2NjQwOTYxNzIwNDk1NDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjI0MjkwODY0NDIyMjcwODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjIzMjE0MzUzNjQ1OTEwNDc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8665d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTIyODI3NzQyMzE1MjgwNDY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e3c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjgyMjIyOTkyMDQxNzc2NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e259c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYzNDcwMDcyMTA2NzI4OTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyODE2MDAzNjM1NzM4OTU0MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dec8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTA4MjY3Mjg0NDU0NjExNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU5NjAyMjY3MzY2MTk3Njk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e6c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNjY3MzkzNTI1MDI0MjYzODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e559c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjkwODg4Mjk1MTMzNzcyMTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM5MDUyODg3MjUyNzAzOTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MzE5Mzg5MDc5ODMyNDcwMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjQ3MTM5ODY2NjQ2ODc1MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e9c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE0NzM3Mjk4NzA3ODAzMDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e859c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMTA0NDI4NjEyMjcyNzc0NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzA1MzIzNDcwOTM3MjQyMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMDQ0NzgxNjczMDIwOTU3NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMzc2Mjc4Mjk0MzU0OTk1NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ecc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ3NDk2NzkxMjAxMzQ1OTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eb59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzIzNDQxMTIxOTE2NTAyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MjQ3Mjg2ODE3MTYxNDM5NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzcwNDMzMTk2NDU5ODU1MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDQzNzM2MjI1MzA3NDM1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"efc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTU5MTUyNzgwNDc2NjIzNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ee59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzODYzMTEzMTkwMTA3NzA3MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a119da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTQ0ODU0MjI5Nzc2Nzc5NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eac8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTc0MjExNzUwMTQ5MTAwMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODA4MDY1OTgwNjUxNDYyNjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f2c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTE4OTY0NzQ3OTM5MzU4MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f159c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMTIwNDYwMjIxNTM5NzA5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a419da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDY2Mzk0MTQ2NjY3ODYzNjAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk4MjIzMDI1ODg3NzI3MTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9865d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTM3NjkxMzM5MDM0NTIwMjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f5c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MjY5NDMwNTYwNzk3NTMwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f459c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTk2MzI1OTkwMTA5MTA5NjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a719da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNjEzNDU2MDU2MjI4MTgzMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQwNDc1ODc0NTIxMTQ3NzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0ODM5MDczOTU0MjE4NzE2ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f8c6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg1MjQwMTc4ODc1MTYzMDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f759c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODgxNDI1MDA3OTIzMzQwMjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ2MDc1MzUzODQ4Mjk0NTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:43.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:43.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQxNTQ3NzIyMzA2ODUyMjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2OTI2NjQ4Mzc4NTQwNDU0MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fbc6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTQzNDEyODc3NDcxNTAzODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fa59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTc4OTYxMzQ2NDY3MTM4NzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTAzMTI2NTIzNjY0Nzg4MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzU1NDk5Mjk0NTIyNzg2MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a165d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzgwNjgwMTI1NTg2NjgwMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fec6ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMyMTAzODgxNzE1NDgyNTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fd59c36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQwNjA1MzAxMDU5MTEzNTE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b019da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzMyMDM1NDU5NTAzODAzOTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9c8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTMwNjk2NzkwNzMyNzg5MzIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a465d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTkzNTkwNjM4ODcwODcyMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"01c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NTA2NzkxMDkwNzY3OTM1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"005ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjY0ODI4ODE1MDU0OTcwMzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b319da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTUwOTA5MDg1MjQ3OTgyNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fcc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Nzk1NTI1NDQxNjQ1MDYxNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a765d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk2NzAzMTYwMDQ3ODY2ODI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"04c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjIxNjM1NTQ1NTM5MTU0NTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"035ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk4Mjk4NDczNDI4NjQ3MjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b619da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MjUzODY5NzExNzM5NDg1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffc8e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3OTE0MTU4MzczNjMzODMxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzkwNzcwOTU3MDM0MzM2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"07c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDUwMjczMTMzNzM4ODkzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"065ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjYyOTM5OTY1MzAzNjE0OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b919da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzOTIzOTUzODgwMTQ3ODQxMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NDkyMjcxNjUwMjk0MzQ0NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MjE1ODU0NTI0NTM4NjY2MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0ac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTEzOTEwNjAxNTkzMzM3ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"095ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzk3NjY4OTI5MDY5MzgzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTM2NTUyNTY4OTc2OTY3MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzOTQ2NTk2MDQ3OTczNTcyNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b065d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODEzMTAyNDU2NTY2NDE5OTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0dc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTcxMzIzNjI0NDQ4NzY1OTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0c5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzU5NzM2NDUzNzg5MzE5MjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg4MDk0NzExMDk2MjMzNjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDMzNDE5MTg4MzkyMTQ2NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b365d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjAyODY5NjY1NzQ5ODM5OTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"10c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU0MzY3MDAzNzM0MjEzNDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0f5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMjMyMDc0NjA5OTY4NDkxMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDgwOTkzNTI2OTg4NjYzODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODUwOTY4MTY5Mzk1OTc0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b665d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Mjg3MDQ4NjQxOTM4OTg1MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"13c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2OTI5NDQxNDE3NzI2MjcwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"125ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:16.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:16.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzk3OTA0MDUzNTQwNjI2MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjIyNTQyNjM3MTM4NTQxOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjU3NTE2NDE0MzU0MDA3OTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIxODY2MTk2MDU1NDMzOTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"16c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAwMzM4MjY4NTUzMzIyNjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"155ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU2MDAxNzYwNzIyMDI0MTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzcwMzA4MDkyMTA1MjgwOTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTkxNjI5OTU1NTc3NDI0NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgxNDIzNzA3MjU4NDMwOTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"19c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDIzNjk3NDYyMTI0MDAzNjIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"185ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTg1OTg0Mjk3MTgwNjUwNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTAyMjk2MTA5MTAyNTUxNDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ3NDgxMzM0MDAwNjYzMzU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTgwNzg5MDA1OTg3MDQ2NTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1cc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNTY4Mzc2MTg2NDE0MTA0NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1b5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTE0NTI1MDg3NDAyOTE4NTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDYyODc3MDA0ODIyNDkwNDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTcyMzQ3NTcwNzM0OTU5NjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjE3MTg1MTgxNzA1ODI3MzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1fc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTEzNzE3NDE2MTQ4MjUzNTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1e5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTA4OTg2NDg2MDk5Njk5ODExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d119da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU3MTQ4NTczMTI2NjIzMzIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ac9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMxNTc4OTE4NTc5NDYwMTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTEzMTQzNTUyOTA0MjgwMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"22c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjk5MzM1OTc3MjQ0NTEwNzY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"215ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjY0OTI2NjAxNjUxNDAxMTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d419da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY1NDQ3NzA3MjE5ODAwMjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTcyMzc5MTE3ODM2NzM4OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzM3NjEzODIwNzY1MTcwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"25c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDA5MDM1MDE2MDI5NjczNzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"245ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzczNDg3MTU2MDA0MzIxMTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d719da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTkwNjQ4OTIxNjk2NjcwNDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM4NzUwMDUzNzk2NTI1MzExOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cc65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjkxOTMzNjY5MTM5MjgyODIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"28c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTU4MTkzMjAxMDg5MzgxNTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"275ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MjA5ODMxMDgzNDcyNTgxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDEzMTU2MDM0NTYzNzUzMTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI1NTQzMDQwNzM3NTAxNTQ4MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTg0NjYyMjA1MDUyMTYwODgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2bc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NTQyNTYyOTI2MzY3MzM5ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2a5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzY3NDQ1NTMwNzY2MTE0MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTk4NzAxMjAxODkxNjE5MDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjEzNDQ2MDI0MDY0OTkyMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d265d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzU4OTYwNDcwNTIyOTY4NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ec7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzM2OTY5MjY0NTg3MzI0NTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2d5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MzYxNzQ5OTQwMjcyMTY1NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e019da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NTk4MTM0OTg4NDI3Nzg2ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjgyNDEyMDUzMzMwNDUyMTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d565d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODAwODgyMzAyMzc1MTUxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"31c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MzI0Mjc4ODg3MzkwMjQ3MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"305ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAwMjU1ODY3OTc5ODg5MTc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e319da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MDU1MjAxMDE1NTYzMzA1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2cc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4ODczODQ4OTA0MTIwOTgyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d865d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQ5MzY2MjIzMzQ3MTY1Nzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"34c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDYxMzQ1Mjc0MTg2NTIwNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"335ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTIwNDM3ODA5NDczNzcxODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e619da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODA0OTA3Mzc5MzAwMDgzNzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2fc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU1MTgzNDM3OTY0NzA1MzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDQ0NzI4NjU2MTk0MDczMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"37c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUwNTg1MDE4NDM1ODA0Mjc2NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"365ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDgxNDg2Mjg5NjM1OTM2NjIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e919da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Nzc0MzE5MzczNTAxMjYyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"32c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTcxMTc1MTU4NzkxMzUzNDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEwMTcyNjQwMzU4NzkwOTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3ac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU2MjgxODc4OTczMDMxODEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-11-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"395ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTMwMzU2MDY1OTU4NTgyMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTI4NzE1NzE1MzY2MjIxMjk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"35c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzMyODM5OTM5NDI4Mzc2MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e165d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODI2NzA5MzU1ODIwNTIwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3dc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTM1MzgwNjc4MTA0NjA5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3c5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE0NDE2MzQwMTIyNTk0NTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NTM3ODEwNzI3MjcwNTgyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"38c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDE0OTk0MzY1MDA3MzQ4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e465d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTAzNjEyNjc4NDQ3MDk2NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"40c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUxOTc0NDg1NDUwMTQ5MDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3f5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTcwODg1MzMwMDY3Mzk4NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f219da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1ODM3MjYyNzMzMzE5ODMyMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3bc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTMxNzYwMDI2NTUwNTU1ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e765d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODMyODE3OTIwNjYzOTkwOTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"43c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDU0NjkyMzM0MTA2NTEwNzc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"425ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA1ODc5NzQwMDY0ODUzNzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f519da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDg0MTc2ODg3ODQ2MTIwMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTg3ODE4Mjc1Mzg4NTMwNDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA5MDU3ODY1MzUzMjIxNzQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"46c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NTg4OTQ4ODg0MDA1NzEyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"455ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNzQwMTE2ODI0MTUxMjQzMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f819da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Njg1NzI2ODE2NzY4NDY3NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"41c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MTQ3MzA2MjY1NzQwMTMyMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDE1OTk3OTkzODM2NDI2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"49c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE2OzU5MjcxMzc1NTI2MzA2ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"485ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDcxNjU4Nzg1MjUxNTY5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTI1NTg1NzYwNDc5NzgyOTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"44c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4OTMyODQxNjQyODM1NjQ5NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f065d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTUyNDMyODU2OTE5NDE4MTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4cc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU0OTg1Mzc5NjcxNzYyMzY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4b5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzk4NzE2NTg0ODYyNjkzNjc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe19da5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4MzI1NjI5MDQ2ODcwMDkzMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"47c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTE2NTE3NzUwMzk4Mjk1OTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f365d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY0MDA3NjM0ODA2NDk5NTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4fc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjA3NDM4MTE0MDU2NzA3MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4e5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDM2MDI4MzIzOTY4Mjc2MTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"011ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzgxOTI2MTQyMTg1MTg1NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ac9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDY1NzYwOTEwOTE4NzY5MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f665d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc3Nzg1OTM3Mjc4NjA0Nzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"52c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:07.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:07.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5OTU3MDk5NzM0ODk0Nzg1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"515ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzMDc3MzgxODYyMTMzMjY3MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"041ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NzUwODkxNTg0MTY4ODA0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4dc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDU3Mzk3MDM1MDM2ODg1OTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f965d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM0ODM0MzY3ODkzODI3ODQxNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"55c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE2MjYzNzMwMjE0NDQ2NzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"545ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTU5NjAxOTk1MDg1MzQ4NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"071ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjYwNzYzNDYxOTQxOTI4NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"50c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDQ5NDY2OTM1NTI0NTg5MzQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzOTAzMDI5NDA1OTczMDkzODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"58c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMzUzNzk3MjIxMTk0MzE5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"575ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI0MTMzNDE2NjI2NjQ3MzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjYyMzg2OTAwNTU4Nzk0OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"53c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5OTA3NjQxMjQ2OTU1OTY4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff65d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTE5MzgxNDkwNTI4MzE2MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5bc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzI3OTI5MTk0ODM2NzUwNTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5a5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjQwNjg1NDM1MTgzNzE3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg3NDE1Njc1MjA3MDQ0MDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"56c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjM2NTU3ODMzMTUyNDA0NzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0266d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMxOTMxNjQ5NzkzNDQwNDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ec7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MDMyMjIyNzY3NDI2OTU5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5d5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjk0NDk3NjcyMTQwMTMxMDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"101ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTc5NjIwNzM1OTE1MDU5MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"59c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3Nzk0MTA0NzgyNDkxMjQ3NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0566d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc2Mzg5MjExNjg3MTQ1NTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"61c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2OTcwNDc2MTkyOTg1NzczODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"605ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDQzNTg5MzYyNDI0MTA5NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"131ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU5MTE4NzQ5MzczMjg2ODUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5cc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1ODkzNDg2MzkxOTM0NjA2NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0866d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMjY4MTk3MzMzNjMxNTcyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"64c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNTc1NjM5NDQzOTAxODI2NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"635ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTExMDI5MTQ2MDM0NzI5MTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"161ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDMxODgxNDAzMzY3MzY5Njc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5fc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDc2MDkxNjAwMDc5MDY4OTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDM2MTY0NzU2MTI1NDU1MzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"67c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQzMDM4NTY2MzM0MTE4OTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"665ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ5OTgwNzM2NTM3NjM4NDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"191ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NjM4NTg1NDk1NjQ5MTc1NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"62c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODY2NDYwMDY3MjIyOTQ1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzA3ODU4NDY5NzQ2MjQzNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6ac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTk5NjM3MTA5MzI0NDEyMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"695ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2MDI5ODg1NTgwOTE3MjEwNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzExODI1NDUxNDg3NTU1MzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"65c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjY5ODc0Nzc3MTYyNDc2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1166d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjcwMjQwNzY2ODk5Mzg3ODk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6dc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDYzMDA3Mzk5MDU1MTI0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6c5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyMzE4MTkxNTA4Mzg4OTEwNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTUxNDE4MDY1MDAzNjY2NjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"68c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzU5MzQ5ODUzOTE1NDYzMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1466d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTUxMzM0NTk2MzQxNTQyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"70c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk2NTQwMDIwMDE2OTY5MjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6f5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyMzI5OTA4MzIyNTIyMTI0MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"221ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODgzNDY0MjM5ODkyNzU2Nzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6bc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzU3OTQ4OTc3NzA5Mjc3ODEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1766d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDgzMTEwNTc0NjU1NTgyMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"73c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzMxNjg2NDMxNDU5OTA2NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"725ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNTA1MzM1MDgxMzk0MjI2MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"251ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzgwNDEzNDI1MjQzNTI4ODYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQyNDUzODE3NzIzODExOTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzM2NjkwNTI3NTU3NDM4NjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"76c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjUxNDM1MDI5MDMwMjQ2MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"755ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzI5NTUzNTAyODk3MTk4Nzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"281ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MTM1NjcwNTk1NTIxNTY2NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"71c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzY5NDI3NjU2NDE3MzE1OTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTM3MTc4NTgyMDkxNzkwMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"79c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzMxOTI3MzM5NjY1NjQ5MzQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"785ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzEzNTYyNzI1NjkwOTc0NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU2NjkyNTE0ODU2NTkxMTUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"74c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDMxNTkzODcwMzY4MDkwMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjgyNjIyNTQzMzkyNzQzNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7cc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDM5NzkyNTk0MTExMTMwNDQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7b5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTA1MDI0NTAxODkwNTgwNjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTEyOTI2MTgwNDExMTA0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"77c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDUwMDUyMzk0MzU0NTMyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgwNzM4MTQ4MDk1NjU2NTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7fc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzU0MzkwNDc3MzI0NTEzNjgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7e5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODI0OTA1NTc1OTkzNDQyMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"311ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0ODY5MDUwMTMzODUzMDI0MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ac9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzYxMDEwNDcyNTE1MDk2MjEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNjA1MDkxMTU2MTY2MzY3NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"82c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTgxNzIxMDcyMjc5ODI3NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"815ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzY3NzYxNDQ5NDIyODU4NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"341ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODQwNzY3MzU1NTc1NTM1OTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7dc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjM1NDg4MTI4ODc0NDUzODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTc2MjAzODk3NDI5NzYzNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"85c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjAyMDY5MzExNjk2NjU3MzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"845ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3NjQ2NDMzMjgzMTMwNzgwMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"371ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTg1NTY3MTMwMjk2NTI0MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"80c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTEzNDQ4NjUwNTY5OTk3NjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NDY0NTAwNjg2NjEzMzY5MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"88c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM1MjY3MzIxODk4Mzk4OTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"875ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NzA1NTk2MjQ4MTA1NDIzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDUzNzAxNzEwODM5MDgxNzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"83c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYxOTI2ODQ1MDgzOTkyODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzY2MDgzMjQxOTkwNjkzNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8bc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDIyNTA2NTU0Mjg5NjY2MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8a5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTI0MTAzNDA3OTIzMzU0NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzY1NzA3NTA5Njg4MzcyMDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"86c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTU0NTU3MTc2NzQ0MjU2ODA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3266d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzYzMjM4NjQyNjcwNTk3NTM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8ec7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjE5ODI4ODU5MjIzMTczNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8d5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzOTI0NjkwNjk0MTIwMjIyMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"411ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTQ0NDc2NTY5Njk2NTA1MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"89c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTIzNDgyMDYxNjYzOTk2NTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3566d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjI2NTkyMjM3NDUxNTc4OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"91c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NTQxMjgyNjQ1NDQxODk1ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"905ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzODQ1MjE1MzUzMjY2OTc0NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"441ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg2MjE2MDk5MzI5MTY0MTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8cc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUzMDU2MDQ4MDMyNjU3NTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3866d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjczMDE0MjY4NjIxNzY0OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"94c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzg3NTY0Mzk2OTM3ODUxOTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"935ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjcxNDE2MDE0NTExNDY1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"471ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0MDc1Mjk1ODQ5NTUxOTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8fc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODgyODE2MDA0NDAxMzY0NTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDMyMDQ2MDUyNjk1NDE0NTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"97c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTc5MDQ4MzQ1Mjg0NDQ2NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2024-12-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"965ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjM2NDQzNDY4ODg4MTY0MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4a1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzE4NTUyNzcwOTYwODMyMTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"92c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MzIzODUxMTQyMTYyMzYzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMDc2ODkzODc2NjYyNzg4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQzNjE2ODMyNDA3NTA3MzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"995ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzOTk2OTM0NzEwNTcyODQ5MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4d1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODMzMDQ3ODA0NTQ1NTYxMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"95c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDcxNjE2ODY2MTE2NDgxMzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4166d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzU1MDMxODAwNTc4OTA4MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9dc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDQ2OTQ4ODQ5NTgwOTk0MzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9c5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODMzOTg2NDk1MTUxOTQ5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"501ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTg4MzEwODQyMDMzNDQ3MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"98c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTAzNTE4NDkxMDEyODQ5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4466d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNjg5NDg5MDk1MDkyNzI1MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a0c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzI4MTUyNDQ2NzEwMTM5NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9f5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAxMDYyMjA3MTUyNzQxOTE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"531ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjgwNDE0NzU4MTM3OTc3MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9bc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjcwOTUxOTg1Mjg0NzIzMTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4766d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk1MjgzNjA1MjM5NjQzODA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a3c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMzODIwMzU3NTk2NTgzNjc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a25ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ3OTYwMzIwMDgxMzY5NTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"561ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Mjg0NjExMzcwMzA2MzcxOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODA4NDAzMTA3MzMyODQ3MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDc2NTUyMDc4NDE4NDQ1MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a6c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njg5MzM3NDY0NzA3NTQ4NjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a55ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzAyNzY4MTA0NjYwOTE3NDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"591ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ4OTExMTIzNjIxNDM4MDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a1c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2OTkwNDA4OTkwNTU0MzE5MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDkzODU2MDA5NDk3ODMzNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a9c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDIyODE3MzAzNzU5MjcwMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a85ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzQ3NzUzOTk0MjczMjExMDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2MTczMTc1NjEyMTQ2MzYwMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a4c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTQxMDEyODg2NjA2ODI0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1NTEyMjE1NDE5ODkzMDIzNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"acc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzM2MDMwMTYzOTc0NDA5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ab5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDI2NjA0OTQwNjQxNzAwODUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODY0NzU4MzA1NDAyNTY5MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a7c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NDk4OTA5NDg2NDYzNjIyMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk3NTAyOTEzMzM4MTkyNDQzNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"afc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyODQ4MTM3Mzk0NTA0NTAwNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ae5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzcwMDczMzU5MTYzMzAwMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"621ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTUwOTQyMjEzNzI4MTY2NDE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aac9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5MjMwODg2MDM2NTc1MjQ2OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTE0NTEzMjM0NTM0MDQyMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b2c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDE2NDc4NDMyOTcyNzU0MDg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b15ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE4NTgxMDY3MTIwMDU0MjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"651ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQxMTE3NDIyMDMwMzU4NTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"adc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDAwNTA4NzY0MzE5NTQzNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDUwMzQ4NzEyNDE2MDA5NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b5c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MDQxNDk0MDA1NjIxMTg2MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b45ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NDc4Njg4NDg0NjE3NjQ3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"681ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM5ODc4MTk2OTQwNDYzMDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b0c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDU4NTI0MTcwMjY5OTcwOTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ3MjMxOTkxNTUwNjcxODM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b8c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkyNDAwMTI5MjA5MDI4NjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b75ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcyNjQ5MDc2MTQ4NjMyNjk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NzU5NTg2ODYxNzExNDU4NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b3c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMDM1OTI5MzcwMDA2MTMyMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzUyOTUyMzAyMjkzMzg2MTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bbc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDMzNjkwMzQ4MjAyNDQ3NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ba5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMjYyNDE5NTI3OTcwOTUwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA0Mjg2NDU5NjA3MTk2OTM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b6c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAxMzM2NDc5OTc1MjE0NjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6266d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTM2ODM1MzgzNjQyNjA3ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bec7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgzMzE1OTY4MTk2MTc1NjUyNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bd5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzMDU3NzE5MjAxMDY0MzUxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"711ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc5MzQ2Nzg1MzcxMTYwNzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzY4NzUxMTg4NTU5ODc3NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6566d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI5MTcwNzEzOTg3NjIzNTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c1c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYxOTY4OTU2NDMwMTIzNzUzNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c05ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjQwOTA1Mzk2MjgwMzE1MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"741ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MDcyNTE0MzA1MDA4MjY3MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bcc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNzUzNzQyMjg1ODUxOTU0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6866d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDYwNzcxNTgzNzk2NTI2MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c4c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NzIyMjQ0ODU2MDI4MjE1MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c35ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNTg1Nzg1OTczNzMxNTIxMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"771ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTgxMzExMDg2MDEzNzkzMzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bfc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MzE4NzAxODk3ODQ0NTk0NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM2MzMwMzMwODE2MjA1NjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c7c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc4NzIxMTkyNzM0NzI0MTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c65ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNjgzMTMzNTc2Nzc4OTkwNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcxMjM2NDI1NTk4ODA1NTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c2c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNDEzODE5OTkzOTM2NTE4NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Njk0NTczNzczODA4MTQwMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzk2MzU2NjE0MTU3MDc2MDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c95ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzI2NzczMjM4MjA4OTg5NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTc5NTg1MTEzODkwOTA2MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c5c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTk4MTk1NDY3MDU3ODc0NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7166d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjUwOTg2ODY1MDI1OTQ2MTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cdc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDcxNzk1OTA3NDQwMTY1Nzg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cc5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjkyMDQ2MzE0ODkyMDc5MTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"801ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjU2MzI0NTU3NDczODQ4NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c8c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjA2NzYxNjQ0NDY5NTE0NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7466d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODY5MTk2MzA0MjUxNDQxMjA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d0c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjMxMjExNDgxNzA2Mzg5NjQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cf5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjMzNzExNTQ1MDA5NjYwOTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"831ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTYzOTIzMDM4MDkzMDY4MTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cbc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTExMjc4NjgwMDM2Njg4OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7766d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODc4MjAxMzI2NDEwNjM5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d3c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg0MzM0MzAwNTg0NTE3NzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d25ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc4NjEwNDI4OTA4NzgxNTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"861ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzYzMjMzMjUxMjIyNzM4NTM2MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNjIxNzY3MTcxNTIyNjA3MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNzUyMjIzODQ5NTg3MjIzMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d6c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjA0NjQ3ODM5OTQ2ODI1MzkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d55ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzM5Mzg3NDExNjcwMTcyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"891ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYxMDU0OTQ3Nzc4OTcwMzYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d1c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNDgwMzE1ODM4NzU4NjMwMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDczMjIwMDM0NTk1MzY3MDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d9c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTA3MDkwODE2NTA1NjA2MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d85ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU1NTk0NTc0MDQ3NDA0NzI3NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNTgyMDc3NTQ3MTQyMzcyODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d4c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjI4NTY4MjQyMTkzMjU5MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNDgwMjM3NDg4NjA3MzkwMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dcc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MTQ5MTI4Mzg1MzUxNzM3MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"db5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjU2Njg0MDk2ODAxMTQ5MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDI5NjY2MzUyOTUwNjIxNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d7c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODI3NDkyMjM3ODU5NzcyMTU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTc3MDI3NTAyMjI0NzQzMzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dfc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTYzNzk2OTAzOTc5NzM2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"de5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDY3MTY1NjkzNDE1NDY5OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"921ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzkzMjY1NzI1OTYzOTg4NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dac9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjY3MjI2OTI1Njk5OTY5NTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE4NzE2MzU1NTk4MDUyODAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e2c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzYwNDY1NzQ0NDQwMzczMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e15ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NDA2OTY2OTQ0Mzg1MzI1MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"951ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MzI5MTAxMjAzODQ1OTU1NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ddc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYwNTkyODI4OTg2NTc2ODY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjkzNzc1MzU3NDY0OTM1NDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e5c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjQ1NDQ2NjA2NTQwMTQyMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e45ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDMwODY4NjY0MDMzNzA2MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"981ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkxODE2MDIyOTA3NDg0NzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e0c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Mzg3OTA3MTQ1MDA5MjA3NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODg1MzE4Njk4ODYxNzY2NDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e8c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDMwNDk3NDMzNjA5OTg2NDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e75ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTI0OTY3NjExMjQ4MTE0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjAzODgyMzA0MDY0MzM1OTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e3c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNjQ1NjcwMjc5NjA4MTM1MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM3MDc1NjI3MjQzMDMzMTQ5OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ebc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjgxMjQ5MjgzNzcyNzIxMTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ea5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjIyODUwNjkxNDUyMTM5NTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NzM5NDY5MTczNjIyNTI1ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e6c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI4MTE2NDE3OTQ3MTczMjYzNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9266d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM0MDYzNzM2NDY3NDMxOTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eec7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTcyNDQ4Mzg2NzA3MTYxNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ed5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Njc0NTk5NDA4ODMyNzQ3NzQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a11ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjc0NTY2MDIxNTI4MzM2MTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e9c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDE4NjcwMDMzODgzODEyNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9566d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTkzMTE2NTE4MjAwOTA0MTc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f1c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjg2MTM4MjczNDQzNTQ1NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f05ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyNDA0MzUzNjAyOTk3NTQ2MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a41ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg4Mzg1MDA4MzIyNjgzMDk0MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ecc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY2NDUwMzUwNzU1NDI4NjM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9866d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjA2NDA5MTkzOTc4MTQ0OTgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f4c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTA0NTIxODMxMjg3MDIzNTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-01-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f35ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzQ1ODMwMjkyNTAxNzI2MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a71ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDA1Mzc1MzQ5NTQ1Nzk1MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"efc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTI1NTIwODI3NDM4MDI1NzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE5OTA1NjM2MTkwNDc3NDY0MDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f7c7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI1NzcxNTEwOTkwODUyMDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f65ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ0NTIzMzYyMTc1MjE0MzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTQyNzM5ODMxOTcwNjQxMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f2c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjY2MTc0NjYxNDM0OTc1MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MzE2NDMwOTk1OTI4MzM5MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fac7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTY0OTU4MDk1OTYzMTM3NTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f95ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDEwODIxOTk1NzM1MTg0NjU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzMxOTEzNTAzNDg2MzUzNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f5c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ1Nzc3NzA1MDcyNzcyNjk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a166d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNjU0NDAxMDY1NTg2Njk5MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fdc7ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDE1Njg4Mzk4ODU2MjgxMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fc5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjQyNzEwNDA5MzcyMDgwNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b01ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4Nzc5NDUwNjcwOTQwMjg0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f8c9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTEyNTA1Njg2MjUxMzI5MTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a466d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NzY4MTI4MTE5Mjk2NTcxMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"00c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA3ODQ1MDQwODkyODkwNDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ff5ac36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTMyMDQ5MTk0MjUxMzMyMTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b31ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDUzNzA4MDIxNzc4MzM5MzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fbc9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NDk1MDg0NTExOTE5MjM3MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a766d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5MTk5NjIwOTE1OTg5MTU4OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"03c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjkxMDQyMDgwMDY5NjA3MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"025bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDU4MTgwMDQ1ODc3ODIwNzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b61ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NDQ5NjMyMzcwMzUyMzY0MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fec9e156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUxNjg4MDI2MDYwNDE3NzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyNzQ5NjY4OTg2NjEyODgxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"06c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDI4MDY0NDk1NDI3ODczNjY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"055bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNDE0MjA0NzM5MzIwNDI4NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b91ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODkxMjQzMzY5MzI4MDYwOTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"01cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1NDk4MjYxNTc1ODAxMzgyMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjM3NjY2MjQ5MjY2MzQzOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"09c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjQyMzQ2NTA4NDg0ODU1NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"085bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTMyNjEwMzQ3Mjc5NjkwODYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjQ5NjI0MzY5MDczMzI5Nzk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"04cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjIyNDU5NjQ0NjIwMjQyNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjcyMDI5OTkzNTk2ODcwMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0cc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NDM5ODQ0MTUxNjAwMDYyMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0b5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDEzMjY0NzQ0NDM4MDI1ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTIyODIzMzY4ODIwODMwNTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"07cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjI0ODA5NTYwOTYxNTgyNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTgyODUzMTM3NzI0MDQ3MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0fc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDMzODIyMjg2NzY5MjQ5MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0e5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzg0MjAwNzM4NDQ1MDY4OTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c21ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjg0MjIxMDI2NDQ1NjI5MjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0acae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNTY5MjkxOTA1NTAyMDMyOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MzgxNTEzMjE1ODQ1NzgwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"12c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTk0MzA2NTcwMzc3MzkxNzEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"115bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDk5NjkyMDY4ODg2NTkwODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c51ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5Njc5OTE3NTMzMzI2NTYxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0dcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NTc4ODkwMDIzNDc3MTgyNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE3MDg1OTEwNjMwNDU3Mjc0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"15c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTc4NzM2MDE0NjExMjIwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"145bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE4NTczMjIwNjk0NDgzMTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c81ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDA0NzIzNzY3ODAwNjkyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"10cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NDE4MzgyNzM2ODMzOTE1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMyNDMzMTYxNzg2MjU4MjY5MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"18c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTIwNzgzMDY2NDM2NTQ5NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"175bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzk3Njg1MjMyMDQ1NDQ2OTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzEwNTY1NzE3NTU3MTc5NTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"13cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDE2OTAyNTI0NjMxMDk1ODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDg2OTA2MjA3NzY5NjEwNjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1bc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU0ODc4OTEwNjE2MzMwNTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1a5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MDY2MjEwOTU3NzA5MDE3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQzMjYzMjYxNzExNzU1MjI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"16cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTg0MjYwMDE2NTEzOTk1NjYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c266d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMzUyMDY0OTA3ODA1MTgyNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1ec8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTA2MjE0OTc1MjgxNTY3MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1d5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzE4MTI3MTgxMjg4NzIwMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d11ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODc4NjgxODk2MjIwMDQ3NDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"19cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwODc4ODk5ODM1OTkxNDA0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c566d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTAwMTgyMDIzNjIyNTAyMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"21c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjIxOTU3Mzg2OTIzMjY1ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"205bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMTg4Njk1NTg0NDkzNDQ4MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d41ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODgxMzc3MjM2Mjk5MzUxODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ccae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NTQ1MjgzNTc2MTk4NzAzMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c866d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzk4Njk0NjEwNDAyNTA1NTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"24c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjM5OTk0MzkwMTEwNjE5MzU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"235bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTgyNjE5MzMxOTYzNzUxNjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d71ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgzMjg4MzM2MDY2NjY2OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1fcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODU0NDA3ODU1NDk0NzQzNDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MjM1OTgyMzE4MjY1NDQzNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"27c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzIzNDg3ODg5NDkyMjA3MzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"265bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTgzNDg5MTcxMDA4MTQwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjc3NTY4MTUxMzA4NzYwMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"22cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDA2NTM1ODA4NjYxOTk3OTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczOTgzMTg1NzU5ODE1ODEzNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ac8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA4ODYyMTY0NzEzODkwMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"295bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NTk4MzQzNTE3ODYxNDUzMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NjI1MDc4NTE5NDkxOTQxNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"25cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NTU2MDkyMDIyMDk0MTA3OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d166d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjA4OTMxNjY5MzMxMTAxNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2dc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQwNjg0MzEzNzk4Mjc3ODIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2c5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM3NjM3MjIwOTcxNTc4NTg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e01ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODk3Mjk4MjQ5MDE2MTUyNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"28cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTc4MTI5MDc5NjQxMjU1MzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d466d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTg5NjA2MjI3OTg1Nzk5NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"30c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODgzNTczMDQ4NTU0NzE4OTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2f5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTYxMTEzODA2ODE5NDg3NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e31ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY3MDkxODAxMjE3Mjg4NzAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2bcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTI0NDQ1MTc4OTgwNDU3NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d766d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDk4MjAzMTE3MDE3MzY0NzU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"33c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NjA1NDc2ODc3NzE0NjE1NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"325bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzIwMDAwODEyMjU3NDk0ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e61ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzE4NTIzMzM5NDk1MTMyMTY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ecae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMjI1ODc1MTc1NjEwNDkzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODQ1MzI1NTE3NDU2NDU5NDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"36c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQ2NzIyOTYyMjI3MDc2NDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"355bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTkwMzIxODQ3MDkyNzA1MTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e91ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5OTA5MTMxODIxNTc0Nzg1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"31cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDAwNjkyMTA4MzM2NjUxMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MDI3NjQzODQyMzQwNTk2MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"39c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODU4MTE3NDUwNjk3NzMyNjYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"385bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTM1ODY2MzQzNDMwMjQ3MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI0OTU3MjUwMTE1NDE4NDk4NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"34cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MDUzNTgxNDc3MTUzNzMxNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjYzMTA1NTg5NjY3NTUyNTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3cc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTY3MjY3MjY5NjIzMTEwMjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3b5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzM2MTc1NTE5NTQ0MDIzODUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTgxODc0NDAwNjIwMDgzODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"37cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjQxNjg4ODc3NTQyMDMzMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzIwNDUwNjAxOTgyNzgwOTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3fc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI0Nzc0MzY0MjUyNjM4NDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3e5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzQ3MzMwMTM5ODI0MjcwNDE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f21ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzYwMDY1OTM3NjMzNjc0OTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3acae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MTE3NzU3NTk2NTc1MzIzNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzAzMjIwNjI0MjE3OTY3Njg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"42c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTQ5ODQyODg0MjIwODg3NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"415bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTgxMDI0MDY0MzAxNzQwMDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f51ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMTM5MDY1MTA1MDgwMjkwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3dcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDU3MTYxNDU3MjgwNTc5MzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk5MTE3MjQyMzQwODY0NDc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"45c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjMwNDEyMzI5ODk1MDMyOTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"445bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5ODk5ODA5MDk4NDk1OTUxNTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f81ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDc1ODU2NDc1ODI3MjA3MzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"40cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NzAyMTc4MjA4MDIyOTgyNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcyODE5MzcxMDc3NTEyMjgzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"48c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM1MzU3NzE5MTY0OTE4MDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-02-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"475bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NjMxMjUzOTEzNjAyOTM3NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyOTMzNzUzNDY1NzgzNjUwNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"43cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MjM5NDYzNzczNzYwMjM0MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f066d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM0MTI4ODcwMTkzNjc1NjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4bc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk5Mjg2MDUyOTA5NTgwNDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4a5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTc5MzIyNzE3OTc3MzE4Mzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe1ada5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQwMTIxMTY4ODA2OTgzNTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"46cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTcxMjE4NzY1MzIyNDExNzMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f366d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDU3NDcwNjc1NTI3OTM1NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4ec8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTQ4NDA3NDc0Nzc3ODU3MzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4d5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTU4Nzg0NTIwOTcxNTEyODk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"011bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTM0NDk5MjE2NTUzMzMyNzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"49cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NjQ5Mjk0MjU3NzcyMzc3NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f666d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjAyNzMxMzU2NTY0Mjc0NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"51c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY0Mjk1MTczNDg3MDEzMTYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"505bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1ODk1MzUwNjY0NTk2Njc4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"041bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MzYwODE5ODc4MjQ1Mjk3NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ccae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTgxNDYzNzU1MDQ2NTM5OTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f966d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTQwMjQ1MzYzNDI1ODg3MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"54c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5ODUxMTUwNjk0MTE2MzI3NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"535bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODYzOTg3MDcyOTE0NjYzNjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"071bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4ODg2Njk5ODAxODY4Mzc3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4fcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDM5ODc1OTEyNjY4NjA3MzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTE5MTgwNTIzMjUyNzg0NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"57c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MDc0MjMyMzg1OTA2MjAzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"565bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExODIyMDM0NDE5ODkyNDA0NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYwMjcxNDAxODEyODkzMTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"52cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjEzNjkwNjYyNDE5ODY1NDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff66d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTQyMzQyNDE0MjYwMTE4Nzk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ac8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTA3MjY3ODczODExMDk1ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"595bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDEyMDUwMzIxNDM0OTIyMDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0e1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NTY5MjE4MzYzNDk5OTkyMzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"55cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3ODE0OTI0NTk0NTM1MTY4NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0267d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MDE2NTU0MTI1NzcwMzMzODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5dc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTM5NjA2MTM5NDA4NjExMDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5c5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTI0MTk4ODU0MjMzNTA3MjMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"111bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjY4MDMzNjc4NDg2NDkwMDA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"58cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MDc2NjE1NTkzNzc3MDQ0MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0567d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDMzOTUyNzY4ODE5NDUzNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"60c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODAyMDk3NzYzMTM5MDQ3MDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5f5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzYwODk3MTA3MjA1MTQ4Nzc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"141bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDU2NTExODczNjU2NjQzNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5bcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2Mjk2NDA1NDUyMDc4ODk2ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0867d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzU2MDc3NTM0NjUzMDQyMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"63c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODI1NTI2MjUxOTc4NzgzMDMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"625bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk1Mjg4MzQ2NjQ3NTQyNzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"171bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNDM2NjA4NDE3MTMxMzM1MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ecae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzQzODE0NTQwOTY1MDI1ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzM5MTE3MjE4MjkyNDE0NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"66c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjcwNzgwNDk4NjQ5OTE1MjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"655bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTYzOTExMDA0NTI4OTk3MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1a1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0ODg1NDMwNDY5NDI0MDU2MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"61cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjc1NDU2Njk0NjUxNzMyMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDY4ODEyOTI2ODgzNzE1MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"69c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzMwMjE4MjczNzU1MjgwMzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"685bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQxNTM5MTA3MjYzOTEwNjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1d1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NzcyNzMzNzkwMjA1MzI1MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"64cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzE3MTMzOTE4MDkwMjkwNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTE2Njc3NjQ4NjIxNDI2MzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6cc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTAyODU2NzQ0NjQ5OTE3NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6b5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTcyNzUwMzg2ODAxOTczMzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"201bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzEwMTUzNjAxNzYyMTk3NzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"67cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTA3Mzk4NTg5MzY5MTM1MDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM1NzkxNzA2NDI5NDQ0NjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6fc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjg1MTIyOTU3NDM2NTY0NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6e5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0ODc1MTU1NDYyNTM3OTQ3MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"231bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY4MTA4NDI2NzczNDU4MTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6acae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU2NDExNjM3NDY5OTk0NzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjA5NjcxNTI0NTMwNDQ2OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"72c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2MzA3NTc3NTcyMzU4ODY3MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"715bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTI3MTQ3OTU0MDAyNTA2ODYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"261bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:52.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:52.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3OTczNjIxMTIyNjc0ODk2NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6dcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzE3MjQ1MDUyMTQ2OTAwMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDM4MDA3Njk4NjI4MDMyNDMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"75c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQwNDk4MzQ4MDM4Nzg1NTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"745bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTI3ODQzMTg3MjMxNjM5Mzg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"291bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTczOTQzMjI3MDU5MTY2MjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"70cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4ODk3NjEzMDQ5MzQ2MDE4MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTIwMDgzNzgwODI5Njc3MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"78c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQyNDY4NDk5NDQ4MTYyOTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"775bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjAwMDUzMTkxODM5Njc1MDA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2c1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MzY2NzY5MTE2NDUwNzEyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"73cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA2OTE1NDY4NDYzMjMwODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2067d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEyMDAyNDQyNjY1NTYzNjk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7bc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjIyNDUyMTQ5ODkxOTIxMjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7a5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mzk4OTMyNzU3NzcyOTExNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2f1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzc1MDA0MTk2OTc4NzMxNjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"76cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTA4MjIyNzQ4NTQxNjcyMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2367d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDI3OTI2NjA3NTYwOTM0MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7ec8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzc2NzU4NDkwNDQ2Mjk0MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7d5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjgyMzM2MjczODU0MjM0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"321bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjU5MTYxNzY4Mzc1OTYzMDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"79cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODc5ODM1MTI0MzQzMTE4MDI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2667d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1MzYxNTEzODAxNTgyMzIwMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"81c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzM4NDg5OTM5NzM1MzY5NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"805bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzM5MTg5ODY1MjczOTA4MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"351bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk1NzYwODIwNDE5NzYwMjEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ccae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA4NzM1NDcyODI1MDU3NzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2967d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQzMTU4Njg0MTIyOTc5MjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"84c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgxNDUwNTUwNDYxMTM1Mzg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"835bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Njg2NTU4MzQ4OTUxNjM4OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"381bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2ODI4MDAzODQ0MzcxMjA4MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7fcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNDc4NjQwMjQxNzExNDQ5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzUxNjkwMjE4MDgzMzMwMjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"87c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjczOTgzNjM1MzQwNjMwNzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"865bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNjIwOTA1NzI4MzI0MTg1MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3b1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDgxMzQ3MzA0OTI4MTQ4NjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"82cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQxNzA1Mzc3NjUyNTExNTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQyMTI5NjM5NjE1OTgxNTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8ac8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzEzNDU3MjYyODg1NTkzMjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"895bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI3MDA0NDQzOTY1NDc5ODY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3e1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzczMjc5ODk0MTExODAyMDAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"85cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzY5MjYxNzg0NTQxMDgxMjE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3267d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDc1OTIyNTM0ODg3OTIxNjQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8dc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MjU2NDg5NzQ3MTg3NzUxOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8c5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTIzNTQzNjE5NDE2MTYxNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"411bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4OTkzNTQ0MDExODU2NjkyMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"88cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTIzNTEyMjQwNDY5MDU2OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3567d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDA3OTY2NTUyMjUyNjMyMDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"90c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzM1NzEwNDQ2OTcyMzYwMjgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8f5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYxNTYxMDE4NzUwMDg2NTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"441bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTcxODgwNjczMTc3OTcxMjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8bcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczODMyNzAzMDU5OTg4MzAyMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3867d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg3MDI3NjQ5ODgxOTA5NzU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"93c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgyNTM1NjUwMTA1ODIyMzc1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"925bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzU5NTIxMzY4NTc3NDE5MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"471bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjUwNzUwMDIzOTQ0OTg5NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ecae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTYzNzkyMjg0NDk5MzYyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODM3MjEyNDk0MzIzODczNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"96c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDcxNzk2MjI5NzA2NTQzOTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"955bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwODIyODIzMzE0MjU1NDYyMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4a1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Njg3MTYwNzkxMTQxNjE0NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"91cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDI5Mzg0MzY2MTI0MDAwMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2ODA5MzIwMTgxNjE4MzIwMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"99c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTA2ODQyMDEwMDM3MDk5NDIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"985bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNDE2NjMwOTU0ODE0NjA5NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4d1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY2MDgxNjMxMjU0MDMyNjIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"94cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYyMjE1NTY3MDI1ODgxNDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjI1Nzk0NTY2NzcyMTE2MzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9cc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1Njk2MDQ3MzY1MDUzODgxMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9b5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MDMzMTE5MjQyMDEzMTcyNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"501bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTcxNTI3Njk2NzE4OTQ5NTc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"97cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjMxMDAwOTA3MjE5NzMyNTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3OTQ4NDUzMjg4MjY4ODYzNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9fc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODQ1MDI0NTE5OTk1ODc2ODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9e5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Njk5MDQ2MzM0NTY5OTIwNTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"531bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjUxNjg0MTM1NTIzMjEyMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9acae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTEyNjAyNDQ5MzM5NzE5ODQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:59.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:59.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU1ODgxMzIyODY2Mzk1NzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a2c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjkyNDgzMTYyNDA2MzgzOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a15bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjQwNTkyNjIwNTI0MzMxMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"561bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTk4NDExMjY0OTk0Nzk1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9dcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwOTI0MTYxNDQ5NTA2Nzk5OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMTMwMzQ0ODY0MDA2NjU2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a5c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDAwOTg1NTczNzc5MTcwMTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-03-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a45bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDExMjYxNzg3MDUxMjg4NjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"591bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODcyNjEzODk5OTU2NTE5Mzk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a0cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM0NDEwOTUyNjE0MjA0MTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjMzNTk3MzMyNTgwMzU5MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a8c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzY4MDQ4NTUzMTU0NDM4Njc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a75bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjA5MDIwNDQ4MDkwNTExNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc4NzQ2MDM5OTEyMjc0MzY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a3cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA0NjA5MzQ5OTA1NTY1ODM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxODMwNDg2NTI2NTc2MTA0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"abc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTMxNzY4OTc2MjU3MDc1MzIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aa5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMzkzNjMwOTc1MjAxNzA3MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjYwMzQxNTg5MDQ2NTE4MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a6cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODU3ODQ4Mzg2NDM0NTM0MzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTYzMTQ0MjcyODA2NTU3NTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aec8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDc5NzI0MTk2ODA4Njg3OTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ad5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQwMDIyMzIxMDkxMzM0ODg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"621bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3ODk3MDQ3MjYwNTY0ODUyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a9cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4ODgxMTA5MTY3NjY3NzA5NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzODQwNTMwODk1MDcxOTk2MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b1c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjIyNjMzMzc5NDQ2MDc0OTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b05bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTM1MDY4Njg0ODUzODk4ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"651bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE3MDQwMjMxMjQ1MzU2MjI0NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"accae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE5MjY0NTIwNjIwNDk4MDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5a67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjg5MjMwNzAxNTQ5MjQxMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b4c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzI5Mzg5MDA2OTk4MDIyNDM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b35bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:17.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTkwODA2NjU4MzgyNDAzMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"681bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjcyMjY0Nzg5MDk4MjUxNTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"afcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTEwMjM1NTg5MjE3OTk3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5d67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA4NDczMTE2MjM5Mjg4Nzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b7c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTczNTIwODg1ODIzMTE1NDQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b65bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:17.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjkwNjc2NjU2NjMwNDY0MjEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzgxMDcxOTY2NjQ5MzQ0MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b2cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkxOTQ4MTM0MjQzNDc2MzY0NDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6067d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc2OTUxOTA5MDE2NjQwMDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bac8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODM5NDU0MzY2NzU4NzA0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b95bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzOTU4NTIwNTQ0MzkxMjI1MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjI0OTUyMTY1NzgzMjcwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b5cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ3MDMwNTY5NTA5MjkzNTU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6367d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYyMTA1NjY0MzY2ODc4ODQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bdc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjcwNDMzNTk0OTc5NzU1Mzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bc5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzI3MjEyNjkzOTQ3ODQ2NzQxMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"711bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMDI2OTUyMDc0MTU3NzUwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b8cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NTg3MTE5NDA0MzI0OTQ5MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6667d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAyMTY4MzM1NjcyMjY1Njg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c0c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MjI5MDQxMzE1MjkwOTU4NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bf5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNTU4Njg5ODA4NTI1MjMyNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"741bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzEwMzQ5MTE0MjM3NzYwODg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bbcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYzNzI0Mjk3NDY1NTExNzgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6967d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMzA4MDI0NzYxMzQwNDY3ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c3c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjc0MDMwMzE5NjA5MjExNTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c25bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODAyMDMzNDIyMjE2NTgwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"771bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NTYyMzcyMDI2MTA4NjA4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"becae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTYxNjkwMjI4Njg3NjEyMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6c67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ2ODg5NTI2NTY0MDg3NTk5MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c6c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NjQxMDQ4Mjg3NzEwMjc5ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c55bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc3NzQ5NjA5NjU0NTQ3NDM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMDI0NjQzMjQ2MTI3ODMzNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c1cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.753Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjQzNzMxMTYwMDM5Njk4NDczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6f67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA4NTQ5Njc5NTQ4OTQ1MDU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c9c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjYwNjQ2MjExOTgzNjkyNjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c85bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTgwNTU1OTQyMTUwMzEyNzEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NDYxNDQ1NTYyNjAwMTAyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c4cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDc3ODU1MDg0MDM4MjM2MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7267d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.13Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDQ5Mzk4MTU0NDk4OTI4NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ccc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTk5MjgxMDgzODIzNzE2ODAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cb5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTUyMTg3NjU1NTE4MDYyMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"801bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTMzNzMzMTQ2MzAyMTI4ODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c7cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTkyNjg5NDY5NjY4NDU0MjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7567d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDQ4NDEwODI5Mzc2NDcyMTgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cfc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NzQxNjkyOTI2NTg4MzU2ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ce5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjc1MTk2NDQ4NTk5OTE0NjAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"831bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDAyOTYzNDg4NDA4NDIzMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cacae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU3Nzk0MDA0MDU3NzU2MjYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7867d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDkyMzQ1OTg2MTQ3NzU5MDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d2c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzMwNDU2NzI5ODAwMTAyNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d15bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMzQwMDI1NDExODU2NTU3MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"861bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwNTc4NTc5NTIyMTU4MzA0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTIwODY3MTY0MjA0ODI4MjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7b67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzA0OTg2NzY0Mzg4MjExMzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d5c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NzMwMzc2MTk3MDM2MjU1MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d45bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTQ2NDk0NDM0NzY2MjU4NTA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"891bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjcyMDA5OTAxMjU3MTcyNDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjE1NDU3MTY4NDUxMTMyOTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7e67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzQzMzkwNzc0NjY1MzMyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d8c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTkzOTA2MTQ3MTQ1NjU4MzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d75bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNjQ5Njk2NzU0MTE1NDM4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDc5MTUzMDE5MDAwNzk4NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NDM1ODI5Mzk5NDEyNDYxMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MTQwOTA2OTgzNjg1MTAyMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dbc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5OTE4NDg1MTA3OTEwODI3MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"da5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDQ1NzczMTA2NTczMTgxMDI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjQ2NjgzNDk4OTEwODU1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwMDMwMTgyMTc1NDU4MjIxMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzkzOTU1NDI3ODQwODc2MjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dec8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNjgxNDQ4MzY1NzUyNzQ0MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dd5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDEzNzkxMzEwNjY4MjMwODU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"921bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc0NDEyODI3ODk0NDQxNzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjU5ODIwODk4NjIzMDU4ODY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjQ5MjYxNDA5NTMwMTEzMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e1c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTEyOTAyMzAzMzQ2NDYwMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e05bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTQ1ODQ1NjI4Nzc2MjYxNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"951bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDk3NjUxMjQ4NDIzNjE2MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dccae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxODAyNDU2OTM4NjA3NjM5MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8b67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkzODQ1NDg5NDAxMjczNzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e4c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MTc3NzY5ODE4MzEzMTI5MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e35bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYyOTA1OTYxMzMzNDAxNzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"981bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MjEzNTI4NDIzNjA0MDU2MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3OTA5NjUzNjIxMTAzOTI5MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8e67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTE5NjgzOTAyMjkwMjU4ODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e7c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzE5MTAxNDIwNzU1Njg0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e65bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTczMzY2NzAwNjg3NzE3MzMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzgxNjc0NjQ3MTg3OTk3MjkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUyMzIxNDI3MTg0NDI2MzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTQ4NzM1MzIyMTY4NzU4NTY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eac8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMTI1NzQxOTY5MTI0MDExNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e95bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4NDE0MzkxNjY3OTUxNjYwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMDY4NDk1NDUyNjMzNTM2NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNTYxOTQxNzY4NTUwMjI0MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Mjc3MDg4ODAwMjg5MzA2MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"edc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzc3NjIzOTkyOTM0NDA4MDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ec5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDMzMjg1OTMwMDUwMDQ5ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a11bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODEzMDg4NDQwMTE2NTgyMDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE1MjcxODYzMzc1OTI3NTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxMjk5NzY4OTc2MDM3NjEwNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f0c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAwOTY3OTgwMjM2NDI0ODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ef5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MjE1NTUwMjU1Mzg5OTY1MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a41bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTcwNzUxMzExMzE4MDIwODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NzA2MDQxNDEzNDQ4OTIyNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9a67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzAyMzQ0MDYwODczMTIxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f3c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzgxNjQ0NjU2NDEzOTc3MTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f25bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc4MzY1NDkzMTI1MzYwODA3MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a71bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0MDU2OTA4NDgzMjQ2MjI4MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eecae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTEzMDkwNDA0MDE4NTU2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9d67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MTI0NDkzNjA3MTc2MTEyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f6c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzAzMDc1NTI4MzA0MTg0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f55bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDA2OTg3OTA0NDA0MjA2Nzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MDI2MzI2MjAzMTE0OTE4OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyNDk1NDUxNzA4ODIzNTc0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a067d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA2ODI2MDA3NzQ3MDgyNzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f9c8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODE3NjYzODM0NjAyMDcxNzE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f85bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDY2ODQwMDMwMzI3MzMwNzk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzODUzNzg3MTg3MTQ4NTE2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY0Mzc5MDIyNTEzOTc3ODkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a367d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTI1NTcwOTkxMDk5MTI0NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fcc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzOTI3MDk3NjYwODUzNTA0ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fb5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NzY1NTMzMzM5MTk0ODY5OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b01bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjUzNTkyMjQyMDI3MTM0ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7cae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzUwODkwODA4MDcyNzk4ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a667d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MDk0NDM1NzAxNjU0NjEwNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ffc8ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkzOTc2MjY0MzY3NDQ1MDc2MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-04-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fe5bc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDA0MTcwMDMzNzA1MzUzNjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b31bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjIyOTcxNzA1MzE5MzU2ODU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"facae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MDY1NDczMzQ0MDg2OTc5MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a967d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTE1MzQwMjc3MDk2NDQwNjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"02c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTkxNzE2NjIyNjg2MDMxMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"015cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTAyMjY3OTYyMDIwNzA5NDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b61bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzc5NzMyMDY5NDAzOTk3NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdcae156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODgzOTY3MTE2ODkzOTk0NTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ac67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NDM3MjAwMzYwNDI0MjM5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"05c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM1OTcyMTU4MzYxNDA0MDQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"045cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNTAzMDM3MzkzOTk1ODc5NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b91bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYzNzY5MzYwOTI0NDQzNTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDA5NjI0ODg3ODA1MzE1OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"af67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzA0ODQ2MTc5MzIyODg1ODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"08c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDM5MDQxMzEyOTYwOTkzNDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"075cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI5ODk0MTI5MDg1MDI4ODI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1OTU1NzY2NjE3OTAxMTU1NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NTA1MDcyMzQ1MzM5MDIyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b267d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIyMDY3NDk4MzY4NzY5NTI5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0bc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTUxMzU4MjI4MjEwNDAzMTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0a5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU5NDYwNjM3NDMwMjM4MTMxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjM0ODMxMTM4NzQxNzUxMDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTI2ODQ2Njg3NjQwNTk5NDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b567d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzYyMDkwOTk3NDg4NjA2NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0ec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjczNzQ1NTY4MjkwMjE2MjEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0d5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMDA5NDc4MTA1Mzc5MTkxNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c21bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjYwMjIwMzcxMTEwNzY0MTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5ODQyNTI1OTgyNDcwNzMzMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b867d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTc4MTM1ODk0MjgzNDczNjYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"11c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTk0Nzg4MTI0ODk3MzM0NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"105cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NzU4ODI2NjM2Mzg1NzUxODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c51bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDg3NjA5NTA0ODMwMDA4MTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ccbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzk1MzEzOTg1OTY2ODI2NjIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bb67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTAyMDU1MjY3NzgxNTg4NzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"14c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1Mzk4OTM2NjEwMjE2NDA0MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"135cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkzMDQwOTE0MDU0NzExOTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c81bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDA4ODcyOTQ3Njg4MDExNjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzgyMzAxNTg4MjY4NjMwMDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"be67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQwNjM5ODI4NTU2NjI4NDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"17c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTYzNTk1MTM4ODQyMDEyMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"165cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzkwNzUzNDg2NzIyODE0ODI3OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDg3MTA2MDM5MjI5MDg0MzY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNTQwOTM0ODA5NjU0NDQ1NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDU2MjEwODMwOTQ5MTcwNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1ac9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTU3NDE0MTA1NjkzNzMxMjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"195cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTU0OTk5MDYzMTI4MTI3MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzM3NDEyNTU3MjEzNDY3NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk5OTQ5MDEzMzkyNzA5OTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzExMTc5NzY5MjAxMzUwNzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1dc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDQwOTU3MTE1NjA4MTE0MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1c5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTExMDk0OTA0OTIxMDMzMjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d11bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzM4Mzg3MTc2MjQ0MzE3OTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMjI0MDcwODAwMTM4NjQwODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjEyOTc3NDgxMzE3MzQ4NDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"20c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0OTQyNjM0MDU5MjcxMzAyNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1f5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3OTgyNjY4MjQ3OTM3NDQ3MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d41bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjAzMjY4ODgxMTQzMTU5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Mjc5OTMwMTg4Mzg4MzQwNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ca67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MjAyNTIyOTMwMTkwMzA3MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"23c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY4NDQxODc5NzUxNDYyOTAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"225cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMjgzMDg5NDE2NDM2MDA1NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d71bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzAwODE5ODQ0MjkxNjQ1ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ecbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzE4MzIzMDc2NTYyNzk5MjU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cd67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTM1NjA3NzExODE0NzIzNjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"26c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDIzMDc2NTM4ODQ0ODUxMjAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"255cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2MzA2OTE1OTY5NDkyMzE3NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4OTM1Mjg2MDM2MzkxNzY3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDk3MDg4NjEwMjI5NTc0NjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d067d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDkwMTk1NDA3MTQ5MjY1ODYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"29c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5Mzg5NzgxNjM1OTE3Njk0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"285cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTI3NDEwMTcwNDQ3Nzc2MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0OTYxMTUwNDEwNzI5NjY3NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjk2OTg0NjY0Njg5ODQ0MjE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d367d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTM5MTM0NDg3NTEwMjE3MDg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2cc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NTI5MTQ4MjE4MTIxNTQyODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2b5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTU0MDQwNjU5MTkxNDM5MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e01bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ0MjM1MTM0ODg0NTE4MDE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMDE4MTA5NTM2MTA5MTg2ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d667d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NTkxNTQxNzg4NzI0OTk0ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2fc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUwMTkzNjIyNDc5NTY5MjExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2e5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTIwODc0OTg5NjIzNzAwMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e31bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NTM3NjQ2ODAzNTYzNTQwMDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2acbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDU2OTY2Njc0MTg2NTkwNDI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d967d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU1MTUyMDY1MDM4NjQzMjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"32c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Njg0MjU2ODYyNDA1MTg3NDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"315cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNjg3NzY2MjM4NTU5NjY1NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e61bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MjE5MTYwODE3MDY1MDcyMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODYxMDY2NzEyNTYwNTk1NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dc67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE5NjY3ODM1NzIyNDkzNDgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"35c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ5NzY3NDQxMjcxNzkzMDg5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"345cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MDExNjk1NTE4NTAxOTAxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e91bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjkxOTIxNzI1OTg3MzE0OTM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTQ1MDA1NTgzMTgwNTc0NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"df67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNDkzMDUwODk3Nzg0OTQ1MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"38c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:08.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:08.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2OTE2NTM2MjQ2MDE1NjMyNjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"375cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTU0MTEyNjYxODA5MjE0MjA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzQxOTYxNTI1NjUwMjA3MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzI0NDE5MjU1NzA2OTU4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e267d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzM5NzE2NDI2ODUzMTMyNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3bc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzQ5OTU3MTk0OTc4NzI1MTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3a5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE4MDA2NDc2ODU3MDQwMzQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NzUxNTgxMDE3ODIyMzg2ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ4MDQwNTQ1OTczNTMyNzAzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e567d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTgzODI4ODExNDAzMDc0ODIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3ec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1Nzk2NDc0MzgwMjcyODc4OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3d5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjU3MTU3Nzc0MTg0NjM3MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f21bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMjc5NjYzNzgzODQ1NTQ5MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjAzNjkyNTE2MjgwODc3NTkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e867d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzMxNTMyMzM2Mzk0NzA0MzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"41c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTExODUwOTkwOTA2NjU3MTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"405cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NDgxNDU4NzEyMzg2NTY2OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f51bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMTQyNTM5Mzg2OTIwODcyMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ccbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTk4NjYzODU4NTEwNzc2OTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"eb67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMzQ5MjU4NTExNTE3NjkxNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"44c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNTk3NjIwNDQ1MjcyNzM1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"435cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTk2MjUzNzY0MTk5NjY1MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f81bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODkyNzEwNDg2ODczOTQ4MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjczMjU3ODM1NTgyMjE5MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ee67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTU1MzM3MDAxNzk0NjEyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"47c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzgyMjQ3ODY0MTQ0OTg0ODE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"465cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:18.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:18.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzM1NjA4NjQxOTk5OTM1ODM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTUzNjUwODQwNDMyMTYzNzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTgzOTU4NDQyMTM1Mjk2MjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f167d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2MDc5NDQ0MDQ3NzczNTM1NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4ac9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDAxNzEwOTQ0NzgyNjM0MTcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"495cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzg3ODQ0NTgxMTQ0MTc4NTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe1bda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyNDkzMzkxNzg0NTgzNTA2NzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMTg4MTE0OTk2NTMwNzI2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f467d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1Mjc3ODk3ODU0MjI1MzI2NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4dc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODA5OTc2MzYxODcwNzQ5ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4c5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDUzMzA3MjY3Njg0MTkzNTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"011cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzYxMjc1NjI4NjMzMzE0MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAyOTE4MTIyMDIxMTM5NzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f767d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NzM4Mjg4OTIxMDYyMDM1NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"50c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2NjYwMzMyNzgxMTI4MzQyNjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4f5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDA3NjI4NDgyMTU1MzcxNDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"051cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTg0OTg0Mzk0NDExMDk5Njc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NDMyMjQxNDAwODYwODk2NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fa67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMDAzMTY2NzAxODU4NzI1ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"53c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTk3NzA4ODEzMjc2NDU3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"525cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ3OTExMjMwNDk2NDM1NDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"081cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDE2ODcyMDExNzAwMjAyNDg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ecbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjYxNTA0MDMxNjQ4ODUxNDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fd67d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzM2MjI4NTU0Njc1MDcwMjg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"56c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTQ1MTQ5Njg0NDczMDgyMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"555cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTI3MzQwNDA1NDg4NDE1MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0b1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MDIwMzgzNzg1ODY0NjU2NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDE0Mjc5Njc5NDc4ODIwNTkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTEyODg5MDgzMDQ2MDE1NjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"59c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzk0NTUyODA3NTk5NzI1ODM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"585cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTY3NzQ2NjEzNzkyMDY0OTI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0e1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODE5MTM3OTYyODk0ODU0OTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk2MDEzNTQ1MTQwMzUxMzg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MDMwNjcwNzc3NjgzODY0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5cc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDY1NzcxMDM0NDQwNjk2NTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-05-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5b5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA4Njg2NzY5MTIxMjEwNjgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"111cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc4OTUwNTg1ODQ0OTQxMDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTc2MTU5MTU1OTQyODQ5MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzczNTc1MDQ5NDkzMzM3MTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5fc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzQ1OTY4MTQzMTU5MTY1NzcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5e5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI0NzIzMjAzOTk2NTk5Mzc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"141cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzU2NTU4NjYxODQzMDU0NDI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5acbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzc2NTA5Njc2MjYxODQ1MzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDE0OTU1MjEwNzI5OTIzNDYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"62c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNDYwNjI0MjA3OTE4MzM5MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"615cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzE5MTU2NTk5MzIxNzA3MDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"171cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1OTU4NzU4NTkyNTMxMTU3NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:44.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:44.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzE4MzA5NTQxMzQ2MTYwOTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0c68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Nzg2NDc5MTcxNjIzMzg3OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"65c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NDI5NDU0ODU5Mzg3ODYwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"645cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTU0NjUwNjEzMzEzODU3ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1a1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc4NzM2ODI2NTE1ODk4NTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTMwNjc2ODA4NDQ0NjIwMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0f68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzAxMjQxNTUwMjg5MTU2NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"68c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMDE2MjUxODU2NDUyNjA2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"675cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.25Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNDAyNTk4NTcxMDIyODExODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1d1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzMzNDEzNDc0NDAwNzI3MzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMjA1MTcyNDcwNjI1Nzk5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1268d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDUxNTE2NDMxMDQ4ODc2NzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6bc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTI4MzYzODk4MzQxMzM2OTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6a5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NjM3NjQxMjI0MjgzNzY5MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"201cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNDQ5NzkzNTA0NzA3MjQ4NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk5NjM3ODU3OTAzOTI4MTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1568d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTg3NjMxMjA2MTY0MjAwNTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6ec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAxNzY1OTU3ODI4NTYxOTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6d5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg2MjgzODg4NDg1NzYxNTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"231cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTcxNzc3ODEyNDA1NjEzMjU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ2MDQzOTAwNzY3Mzg0NTA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1868d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTM3OTEyNzI1NjEwNDM1NjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"71c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDA3MjA2OTMyOTk5MTk4NjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"705cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjM0ODgzMDM2NzA5NDcwNDkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"261cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTY5NjY0OTI1NTEzMjMxOTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ccbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjM2Mjg0ODA5ODMxMDcwNTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1b68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzI5OTI4NTM1OTcyNTQ3MjQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"74c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjY5NDIzNzM3NjUyNjk0MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"735cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5NzU3MDU5MTMyOTgxOTcxNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"291cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDU2MDA5MTQ3NzA2MzMyNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MjkwNzY4MjMwNzI0ODk2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1e68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDg2NDAzMzY0NjUyOTQ4NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"77c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjMyNDMzNzY2MDg3OTY2ODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"765cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDM3MjYyMDE4OTY0NzEwMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2c1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMjAzNzU4NTA0MTQ4NzM5ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA5MTM1NzUyMzU0MjQyMTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2168d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzM5OTg4NDYzMjgyNDAzODM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7ac9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA2NTUxNjMxNzc4NzgzMzE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"795cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzOTEzNDA4MTcxNDkzNTM5NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2f1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTc5ODgxMjc5MTI4MDg4Njg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODg0Mzg0MDcxMzM5MjQ0NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2468d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MzkwMTE3MTAyMjk0MTAzMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7dc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODc0MzgwMjE2MjQyOTk2MTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7c5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc5NTgzODIxNDkxMjA0NTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"321cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjI4ODM1Mjc2MjY1OTExMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5MTY1NjU4MTE3NDgyOTI3NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2768d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODMwNzg3MzkwMTQ3Njg1MTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"80c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNDQxNzUxMjA2NDk3NDM1MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7f5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTIzOTY1OTMxODc0MzQ2MDQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"351cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4ODI2NDk0NDQ0NDg2MzY4MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTQ1NjcwNTI0MDgxMzkyNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2a68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODk2MjIxNDE1MTc2NDc3NDY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"83c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg1NzQ4OTQzNzI1NzQyMDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"825cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE4MjgwNTk0NzY5MTI2NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"381cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTk5NDI3MjYzNzg1OTE0NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ecbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDk1OTE3NzQwNDMwMjA3Mjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2d68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzk4NTkyNDg3MjgwMDY0ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"86c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDM1OTI2NDI3Mjg1MjIwNzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"855cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTA2MTM4MTY4NTU5MzU3ODAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3b1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzA0MDA2MjcxNjkxNDI3OTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1MzA4OTMyODcwODcyMzQzODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg2MjUzODg0NDQ1OTcyMzYyODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"89c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTAzMTk5NjIxODg4NzE4OTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"885cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMTUxNDEwMTEzNTMxNTUxODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3e1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Nzk1MjM2MjEzOTU1MzYzMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3NDM5MDM5ODAxNTc3NzgwNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTMyODU4OTI3ODMxNDIzMzY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8cc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MzY0MDc0MDI2Njg2NzA4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8b5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzk2MjA0ODk5NzkyMzUzNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"411cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MTk5MzY4NDMwMTAzOTE5NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzkyODczOTc3MjkzOTc2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTgyNzI0MTU0MDI1NTgxMDM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8fc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyOTI5Njk4MDM1MDk5MDExNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8e5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTU0NDIyNjczNzQxNDU5MzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"441cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjMwNTkyNjQxMjgyNDQyNjA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8acbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNzE0NzYzNjgxMzY1NjEwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTczMzIzNDE5MjQ2ODgwMDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"92c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2OTMzNzQ1MjQxNzIzNDQ4NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"915cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNTgzOTQzNjUxMTY5NjM2NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"471cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMDY2OTQzMDg3Njg3MDczOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTUxNTI1MDI5MTUwMjQ2Njk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3c68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTU5MzY2OTQ0MTI0MzM3Nzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"95c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjMwNzk1NTgzOTU4MzU4ODUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"945cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDg5ODM0MjQ3NzcwMzIwNDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4a1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE1ODg2Mjc2MDY3MzgwNDIyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzA2NDgzOTQ3OTk0ODE2NTMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3f68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3OTU0Nzk3NDIxNjc1OTg2ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"98c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM5OTEwNzE0MTA5MzgwNTQ3ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"975cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDYxMTY2MTM5Mjg1MDIwMzM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4d1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MzU5NjAyMDk2OTk4OTA0NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyNzY1NTc2Nzc5NzI2ODUwMzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4268d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjEwNjcwNjc1NzQ0MzYyOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9bc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTMxMjEyNzI5NTQwMjU5MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9a5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNDg1NDAyNTc0NTUxODYxMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"501cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTk2MzUzNDU4Nzc4MTY3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NDUwMzEyNTA1NTM0OTg4NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4568d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODM3NjExMTY4MjU3MDQ4NzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDExMDYxNzg4Njg3NjY5MzcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9d5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc3Nzk2NDM5MDIwNTUwMjkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"531cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjIwMTQ4MjI3NDQzNzc0NDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDEzOTMyODc5MjI0MDM3ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4868d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ1ODQ3NjY1NDQzNzgwNTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a1c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0NzcxNjQyMDYxNzIwOTIwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a05cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTcxMDAxOTQ3NzAwMjI3MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"561cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MTEyMTUzMDg1MzY2NjgwNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ccbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNTgwMjg0Njk5MjE1NDQzMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4b68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NTk0NzY0OTI2MDUxMjgxNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a4c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTU2MzYzMTIwMjQ0NzAyMzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a35cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMDkwNjk0ODM3NjMzNDM4OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"591cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjUxMTI2NzYyNTEyODYzODg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTE4OTM3NTczMjEwODA0MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4e68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMzY3MjY5MzcyODM2MTcyMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a7c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0Mzk5MzU5MTc4NDAzOTU0ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a65cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDE5NjM2MjEzODIzMzEwNDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5c1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ5Mzg1NjQzMDg5Nzk3ODc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDI3ODI1Njc3MzE1Nzc5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5168d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDU3NTMzMjcxMzkwNDU2NDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aac9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NzQ0MzQxNDIxMzAzOTE2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a95cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDg1NDY0MTIzMzc1MTY2NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5f1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDY2MTU1ODUyMzIxMTYyNDk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyODQwNDE3ODg4MjczMjA4ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5468d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjMxMjI3MjExNzA1OTUxNjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"adc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEyMjU1OTg1NTkzMTIzNDk5ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ac5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDAzOTE1NzQyNzY0NTkxNTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"621cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDQ4MTA2NTkwMzg0MzEwNDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NDYxMjk5OTkxNzc4MDA0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5768d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTM1MjA3NzgxNDkwODY1NjM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b0c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU2MzA4NjAyMTg1MzM5NDE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"af5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODYxNjU5MjUyNzg1OTY5ODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"651cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODg4MDkyNzcyOTYxNTQwNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjcyMDMyNjY1NzQ5NTYwMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5a68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5OTY2NzI2MTEwMDU3Nzg0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b3c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTU0MzI4NTI2NDgyNTc5ODY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b25cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjcyMjA0NzI0NTU0MTcwNzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"681cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTExNzQ3NDIwNTE3OTI0NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aecbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDI1MzE1NzI3MjE0Mzg4MzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5d68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ4MjcyMzM5OTYyOTE4MTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b6c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE0MzQzODk4NzE2NTU3NzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-06-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b55cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODUwMDM5MDIwNjY5MTYyNDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6b1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyMzM0NDUzNjEyNTI3OTkwNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ1MzYxMjkxNDU4NjY2NDM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2NjM3MDYyNjY2MzA2MzIxMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b9c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjIyNTYxMDMxNDA2Mzg1OTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b85cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMzM0MTM5NTIzNDI2OTkwNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6e1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMzE1MTU5MjYwNTg1OTU1MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUwODQ3ODYzMTU2NDIxMzYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4MTc4MjQ3MTMwOTM4Nzk5NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bcc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxODM4MTM0NTYxNzMwMjU5ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bb5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.723Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1ODIxNTYxMTEyNTA4MjA5MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"711cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.56Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEzMjA0NDM0ODY0ODQ2NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ3ODAwNTgzNTQyNDkxNDE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxODUxMjE4Mzc4NTgwNjA5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bfc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMDUzMTE3Njk4ODI0ODQyMTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"be5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzQ1NzUyMjI1NjE1MzE1NzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"741cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA4MTUyMDIzMDE3MTczOTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bacbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozc0ODkxMTUzNTA4ODM0NTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTc3OTIwNzU3ODYxMDkzMzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c2c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg1MTA0OTA1ODk4MDIzMzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c15cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5ODMxMjA5Mzc3OTA1OTIxNDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"771cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTgxMzI4Nzg2MjA4NTIwNTM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODIwNTQyNDI3MDkwNjYxOTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6c68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.557Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjYxMjYyMzA0MjQ4OTQ5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c5c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3OTM1MDA4MTkxOTQzNzMxMjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c45cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTYyNDYwMjQ3OTIwODQzNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7a1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDk4MTgwNzAyMjkxMzk5NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ3NTM2NjkxMzM4ODY3NDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6f68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3OTM1MjcwNzE5MTU4OTg1NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c8c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ1MjAxMjg5NDc0Mjg2OTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c75cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODI3MzAzNjM4MTYzMTg5MDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7d1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTcxNTUzNTM3NDc1MzI0NTA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDc3MTU1OTk4MDI4Njg5NTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7268d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjI0MDU4MDY4NjU4NTE3MDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cbc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzM1MjcxNjAyNjMzMjQyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ca5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTc1NjgzMzExNzU4MTM5MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"801cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU2Nzg5NTY5ODEzNDg1NzMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNDY4NjM0ODI0MDI4MDI3NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7568d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk2NzU5MDM2NDE0ODIzNjE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ5NDg2MTA1NjEyMTA3OTU2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cd5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNjIzODQyMDAzNDAxNjE4MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"831cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwMDA2NDA0ODM0MjEyMDYwNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MzgyODUwMzczNDIzOTY0MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7868d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5Njk1OTc3NTM1MDE2MTY4NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d1c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIwOTI3NDcxOTI0MzY1ODA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d05cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzMzMzE1NDEwMzgzMzQwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"861cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.59Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MDA0NDM4NTg5NTcxMTQzNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cdcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTY3OTc5MTM5ODcxMzExMzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7b68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDcyNTM4OTAyODE0ODc3ODI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d4c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzQ0MzIyNjUxMTc1MDY0MDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d35cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.82Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDc5ODEwMzc3MTQ2NDU4MjgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"891cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MjQ4NjM5NzE2OTQ2NjUyMTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d0cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzIwMzQ0NzczMTU1NTI5NTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7e68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjUzMTUwNTc2MDM2Nzk4MDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d7c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTAwMDkwNTI2OTUzOTkyMDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d65cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDAzNzc1MjE0MDEwMTczNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8c1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2OTY5ODM0MDgxMTYxMjM5NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d3cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3Njk0NDIyODEzOTgyMzYzMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8168d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY1NDI2OTI1OTE0MDY0ODE5NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dac9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MjY1Nzk4MzQ2NjQ4MDIwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d95cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjE3ODU5MTIzNjQ2NTM5MDAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8f1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODYwMjkyMDI1MDEwNzA3NDc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d6cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MjYxMTc1MjQ3NDI3OTY5OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8468d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0MzE0MTQxMjIxMTEyMjk5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ddc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0OTc3MzU4ODgzMDk5NjgwNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dc5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyODE4MjI1MDA4MTM1OTg5ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"921cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODI4MDMyNTE1NDUxMzc3NTE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d9cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDY4OTExMzAxNTE5NjMzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8768d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzkxNDU5MDY0MzEyMTg5MTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e0c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwNzQyMTA5OTY2MTgxNDUxNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"df5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk4NzA5Njc0MDc1MjQ4ODA0NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"951cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjQwNzI5MDg3MzA1ODI5MjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dccbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODg1NjI5NDc4MzkzMjcxMTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8a68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.613Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjI5NjM4NDkyNTY4NjQ1MDA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e3c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.373Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.37Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjUwODE5ODgzNDM3ODA3NDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e25cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDU2MDQwMDQ2MDA3MTkyNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"981cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDY4Mjk4NjY4MDkwNzc1NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dfcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjI4Njg3MDYwNTMxMTYyODk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8d68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NzI0OTkzOTAwMzgyNzUzMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e6c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxODA4OTQ4NjkyOTEwNjgyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e55cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NTU0OTgyMDEyNjAyNDM3OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9b1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.62Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc2NDUxNjg4NTU1MzcyMTI3MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e2cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2MDY1MzcyMjgwODQwODU4NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTI5Mzc3NDY1NTU1NzIzMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e9c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDg0ODc5NjUxNTQwMTkwNTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e85cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTEzNDY0OTU0NzQyOTA5MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9e1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDYxMDI4NTg2NTIzMDU2ODY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e5cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTc3NDE0MTQ4NDA1NDI2MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzU4NDc4MDk5NzU2MTc1NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ecc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjA0Mzk1Mzk3OTU4ODAwNjQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"eb5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozg5MDQ1MDU1ODgyMTA4Mjg2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a11cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MDY2OTcwOTg4MTkzNzk5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e8cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDkwMzYxNjcwMTM1NTIyMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTkwMzg5NTczNDgwMjY4Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"efc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NDg4NjEyNDY1MzE0NjE5ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ee5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMjYwOTI0OTUyODYwODg5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a41cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.633Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.63Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwODcxMzU0NTUzMzY2NzY5MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ebcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjAxMjMxMjI4MTE4OTE0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjExOTcwMDg4NDgxODk4NDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f2c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MjczNDY0NjA2Njc4MzM4MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f15cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MzY4MTE0NzYzNTQ3NjAzMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a71cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NTE0MzYzNzA0NzIzMDg2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eecbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTIyOTA1MzUzNDIzNzQ4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9c68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5OTc1NTY5MjY5OTg1NjAxMDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f5c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NjAxNDE2NjU2MzkwNDQ0NzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f45cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTAxNTk0ODMxOTM5MjQxNjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"aa1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0NjU3NDY4NTEyNjc0ODc3NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f1cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTE1MjA5MTc1MzEzMzQ3MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9f68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NjcxNTM2NTc4OTgyMzA1MjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f8c9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTE2OTIyMTc0MjgxMzY5NzczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f75cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0NTI1NTIxMzg4NTc3ODc4NjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ad1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NDg3NzQ1NTQ4MzE0MjExNjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f4cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYxMjcwOTAyNDExODIyMDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a268d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mzg2NjYzNjM0MTM5NTEyNDcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fbc9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyNzUyNzU3ODAwMzU4MzgxOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fa5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2NzUwOTc5NjM3NzIyMTY2NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b01cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU3ODI5NDI0OTI4NDY4MzkxMjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f7cbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTY3MDI5MjgwMDc5NzY1NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a568d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjQzMDAzNjcwOTAyMTcyODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fec9ca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDAxNTQyMjQ3OTY4MjcwNDE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fd5cc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjI1NjkxOTY5Nzk3MzQxNDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b31cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.653Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ1NDU5Mzk1MDYxODk2NDQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"facbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQzNTUxNjM4MDk2ODIyNjU5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a868d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU2ODMxOTMzNDE0MDYzNDkwNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"01caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NzcwNjc5MjkyNzYzNDM5MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"005dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTc2MTc5NTg2MjMwMTY3NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b61cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODU3NDA2NzE2MzcxODE4OTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fdcbe156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTEyODU0Njc2NTgyNzc2MTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ab68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg1MDQwODAwMTU1MzIyNjYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"04caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjMwMDc4NjIzNjk4NTU3MTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"035dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAxNjAzNTI4NTc0NDAxNjc1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b91cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5OTU2NDYyMjU1MTc4MjY3MjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"00cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4Mzg3Njg3NDEyMzA0NTk3NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ae68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzc2MzI3NDI1MjU0NTI1NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"07caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.433Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODcxMjA5NzI5NzAyOTEwNDIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"065dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.92Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMyODExNzI0NjUzOTYyODg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bc1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MTIzOTc5MTI1ODg2MzE1ODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"03cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5ODI3OTI1OTkwODM4ODQxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b168d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODY2MDUwMjkzOTE3MDE4NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0acaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDUzOTYxOTkzMzM4NTU2OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"095dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTc2NTMyNDk4MDQ3MTM1NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bf1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjczOTA5ODQ1NjU2MjYzMDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"06cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDY4MjQyNTk2OTI1Mjc2NzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b468d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxNDYxMzc1ODcxMjEzOTQzODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0dcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.44Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDMxNTk4NDM4OTkxMTU3NTk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0c5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1OTA0OTk0Nzg1MDk5OTk5OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c21cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTM3Mzg3MDA5NDEyMDYwODk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"09cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTk0Nzg5NTAxOTk3NTkxMjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b768d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTczNDQ0Njc3ODQzOTAyODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"10caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.447Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjc5MDgzNDA0OTMyMTE2MjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0f5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDM4ODEzNzYxODU5ODY3Mjk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c51cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMzY4ODAzNTA3NjgxOTM0MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMTQzODI4MTg0MTIwMDkwNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ba68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTc3NjU2MjU2NDEzMjUxNzk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"13caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzgyMzY5ODg3NDU4NTk1MTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-07-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"125dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2NDI2MDE2NTUwODA2NTI4ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c81cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.69Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyNDk5MTYxMzk0MDQ2MjUyOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0fcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTQ2NjM0NzYxMzI2NzU0NzM5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bd68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODEwMjU3MjUyMzQ1NzM5OTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"16caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMzA5MTQ1MDI5ODA3MTg5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"155dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMzczNjgwODcxMzc3OTIxOTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cb1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNDY0MjQ4MzY1MzM4NjI3MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"12cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzYzMTY0NzUxODUxNzgzNTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODg1NjQ3NjgwMjI2OTU5MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"19caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4Mjk3MzQ5MDUzMjgzNzk4ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"185dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTkyMDMwOTEzMDc1NDM1NTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ce1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTU5MzA2NjY1MzIyMDkyNTYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"15cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzU4MDMyOTAwNzE4NjMzMjM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjUwMzMyNTgzMjg4NzI5NzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1ccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTc3OTMyMzQxNDg1MzYxNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1b5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTE1ODkzMzYxNTkzNDM5MTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d11cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTUyOTk2MTc5ODgyNjMyMjIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"18cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODA4MzI0ODUwNDA0NzY0NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMTEzNTMxMTQyODAzMTQ2NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1fcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Njg2NjAyMDk4OTMyNDY3OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1e5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDgwOTk3OTY0MzY5NDc4NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d41cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.703Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNjY4MzAzOTUyNjE1MDQzOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1bcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4MDc4MzE2ODk3NzM1NjExMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQzMjk1MDc4ODU3OTUzMDU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"22caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzODQ1NTEzMzU4NzQ4MDYyMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"215dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzExMzc2OTE4NDQ1MTMwMDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d71cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzc4MjkxNTIzMDA3OTkzNTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1ecce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDE4MjMwMTQ5OTQ2MTMwMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cc68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NDM3NDY0ODQzMTU3NjE5MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"25caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ1OTMyMTg1ODI4OTk2MDkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"245dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.983Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0MTk5ODA2NTEzMDEwMjU4MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"da1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTI1MDU0NTIxMTM5MTAyMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"21cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1OTg3NDk5NzU0MTQ4OTQ1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cf68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwMDM5ODQzODAxODQyNTYxMTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"28caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY3NjUyNzY0ODM4OTA0MzY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"275dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Nzc2ODYzNzI3MzcxNjE3MzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dd1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MjM3NDc2NzMwODg4MzgyMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"24cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjc4Nzc0OTk0MTgxMzAyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d268d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTQ4MDc5MjQ0OTQ2MDUzNTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2bcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzI0ODYxOTkxODQyODg4MTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2a5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:19.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUyOTgwMjc4NDMyNTk4NDE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e01cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMjI1NjUzNzk0MjM3NjY4MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"27cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxNzA1ODUxMDc4MjUyODIyMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d568d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTYzODY2MjA5MTE5NDE4MTk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ecaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.497Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE5MzUxNzY0NjU5MDYwNDg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2d5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:19.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzY1MzIyOTQzMDAyODc1MDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e31cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzQ3OTI5MTQzNjE2ODIxNTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2acce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0Njc0MDgwNDEyNzU4OTg1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d868d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDAxOTI3MjMxMjU2MDEwMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"31caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MTE2MTUxNjEyMTk3NzI0NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"305dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjQ2MzYzMjIyOTAzNzY1MDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e61cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTgxMjUyMDI3NTM1MTc4OTU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2dcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA0MzMyOTk4MjIwNTcyNzUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"db68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MjQ5NDgyOTc1ODUxODM3MDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"34caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.51Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NjEwOTQ1MjY3MzI3Mjc0MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"335dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDI0MTUyNjc4OTg1NDI1OTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e91cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MTczMzkzNzAyNDA4MDQ5NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"30cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4MzkzNDQ1OTE2NDYxMDY4MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"de68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI2Nzg2MjUxMTU4NjA5NjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"37caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU1NTI5ODA0OTI2MTQzMTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"365dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMTU4NTc0NjU1MjA2MzIxOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ec1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.737Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE1OTQyODk3NDkyNzk5MjQzNjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"33cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzQ0MDEwMDA0ODQyNDU3NjQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e168d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjU0NTEyNDU4NTQ0NzA1NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3acaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MzYxMjI4NDk2NzI0NTk0OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"395dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjk4MTExODQyOTI2NjAyMDgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ef1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.743Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTA1MjAyNjY5MzMzMzQ0NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"36cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUwOTQxMDI4ODA0OTE2NTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e468d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwMTE1OTAxNzkyNzU0MjczNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3dcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.527Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODA2MTc0MDMyNzk4NzA3NTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3c5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.03Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAzOTc2Njk5MTkzMjA3MTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f21cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjc3NDE5MDg2ODg0MzQxMTA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"39cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.457Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYxOTQ2NDc0NTEwMDE0ODUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e768d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI5NzMyMDE0Nzk4NjY0NTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"40caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MjU2NjA0OTg5NzQzNzAwMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3f5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODI3NjQzODYyNTAxMDgxNDEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f51cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjU3NjIzNTQ2NzgwNDQ1NTE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.463Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzNzk0Mzk3NDQ3OTI2NTA5MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ea68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzgwOTQ0MjkxMDYyMjg1NDc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"43caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MDQ3NTk2ODc0MTYwMjUwMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"425dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5ODg3NDY2NDg3OTA0OTMwNTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f81cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNzM5MTkyNjIxNTAwODY5MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3fcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDQxNzM1NjU3OTY1NDE2OTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ed68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMzU0NDYwNjEwMzU5Mjc1ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"46caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzk1NzUxNjkwNTc3NzU3NTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"455dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjI3NjUzOTI1NDU0NDkzOTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fb1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.76Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDQ2MjkwMTc2Nzg0NTMxMjkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"42cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTg2MjgxMDM5NzQ1MzA0OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f068d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1OTA4NzI4NDE1Mzg5ODk0OTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"49caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Mjk2MzY5MjgzODM5NTIxMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"485dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.06Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjMwMjI3MDQzODY5NTgyMzUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fe1cda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExNDQ4NjY1MjEzNTEyMzAwMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"45cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.48Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTQwNTY2Nzk3NTQzNzIwNjgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f368d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ3MDQzMDQ3NDE1ODYyMjA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4ccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.553Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MjE0ODQ0OTMwNjIwOTQxNjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4b5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDY3MjU5ODE2MzMwNTU4NTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"011dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjIwNzA1ODA5ODgzNzQyODk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"48cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.483Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzA5OTM4MTE2OTc0MDU3MjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f668d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5NjE5Mzg0ODkwNTc2ODQ1MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4fcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzgxNjk0NDk5OTU4MDE3NzY0MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4e5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MjU1MzQ4ODkxNDUyNDM1NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"041dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDU1NzU0MTEyNDg0ODkyOTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4bcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.49Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzA4MTI4OTcxNDQ2OTU2MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f968d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NTYzNjg5MDA0NTg5NTUyMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"52caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3Mzg5MTEzMTI2NDQ4ODAzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"515dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNDIzMzU5MjEwMDE1NTQyMDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"071dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY2MDczODkzNDU4MDk1Mjk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4ecce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQwOTg2NDUxMTYyNTgyNzkzOTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fc68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDYzMzQwMTA1MzEwNjg2NTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"55caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MzYyNDE5ODk0NzYxOTU1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"545dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNzM3MTM1NTM5NDg0NzA5NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0a1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NTkyMTAxMjM1NzkwMzE0NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"51cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.5Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1OTY3NjQ0OTY4MTIxOTE0OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ff68d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTU0NzI3ODg5ODcyODc3MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"58caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTk4NTE0NTQ0MTY5NDU4MzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"575dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDE0MDA1ODk0ODQ3OTY2Mzk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0d1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MDgxOTg3MzE2NTIzNTE0NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"54cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU1MjA0MDI1NDI0NDkwMzU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDMzMTU4OTU0MTAyNzQxOTM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5bcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDQ1NjI2MjI2Mzg5NTI1Nzc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5a5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjg4NzAzMzExMzA3MzczMjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"101dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mzg4MDU4MDEzMTY2MTI3NTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"57cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.51Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTA3MDEyNDIyMzc1ODE4MDMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDQ0NjQyNzI2NzEyNDY3MzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ecaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTgzMTAwNDExMjU0NTY4MjYxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5d5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODEyMTI4MTExMjc5MjQ1MDcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"131dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODk5NTEwMTM3MjU0NTczMTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5acce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDk3Mzg4MzMyMzYyMzExOTQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4NDQ2Mzk4ODYyNDAzODU2MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"61caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3OTQzMDE5NjAyOTk5MzQ5MzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"605dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NjY2OTIyMzk3MDExNjk3NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"161dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk4OTc2NTU5ODc1OTI4OTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5dcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.52Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.52Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2MTE5NzA0NzQzMzk1ODM2MTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0b69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzcxNDEwOTk4MDYxMzE0MjcxMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"64caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.597Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIxNzIxODQ1OTEyMDE3NDQ5MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"635dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzY5NjQ3OTA5NjA3ODkyODk2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"191dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDAzMDU5Mzc3MDEzMDcyODI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"60cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDMwOTIyMTY4MTU3MDgzNjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0e69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDQwMzEyNTgzNjQxMTg0NjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"67caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.603Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njc2NjYzNTMzOTYxNDE1OTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"665dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.123Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMjI2NDI5MDc1NDM1MDk5NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1c1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAxNDc5NTQ0Mzg4NTY2MDY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"63cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.527Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ5NjQxNTQ4MjI0NDg0ODE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1169d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTE2NzgyOTg4MTE5NTg2ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6acaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTU0MjQ5ODgwNDIzMDk2NDE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"695dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MDkwMTk2NjIwNDg2NDY4MzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1f1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMTA4NzY0Mzc1NTIwOTU2OTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"66cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.533Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NzI5Njk3MjAyMzU1NTE1MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1469d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MjAxNjU1NjkwNDU0MzcyMjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6dcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzc5MDcyMDk2ODc4NTk1NTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6c5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5Mjc3MjMzMDE2MzU0Mzc2NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"221dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjQ5MjM1MzA2NjY4MzkxMjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"69cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNDU1NTcyNTczMDY4NDA4MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1769d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4MDI3NjQ3MjIzMTIwNDQ2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"70caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.62Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzY1Njk4NjY5MDMyNjAzNjUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-08-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6f5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzk1MzgzMjc4MDgwMDc2MzU3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"251dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.823Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.823Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MjQ0MDQ2Njg0ODc0Mzg2MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.543Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.543Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTAwOTk4Nzc2Mjk2ODQzNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1a69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMzg1ODY4MzIyNzg5OTIzNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"73caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzg1Mzg0MTU1MTc3NDI0NTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"725dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDc0NTA5NDI2NzM3MDA1NTAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"281dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.83Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNjg1MzUwMTkzODk2NTY3MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6fcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.55Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzE1NTQwMzEzMTYxNzk1NjQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1d69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjA4ODEwNjM1NzAwNTAwMzUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"76caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODcxMDA3NTQ0ODQ0MjQ3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"755dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzIwMTc3Njc5Nzg4MTE3NjU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2b1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzODQ2ODIwMzQwOTMxMTE2MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"72cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.563Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODk1MDU1MTMwOTA3ODYwNDk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2069d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NjQ5MTQ5MzgzMzA5MDM4NjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"79caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzUyNTYyOTc2NDQ4NDE3MTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"785dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzEyMDIyOTkzNjcwMDM2MTI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2e1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NDM4MDcwMDk5MjIwODI3NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"75cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4NjM2OTE2MTAyMzk1MDI2OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2369d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM1OTE0MjU1OTg3MjEwOTI2NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7ccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMjYwMzQ5NTk1MzE5MjE5MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7b5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzMxNTY3ODQ3NjYxNjY3NzcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"311dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI2NTMxNjk3MDI2NTY4Mjc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"78cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.573Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU1MjE4NzQ3OTg2MTY2MjkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2669d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzgxNDQ0MDY3OTYxNTY4ODQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7fcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTM1Mjk4NDUzNjc2MTE3MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7e5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTY0NDg3NjAwNDI1MTg5NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"341dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njg4ODMyMzM1MDA5NDc5NjI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7bcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0OTQ0ODg0MDUxNTQwNDQ2NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2969d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxNjM4OTU1NDc3NzE1MTA4ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"82caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU0Nzc5NjE1NzE0NjA5NjUyNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"815dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzcyNzMyNTAyODQ2NDA2NDI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"371dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNzY2NDcwNDEzNDM2MTExNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7ecce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.58Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzA2NDg0MTI3OTEwMzkxNTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2c69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzU1OTU3ODAwMDE4MzIxMjMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"85caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTgxMzU4NDAyMjk1MDAwNzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"845dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNzIyNDc1MTcwMDUwMTMwNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3a1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTU3MjAxNTQ5MzY2NzQ5OTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"81cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.587Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzMTU5OTM4Njg3NDUyODA0NjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2f69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjkwMDI1MjEzMTkxNzM3MjA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"88caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.677Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.673Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk1MDQxMDE0NjQ5NTY3NTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"875dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzYyMzM2MzE4OTEzNzM3NzI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3d1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjA5NzQ2NTExNjk0MDM0OTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"84cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.597Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODUyMjY2MzY4OTMzNzA0NTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTY0NjU4OTY1MDMzMTkwMzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8bcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjI0NTA4NTYyMDk5MTE3OTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8a5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0Njk3OTExMjgzMDcxODIwMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"401dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.863Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczMDk5MDc3NTY5Njc4OTgxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"87cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.6Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTAzNDc0MTczNDk0NDMzOTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg1NTQ2ODk4Njk4MzMxNTQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8fcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Njk3NDI2MzAzMjg3NTcyODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8d5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4ODQ0OTc0MDQzNDcwMDI3ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"431dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1MTA5OTAxOTczMTUxODkyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8acce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MjE1NDQ3NTg5MTA5NTMwNTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5MDA2MTkwNzExMTQ0MDAwMzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"92caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc1NzI4OTU1NjkwNTI2OTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"905dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3NDkyMTI1ODk4MzcwMDgyNTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"461dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjE4MTAzMjc4Nzk1NzU5NDU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8dcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDkzNjUzNzAxMzM3MTM5NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3b69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNzA0NTc3MDE4Mjk5ODMxOTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"96caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNDkwMjIwOTMxODA0NDc4ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"935dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzMDIwMTAzMzUwOTkxNTI4ODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"491dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzkwNzcxNTg4MTU2MDg5NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"90cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.613Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NDU2NzQxNDkzMDUzMjc3ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3e69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgxNzYxOTk3MDE5MTYzMTczMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"99caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwOTM1Njg1OTA5NTE4ODAyMzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"965dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDk0MTEyODk3ODUzNjc5OTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4c1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODYxMDI4Nzk2ODAzMzQ1MjM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"93cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.627Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTE3NDA4MjI1MzI5OTc3MzM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4169d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.923Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzA4NTY2NDI3OTYwNzg3NjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NjIzOTY5ODMyOTEwNjYwOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"995dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEwOTAxNzYwNTEzMTI5MDkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4f1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMjc2ODU0MDE5NjAyNzAwOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"96cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTAxNTc4MDg0MzY4MTk1NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4469d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwODk4MjkwNDMxMDk1OTUxOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9fcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxOTg2NjEzMTIyMDYzODM0OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9c5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODU0MTYxNTYzMDE2Nzg5Njc4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"521dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.89Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.89Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MDI4OTY2OTEwNzE3NTY5NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"99cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDg3MzU3NTg4NjA1ODI1MzM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4769d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Nzc2MDQ3NzA2NDIxNDU5OTUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a2caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.727Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTYzNDY5NDk2Nzc5NTU3ODAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9f5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDYxNjIxNDcxNDk2ODk4OTY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"551dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTQ0NzA0MDA3MDczNTg1MTg0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.64Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDE3NDUyNTU5OTM4MDEyODgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4a69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY3MTE4NDg1NTk4MTY4OTA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a5caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3OTM5NjY2MDIxMTAxMzQxODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a25dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxOTUxMjE1NjM2NDIxMjU1MDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"581dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTU4MjM0NjMyNTM5MzM2ODI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9fcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTAxMzMyNjY4OTg3NjQ4MjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4d69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTAyODk4NDAxNzk3MDE4NzIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a8caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4Mzg1MTMzMTMyODcyMjI5NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a55dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDY0OTA4MDE0Nzk1NTcxOTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5b1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTkzODIwMDIwNjQ4OTU4MjkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a2cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.653Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2OTAwNjc0MzUxMjY4NzQyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5069d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTk1MDA0MDMyMzE2NzEwNDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"abcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MDYyNjU0NTkxMzUzNjk3MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a85dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NzAyOTAzNzk2MDg5MzgxNDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5e1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NzUwNjE5MTUzMDgyNTAzMTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a5cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyMjk0NDA4NDMzNTA2MjgxNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5369d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODI5NDQzMDg3NzAzNDk2MjQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aecaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkyNTQxMjkwMzQwNzQ1MTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ab5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzQ0MzE3MjM4MTQ0Mzk3NjkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"611dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDExMzgwNTYyNTQ2MTg0MjQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a8cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.66Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMTU1MDk0NDk2ODQ3ODkzOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5669d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTI4NjE3NTA3Nzc1Mzk3NTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b1caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODc4ODY4OTk4NjY3MjQ3NDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ae5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjE0NzAxMjM1MjI1MTQzMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"641dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxNzY0OTE1MzMwNDYxMTkzMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"abcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.67Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwOTY5MTk3NDA1Mjc2MDg3NjcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5969d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzU4NTg3MTY3NDQ5NTE5NTE0MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b4caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.76Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1MzQ3MTE5OTc4NzA0Njg0MjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b15dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTg5ODE0NjM2Nzk0Njk2NTQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"671dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1NDI0NTk1MjUxMjc4NDUzOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aecce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.68Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzMDQwMDM5NTI0NzQwMjYyOTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5c69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.97Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTYwMjMyNDM3MjUxMDUwNDMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b7caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MDgxNzk1MDAwNzUwNDE1MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b45dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyOTU0ODM4NjA1MjkwOTI4NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6a1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE3MDkwMDM0NzcyMDgzMTIwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b1cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzMzNTIwNjc5MjAzNzc2MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5f69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.973Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNjMxNTkyNzM5NDU5NzkwMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bacaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.773Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.77Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4OTUzMjk4Nzg4MjUwNjM3ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b75dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDk2OTQzOTk4NjM0MDk1Nzc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6d1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyNDY0NTY0Njc0NTg4Mjk0MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b4cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4Mzc5MzQ0OTIzMDQ3MzQ5OTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAyNDAxNTI2OTA5MjM1MjE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bdcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MzAxNzEzNzk4MzQxOTMyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ba5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjgwNDMxNTQ4ODYyNDYyMDQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"701dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQ5OTE1MzkzMTE4Nzk1MTcwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b7cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.7Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1Njc4NjQ5NjE0ODE5MjE2NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MjM4MDU0MDI4NjMwNzAzMzg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c0caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc0NjI5OTU2NTczNzY5MzQ1MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bd5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozc5NTAzMjIxNzc1NDU2NDE2MzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"731dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.943Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MDAzMzQ3OTUxNjUzNTczMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bacce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.71Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjI5NzMyMDQwNTY3Njc4MTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNjk2MDUzODI2MDU4NjkxMjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c3caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.79Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTE4MzIxMzYzMzg0OTY4MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c05dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTgxMzM2MDczNjc4ODkwMDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"761dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY2Mzk4ODExNzgzMzYwMjcwODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bdcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.717Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.713Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzMDg3NDMxOTQ1NTgzOTI5MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6b69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE2OTQxNDExNDk3NDM4MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c6caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.793Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MTMzMzk4NjQxODM4NzcxMDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c35dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.367Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDUxNzc4ODc0NDAxMzg2MzQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"791dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.95Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDg4NTkzNjIwOTY1NTkyNzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NzgxMTYxNjIzNTkyMzcxODQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6e69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:00.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:00.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ4MTgwMDg0MzQ3MzczMjUxNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c9caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDIxNDI3NjM2NDQ1ODE0MjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c65dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAyNDQ3MjAyMTYzNDY1MTAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7c1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk3MDMwOTIwMDM1NzA3MzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc3MTM3MDI3MjA3NzU1MjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7169d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzQwNjU0OTEzOTc1MTkwMDgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQ5OTU0NDk5MjIzNDM5MzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-09-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c95dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.38Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNjg2NTk2MzQ4OTg4MzU3ODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7f1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTgxOTU4MzEyOTQ4NDYyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.733Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzMDAyNjg2MDE3MjI1NzA1MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7469d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM4OTY4OTMwNjQ1NjQ0MjAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cfcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNjMyNzg0NTcwODg1NDAzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cc5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODg0NjIyNTgwNDE4ODE2MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"821dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.963Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.963Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NjcyNTQxOTMwNjkyMDUzODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.743Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDIxNzQ4MDQxNzQxMzE4OTcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7769d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2ODA0NzY2MzE3MjkxNjc4NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d2caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.82Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxNTc3MjQyMzgzODEyMTI0ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cf5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEwMzIwMjA5Njk3MzAyNzMzMjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"851dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzUxMjIxODYwOTgzNjM2MzU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.747Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4NzY5Mjc1OTEyNTg4MzQ1MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7a69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTExNTMwNDE0ODI4NjI2MDkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d5caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.83Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjEzODY0MzUyNjI3OTI2NjY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d25dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDQ3NDA3MTA4MDUwNzc4MzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"881dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjY4Mjc2NTk4OTM0ODM3NTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.753Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.75Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NjUxODk5MjQyNjQ3OTA0MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7d69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODkzNTg0NjM5NjgwMTIwNjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d8caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI4MDYyOTM1ODczMTc5MzExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d55dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODQ4MzUxNzgwMjkxNTkzMjc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8b1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMzgzNzQ2MDkyNzE2Njg2MjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.757Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTUzMjI3Mjc0MDU4MTc0MzI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8069d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTAyNjk1NzgyOTM2NTYxNzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dbcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.84Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMDYwMzgwOTMyNTc3OTQ3MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d85dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.407Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE5MjgxMTg4Mjc5OTE2NjI1MDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8e1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE4ODQ3NTczMTAxMDkzNTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDMyMDYxODYzMzgyMDE2ODE2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8369d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MTUzOTA1OTIwODAwODk5NzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"decaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0NTYxMDgwMjMzMTQxMzM5NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"db5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.413Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwNTE4NzkwMTY0OTUwMzU4NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"911dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTMzMDM3Njc5MDk2NzQ1NzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.767Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzQ1NzU2NDc2MzAyMjY0NTIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8669d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzkwNjk3MjMyNzk3Nzg2ODk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e1caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.853Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0MTk1MDI2MDgwMjAxMTk0MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"de5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.42Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY4MzIyNTgwNTE5NDE0NjMyODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"941dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMwOTA4NTc2NTI4NTkzMjAwNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"dbcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.777Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.773Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDEzNDg1Mjk2MzQyMzg3OTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8969d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNjYyMzg2NzEwNjcyMDM0MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e4caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY2OTI2NzEyOTIyMDYxOTI2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e15dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTY1MDQxMTg3MDQ4NzgyMzIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"971dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.993Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2ODUxNTkzNjE1MzMyNTYxODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"decce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.783Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.783Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzNzczNzQ5Mjc3NzkwNjc5MzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8c69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDk3ODA0MDQ1MDE4NTM5OTIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e7caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5NzcyMzAxMTUzNzIzNjE0NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e45dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQxMTAyMjkxNDc3OTU5NDg1ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9a1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:53.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:53.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk2Mjk1MjQ2Nzg0OTU1Nzg0MjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e1cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2MTEyODM2NTE1NjU3NDU2MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"8f69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.05Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMzk1NTE0OTY2NTIwOTY4NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"eacaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk2MzUwODE1NTg0NzYyMzIwMTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"e75dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.437Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NTUyMzgxNjI2MjcxMjQxMDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"9d1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NDA2NjE0MTI3MTk2MzIzODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e4cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.8Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5NjQxMjAyNzYxMDUzNjc4NTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NDcxMjc2ODExOTMyMDExNDk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"edcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MTc2OTU4OTExODk1MTk2MjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ea5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.437Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzE1MDE3NzM1Nzk1NDQ5NzI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a01dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzk4OTA2NDE4Njg3OTA4NTY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"e7cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDAzNDkxOTkzNjM2NzkzMDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTIzMDAyNjI4MTExODU2NzM1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f0caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.88Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUzNDIyMDYzNzgyNTgyMTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ed5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.447Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNzY3NTE3NTQzNTY5MjU2NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a31dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.01Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTMxNDA3MzgxMTY4NTQ0MTkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"eacce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.81Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.81Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0ODk1OTE2OTYyNDA3MTQzMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjY1NTk0NDUwOTc0ODUzNjI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f3caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.883Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU0Njk3NTg4MTM5Njk1MjA3MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f05dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.45Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzczNDU1MDM4MDE5NjgwMDY2NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a61dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.017Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.013Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzA5MTMzMTcxMTgyODM3NDc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"edcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NTE1NDY4NTA5MjA4MDQzNzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9b69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDU2NjE3Nzk0MTY1Nzc5MjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f6caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.893Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.893Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzE1NTU0MjQyMDM5NDEwNzcxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f35dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0Mjc4NjQ2NTEyMzQ2MDE0MTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"a91dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNDA5OTQ0ODAyODk0NzYyNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f0cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.837Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxMzk3NTA4NTQzOTU0MTMzNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"9e69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzI2NzI1OTgwMjc4MTMwODEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"f9caca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTI2MzEwMTk4ODc1NzkxMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f65dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyNzQzODA0NzE3OTM4NjQ2MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ac1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxNjUyNTk5Mjg0MDgzMzg5MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f3cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.843Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDg4NzE2NDE0MTUyNjI1NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a169d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNzMzNzUyNTg2MTA1OTA3MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"fccaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNDM1NzI0OTY0OTc5MzY5NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"f95dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.47Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNjY4OTc1NzEyNDc4OTQwNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"af1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzUzODI4NDM5MzU1MDk5NTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f6cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.847Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTEyNzA5NjA4NzkwNTQ5MTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a469d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDI4ODkxNTAyNzY2OTE4NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ffcaca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTczMDE3ODgwNjMzMTM1ODE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"fc5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.477Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTMzODkyNTA1ODUwOTQxODkyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b21dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyMDMzMjkyNzA5MTI5MDkyNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"f9cce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTE0Nzk5NDA4ODM0ODU0MzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"a769d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNTk5NTg4OTg1NTYyNDMyMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"02cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.913Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTk3MDMzMTM2MzAwNzA2NTM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ff5dc36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.483Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.48Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1OTAyMDkzMTE0NTAzNDg4NjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b51dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5NzU3NDcyMTg2NTA4ODY2NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"fccce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.857Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDQyODUyMDkzNzE0NDQzMTExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"aa69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzEwMzM3MTYyMDk0MDA1NzQwNzE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"05cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.92Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTE3NDkzNzI5NTM0NTMyNTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"025ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.487Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MzkwNDI4MDU4NzEyNjY0MzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"b81dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.063Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTM4MzcyNTc0MTUyNDEwODYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"ffcce156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MTcwMDc5MTcwNjc1OTc1NjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ad69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NzM3ODEyMzY4NTY2OTI1MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"08cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.927Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.927Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTI3NDc1NDIzNjY2NzYzMDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"055ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.493Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.49Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjUxNzExOTc2NTA2NjAwNTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"bb1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwNTUxNjE0ODg2NDc5NjIwMjMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"02cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODUzNjQxMjkxMjY1OTU3MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b069d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NzQzMzMzMDU3NTg3NjY5MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0bcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5MTg2MzM3NzM0MDQ3NjEwNDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"085ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.497Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.493Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODgxNjU5MzExNjExNjE4NDA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"be1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.073Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MTgyNDcyMDk5MzEyMjQ1NjAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"05cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.87Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.867Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTQ0MzUyMzU2ODU0NTQzMTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b369d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzOTUyMjA4NjEwNzgwNjExNjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"0ecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAxOTYyNTA4NDczNDYzNzE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0b5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.503Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.503Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3NTkzNjM5NzAxMzA4MTU2NTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c11dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjE2ODc0MDUxMTUzNjM4MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"08cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.873Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MzY0NDYyOTA0ODIyODIwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b669d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTY1NzA2NzE0NzExODE4MzI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"11cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.943Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM3MzQzMTgyNzMzMTY1MDY1NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"0e5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.507Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.507Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3MzQ2MDAzOTIyNDIyNTY5MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c41dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.08Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQzNDM3NDIzNDk1MDQwOTczMTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0bcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTM0Mzg0MjUzMjE0NDU0MzA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"b969d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1NDE3OTQwMDY1ODA2OTg2MzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"14cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.95Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTU5MzE4NjA4NzMwNzg0NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"115ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.513Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.513Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MzUzMDYwNzUzMDczNzQzODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"c71dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.087Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5ODk5NDQ2ODM1NTQyNzg3NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"0ecde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODk0NDEwMzU4NDQyNzk4ODQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bc69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjQ4MzQ0NzcxOTU2NzI5MDYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"17cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.953Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQwMjE0NzQ5ODQwNDI3MzM0NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"145ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.517Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMjk1ODEyMjcwODM3MDIxMDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ca1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzY5NTg0MzAxODE3MDM3MTQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"11cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4NDAzNjQ4NzQxNDU4NDA2ODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bf69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcyMjY5NzY4Mzg3NzUxMTEwMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1acbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjQxMjUzNDcxMDM0Nzk0OTI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"175ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.523Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.523Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU5NzI1OTI4NDY1NzkzMTU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"cd1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkzNTk5NzEwNzE0MDE2NjYzMzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"14cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.897Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMzAwNDcwMzAyOTI4MDg2NDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDY3MDg1Njg2NTYxNzg5MzY4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"1dcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NDUyOTkwNTMzMzI1NjU4NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1a5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.53Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.53Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzM2MjQ3MjkxNjkwODQ5MzQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d01dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyMTI5MDU5MDI5MDM0MzU5MTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"17cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.9Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDE2MDMzMzM0NDY2NjQ2MzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTUyNTU5ODY4MTA2MTk0NTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"20cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.973Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2MTc1ODI1OTE5MDIwMjE0NTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"1d5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.537Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.533Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDY3MDE2MDA3NjM2MDg5MzA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d31dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.103Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzgxMDMxNTY0NDMxNjYxMTY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1acde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.903Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE1Mzk1NTM0NzQzNzUzMzYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"c869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4NjkwNTUyOTM4MDAyNzg0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"23cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.977Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjYwNzkzMzA3MDM1ODUwNTEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"205ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.54Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.537Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzM2NTQwMDExNTkwMzY0NzcxNDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d61dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.107Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTI5MDcwMzY2NDA0MTIwNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"1dcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.91Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY3NzcxODcyMjI1MzM3Mjg5NTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"cb69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg1NTU0ODIwMzA5MjQzNTg5NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"26cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.98Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.98Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzIwNzI2NzY5NjUyNzYwMDk0ODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"235ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.547Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.547Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNDAyNTU3NjY0NzMzNzkyNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"d91dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.113Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwNzgzMzExOTQzNTk3MTQ5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"20cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjcxNjg0Mzc5MTAxODI4NTgxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ce69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3MTQzOTgyNTE0OTQ4NTY5ODkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"29cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.987Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5NjczMTY1NDE4NjE1MzIxMTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-10-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"265ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.553Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.55Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzE3NDc0ODM2OTc2Njk5OTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"dc1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.117Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNjE1NDAyOTQ0MTc3ODcyNzQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"23cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.923Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.917Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU2MDQyMDQyNjc2MDE1NDg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d169d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNDI3MTQyMzIxODYzNDQ1ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2ccbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4OTQwMzg1NjYzMTU4MTI3NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"295ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.56Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3MjQxODgyNDYzODQxNTA5MjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"df1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMjYyOTU1MTIzMTk4OTA1MDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"26cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.93Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.93Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM3Nzc1NDIzOTc5ODU5MTkxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d469d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNjUxMzMxOTg2MTUzNDgyMDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"2fcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:09.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:09.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTEyMjEyODQzMzMwOTMyNzE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2c5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.567Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.563Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NzU5MDQ2NzMxNTM2ODI4MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e21dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDgxMDQ1MTYxOTYzMjU5NDIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"29cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.933Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.933Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NTkzNTU5MDUyMjkyMDk2MDAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"d769d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5OTQ5MzkwMzAxNDk0MTMwODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"32cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjIxMTAxNDQ0OTcxNjY2MDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"2f5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.57Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.567Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMzMjA3MDc2NTI5OTY4NTk0MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e51dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU4NjEzMDAxMzQxNzY5NzA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2ccde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.937Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.937Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwNzU3NTc4NjU1MDEzMTIzNDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"da69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTAzOTYxMTI2MDAyNDEwOTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"35cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.007Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MjEyNDA4MjQxNDkyMzk4MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"325ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.577Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.573Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTg4NzM2MTcxNDk5NDQyMTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"e81dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY4NTc0OTIwNTAzMDA4MTAwNjUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"2fcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.94Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.94Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTYzNzU4Mjg0ODc2NTQ5NzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"dd69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1Njk4NjMwMjg0NTU5NTA1NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"38cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzQ1Nzc1NzU0MjgzMTQxMjY1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"355ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.58Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.577Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjEwODkyNDc0MzYyMTAwOTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"eb1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.14Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDk2MTE5NTk2NTI2NzYyODEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"32cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.947Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.947Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzE1MzA4MjI2MTMzNjIyNTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e069d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTczOTU1Njg2NTQ0NTI3NzgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3bcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.02Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODY3NjY2MDE2MDU1NjEwMTY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"385ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.583Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.583Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjkyMDQzMzc0NTYwMjE5OTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"ee1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTA1OTM1ODM2MjE0ODI2MDUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"35cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.957Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwOTI4OTM0NzAzNjg2ODg5MzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e369d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDIwNDk0MjgzMDEyNDYwNDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"3ecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.027Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0NDUzNDQzNTc5MDQ3OTQ5OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3b5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.59Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.587Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTQ3NTIzMTY0ODI1NzI2MDM2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f11dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNzA5NjgyNjc4MzkwNDMwODI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"38cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.96Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.96Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTU0MjU3OTg3MTYyOTc1NTk4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e669d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.213Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzQxNzg3NDg2MDg0NTg2OTgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"41cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.033Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.033Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1NDQ2MzU1Njc0NzY2NTY0MTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"3e5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.593Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.593Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU1MzIwOTY4NDQ2NTU4MDEzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f41dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTM5NjQ2NDU2OTg1OTA5ODQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3bcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.967Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.967Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzY5MzczMjQ1MjcyMjIzMTAxNTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"e969d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDI3MDc5MTgxNTAyNzM1OTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"44cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDAxNDkwNzk2NDczNDYzNDg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"415ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.603Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.6Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyODA1Njc1Mzc3MTkwNjEwNzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"f71dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMTE0Mjc3MDg1MjYwODMzNDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"3ecde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.977Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDc2NjQyNTczMTkwMzY4Mzg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ec69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NjgwODA4NDcyOTk5MDIzOTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"47cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTc3Njc5MDIwNTc4MDg5MTQ3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"445ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.607Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.607Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTU4NTcyNDczNTQxNDE4NTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fa1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NTkyMzg3NDg0MDMzNTYzOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"41cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.987Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.983Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwNTk5NTI2MDMyMDgxNzIxNzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"ef69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAyMjMxMDUyODk4ODQyNDUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4acbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.05Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNDAxNjIzMDU3NzYyMTU3OTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"475ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.61Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.61Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjYyMzMyNjQ4NjY4MDE1NDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"fd1dda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.17Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5MjcwMTkyNjAwODY1MjQ5NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"44cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.99Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.99Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5ODk5MzMzMTM0ODY1MjQ1MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f269d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDc5NTExMTc1MzU5MDEzNTc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"4dcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDI4ODQ0MDUwOTQzMjQ4MDMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4a5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.617Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.617Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODQ0NjcxMjA5ODExMDM0Nzg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"001eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDY4ODE5OTIzMjEzNjU5MTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"47cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:45.997Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.993Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNzM2NTQ0MzQ2MTI1NjI0NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f569d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MzY0OTMxMDQ2NzU2ODQwNDUyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"50cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDIzODg4MjIxNDc5NjQ5NDYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"4d5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.623Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.623Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjc0MTk4MzQ1ODExNzc3NTMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"031eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzQzMzIxOTQxNDUzNzQyMDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4acde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:45.997Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MjA3NjU2MjUyNjI5MzI1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"f869d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.24Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTY1NjkxNjA4Nzc5MDIxNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"53cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.09Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2OTYzMDUwMjYwODE0MTY5NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"505ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.63Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.627Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3Ozg3MzQ0MTA1NzQxNzE0OTMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"061eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjQ1ODU1MDQxNjMyNDE1OTQ4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"4dcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.003Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.003Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Mjk3NDk1MzI5NTkzMjI1ODg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fb69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NTgyOTk2OTUxNjA3NDM0ODg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"56cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg4MzM1MzgwMDU1MTQ4ODkwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"535ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.637Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.633Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY4MTkxNzkwODcyOTI5MTY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"091eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTI0MDgyOTY0MzY4MTMyODM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"50cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.013Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.01Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMzgyMTU0NjgyODc3MDA0NzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"fe69d262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYzMzQzOTc0NjMxMDU2NDEwNzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"59cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.117Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NDcwMzExMjMwOTM4NDIxNTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"565ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.643Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.637Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDgwMzU2MDQ3ODkzMDQ5MzUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0c1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.197Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3MjY0MTk5MDE3NTg3NTMyMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"53cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.02Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.017Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTIwNjQxMDI3MTI1MDg3MTUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"016ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzA0NzI0NzE4MzUwMzE2MTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5ccbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.12Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxMDQzMjYwODYxMzYyOTM5NDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"595ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.647Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.647Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjg4NDY2Mjk0NzE2OTIzNzQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"0f1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjU2Njc4ODY3OTI1ODExMTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"56cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.023Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.023Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDMzMTAxMDI5NjAyOTUxNTYyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"046ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NzkzOTAwNTgzMjkxOTQ5MTg2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"5fcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NzYwMzgzNjM2NjY1MzI2NzAyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5c5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.65Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.65Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzUzMTc3MjY4MTEyMTAyMjMzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"121eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTMzMDg1MTg4MTk3ODA1MzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"59cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.03Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.027Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTc5MDU1NzM5ODU4NzU0MzA3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"076ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTkxMTQyNjk4OTMzMDkwNjUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"62cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjMwNzM2MjkyOTY5NzE5ODQxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"5f5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.657Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.657Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MzIzNjIxMTE5NTU4NzA5MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"151eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzY3NDI4Mjg4OTczNTQ5OTQ2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5ccde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.037Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTg3ODUwMDk0NTQwODc1MjI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0a6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4Ozk5ODQzNzI3MDg5NDgzNDkwMDE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"65cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTY1MDc3MDY4MDY2ODAxMzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"625ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.663Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUwNTE5MjkxMTk0MDIxMTI5MzkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"181eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzMzOTU2MDg1NzQ0MTM5Mzc5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"5fcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.04Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.037Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzMzMjI3NDkzNDAwNzExNjI2MTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"0d6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NDQyNTA5MjU0NDU0MTU0NTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"68cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.143Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDUxMzQ4MjI3MTQ4NTI2MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"655ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.667Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.667Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NDAwODcxNjE1OTc3MDM4NTQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1b1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDkxNDU3MDg2OTEyOTI3NTAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"62cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.043Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.043Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODU4OTY3NTIyNTUzMDcwMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"106ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5NjE0Nzk1NDgzMzM1MzYyMzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6bcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0MzU1MjkzODY3OTY0ODc5MDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"685ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.673Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.67Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjYzNjg4Mzc2MjQ5NjQxMjE0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"1e1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwOTQ2OTU5ODk5OTQ3MDk3ODIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"65cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.047Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.047Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3NzM4NzkwMzYwMzAxNzc1MjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"136ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYxMTQzOTE5NDY0NzEyODIyMjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"6ecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.153Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.153Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxNTMyNTMwOTkzOTc3MDk1NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6b5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.683Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.68Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzM5NDg1NzAwNzA4MTEwODg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"211eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTY4MzM5MTQ0MjgwOTM2Nzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"68cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.053Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzODE1MTIyMzAxODYwOTQwMzMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"166ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNTYxODYzMzIzOTk2NDA2MzI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"71cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzUxMDMyNjUwODczMzg4OTg3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"6e5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.687Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.687Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTU0Nzk4OTU5MTI3NTU2Njg4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"241eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTc1Mjg5NTk2NzM1MjY4NzEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6bcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.057Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.057Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTMwMDY1MzQ1NDkwMDYxMTk0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"196ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTExMTA4ODg4NTI4OTQxMTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"74cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI5OTE0NjE1NDI4NDEzMDAzMTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"715ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.693Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.69Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE0NjI1NDY3NTgxMTM0MzQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"271eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.24Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1NzI4MDM5MTUzNDU4MzMxNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"6ecde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.063Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.06Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTI5Njk0MDk3NzUxOTQyOTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1c6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTczMzAyOTk1MTkxOTUwODQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"77cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.17Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3Mjk3OTI0MzI4NzYzMTc4NDAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"745ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.697Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0NTAzNTM5NTUyNTI3ODI4MTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2a1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM0NTQ2NDUyNTU2Mzk1NTM3MjIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"71cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.067Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.067Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Nzc5MDc2NzExMTc4NDQwOTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"1f6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5MTMzMjg0MDA3OTUwNjQxNDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7acbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.177Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1MjQxMDk4MzEzNDI4MDkwMjgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"775ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.703Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.7Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjQ1Mjg1NDQ0MTExMzU1Njc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2d1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.25Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTExODExMTUzODkzNzkwNDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"74cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.07Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.07Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMTYzNDEwMDI4MDkzNTE3NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"226ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.31Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjEwMzE0ODAxMTg0MTM0MjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7dcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.183Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUxMDI5NDgyMzY2OTQ4MDM4NjE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7a5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.707Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.707Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNTA1ODE0NjQ1MzYxMjI2MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"301eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE4MzE4MDYxNTQyMzgwNzQ5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"77cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.077Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTQxOTE0MzEzOTQ2ODMwMTI3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"256ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.313Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDgxNjUxMjI3NDI1NjcxNzgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"80cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.187Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDkyODUyMTI1OTEyNjQ5ODI5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"7d5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.713Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.71Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzExMjg0NjMzNzM5MjI0ODMwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"331eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEyNzQzMTY5Njk3MTIwNTYzNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7acde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.083Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.083Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODE4NDc3MTUxMzU3MDk5NDMyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"286ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.32Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyOTQ3MjExMTgxODcxMzMxNTA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"83cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODY5MDg1MjM0MDQ1NjQyMjY0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-11-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"805ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.72Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.717Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MzE3MDkzNzI4NTA2MDI1OTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-01\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"361eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.26Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTE0MDIyMzgzMjE4NDc1MTUxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-01\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"7dcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.09Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.087Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0Mjg4MTcwNTE5MDk5ODk3OTg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-01\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2b6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MjQ1NTUxNTYyMDIzMjgzNjExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-01\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"86cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.2Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.197Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDYxMjQ2NTQwMDI2MjkzODgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-01\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"835ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.727Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.723Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0ODA1NDM4OTM0OTY3ODM1MDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-02\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"391eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.263Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNzAzNzAzODgwODEzNzQxNjcyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-02\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"80cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.093Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.093Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3ODMzNjk2ODA0NzM0Mjk4NjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-02\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"2e6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDU3OTM1NDY3OTQ3NDI3NTIyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-02\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"89cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.203Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODc3MjE0MzAwODY1NzkwNTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-02\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"865ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.73Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.73Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxMjc1MzAzNzU2NDQyNjY1NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3c1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.27Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwNzM2MzEwMTAwNTU3MDQ1NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"83cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.1Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.097Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MjMwMzM1OTI3OTE1NzcwNTE1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"316ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQyOTY5MDczMzI1MDA1MDkyNzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8ccbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.213Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzA1MDYyMjE4MDQzMzUxMzkzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"895ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.733Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NjE5Njc5ODI1MzIyOTE0MjExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-04\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"3f1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.273Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjI1NjUxODMwMDkwOTk5MDk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-04\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"86cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.107Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.103Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg4OTYwMjYwNTAzMDQxNDA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-04\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"346ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.34Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.34Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTgyMzg2Njk1OTQyODk3MDQ1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-04\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"8fcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTg2MDAwNzIxMjYxNjI0NDYzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-04\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8c5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.74Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.74Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2ODE4MjgyMjI5NDkwNDQwNjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-05\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"421eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.28Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgyMzU1MjE5NDEzMTI1MDE4NjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-05\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"89cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.11Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NDMyNzgxMTEzNjA3Njg5MzQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-05\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"376ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMTk0MTQ5NDM4NjUzMzgxMTAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-05\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"92cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.22Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNzk3MTg1MTM4MDIwODM3NTU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-05\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"8f5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.75Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4MzI5MjUxODY5ODA1MjI1NDkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-06\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"451eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.283Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgwMzY3MTIzNTgxMzc4NDE2OTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-06\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8ccde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.123Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.12Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUzMTAzMzUzMTE0OTE5NjYxNTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-06\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3a6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkxOTIxNDkyNTc5MjMxNDk2MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-06\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"95cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.223Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMTc2NjA2MTQxNDAwODg5ODExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-06\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"925ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.763Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.763Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzE3ODAyNDQ3NTQ4MDUzMDU0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-07\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"481eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzEzNjE2NTczMjU4MDU0ODUwNzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-07\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"8fcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.127Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1OTI1ODY5NjY3MjQ5ODYxODgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-07\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"3d6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMyNDA4NDI2OTk0OTY0MjA1NDQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-07\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"98cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.233Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE0MjQ0MDAyNzcwODIzMzI2MzIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-07\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"955ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.77Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.767Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMTMzNTY5MDk0ODU0NDg3ODMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-08\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4b1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.293Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTcxMDA5MDYwMDYzMzk4NDk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-08\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"92cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.133Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.133Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDY1NjYyODMwMTAxMjE5NjE3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-08\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"406ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIwMDUxODQyMzczNzA2NTM0OTcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-08\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9bcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2Mzk3NDI1MjgzNjkwNjczNzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-08\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"985ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.78Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0NDQxODY4ODQwNDUyNTEyODAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-09\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"4e1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjYzMDU5ODg3ODcxNTMzMTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-09\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"95cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.137Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.137Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3NzIwODkwODY0MDI1NzQ3MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-09\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"436ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDk4NjUwMTcxMDgzNTEzNDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-09\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"9ecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.243Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMTc4ODA4OTI5NjQxNTAxNTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-09\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9b5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.787Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.787Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTYyODkxMzUyNzY3MzkzODY2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-10\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"511eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3ODMxODgyNzc1NzUzMTA2ODE4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-10\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"98cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.143Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.14Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MzMwOTA0MTU3MzQ0MzYyOTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-10\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"466ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4OTQzMjE5OTYxODA4MDYyMjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-10\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a1cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.247Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzQ1NDY0MzU5MjgxMTI5NjEwODE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-10\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"9e5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.793Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.79Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxNzg4OTgwMzAxMzY5MDcyOTkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-11\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"541eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.303Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.303Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDkxMDA0NDgzNTY5MjM3ODgzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-11\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9bcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.147Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.147Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0MTYzODk1OTY5NDI0ODgyMDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-11\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"496ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMDAxOTE3NTI0NjA2MjEzMjY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-11\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a4cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.253Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.253Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY1NDI4NzE2MjU3MzcxMzIyMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-11\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a15ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.797Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.797Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc0Nzg5NDIyNjc3MDQ1NTU1NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-12\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"571eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODE0NzA0NDkxMjQxMDQ0NzA4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-12\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"9ecde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.15Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.15Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIxOTkxODExNzc4NDgwMjMxNDIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-12\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4c6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NjA5ODM4MzA0NTMxNTYyMTQyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-12\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"a7cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.257Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.257Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMTQ3NjY5NzA2MDExMDM1NzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-12\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a45ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.803Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.8Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTg4MTM1MjQ4ODQwOTI5Mjg1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-13\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5a1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgzNDcwNTEyOTQ3OTEzNzIyMzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-13\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a1cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.157Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.157Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg0Njg4NDk4MzM1NjQyNzQyODcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-13\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"4f6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.387Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDAzMTk1NjA0OTUyNDkwOTk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-13\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"aacbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.263Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.26Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM5MTQ0ODIzMTA5MTQ1NjQ1MDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-13\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"a75ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.807Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.807Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU2NjUwMjUyMzU5MDY3ODI4NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-14\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"5d1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjA3MzY2MjU1NTE2NzYxOTEwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-14\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a4cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.16Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.16Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMzc2NzEyODgzMjM5MjA1OTYwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-14\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"526ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.39Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTgzMDQyOTc2ODg2Mzc5MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-14\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"adcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.267Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.267Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNjU2MTQwMTAzOTE0ODQ0MzI4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-14\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"aa5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.813Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTQ4ODMzNDk4NzIwMjA3MzE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-15\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"601eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Mzk3MjA5MzYzODI2NTY0MTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-15\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a7cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.163Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcxMzY4ODI0NjE2MjYyNjc4NDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-15\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"556ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzExNDI3MDQ1NDU4MTQ1MjI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-15\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b0cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.273Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.27Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5NjU3NTQwNzM5NTg3MDI5NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-15\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ad5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.817Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.817Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ3MDY2MzEyMTAyNzUwNjMxODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-16\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"631eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.327Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.327Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2ODc5MTE5NzU5NDM5MjQ1ODUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-16\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"aacde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.167Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.167Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzM4NTI4OTI4NjQ2MTgwMzMxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-16\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"586ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.4Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODE3MDQ1Nzc2MDQ1NzA2MjQzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-16\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b3cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.277Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU4MDcxNjUzMzU5MDMwNjk3NjkxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-16\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b05ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.827Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.827Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDkxMTI3ODIwNzMwNjU1MzM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-17\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"661eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.333Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzOTY1NzgzOTQyODQ0NTMyOTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-17\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"adcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.173Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MTc4NTM5NzY1Njc1NTA1OTQwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-17\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5b6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.407Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.403Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1NTMzODQzNzg1NTY4Mjg1MDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-17\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b6cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.283Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.28Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYzNzQ3MjU2MTM1NjIzMDA0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-17\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b35ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.833Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.833Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyMjczNjc1NzQwMDMyODAzNTUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-18\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"691eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.337Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjI1MDAzMDY2OTIyODM5MTk1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-18\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b0cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.18Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.18Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI1MTU4MTA2MTY3MDE1OTA4NDUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-18\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"5e6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.41Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.41Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1NjkwNzMxMjUxNjk3Mzg5Mzk3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-18\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"b9cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.287Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzcwOTkyMDc2MDQ3MjkyNjc4NzExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-18\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b65ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.84Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.837Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyNTc5MjM3MTY3MzM5NDE1NDgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-19\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6c1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMTc2MjMyMzYwOTM1Nzc5NTI0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-19\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b3cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.187Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTg3NTUzMzIzMDI5NDQ4ODA2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-19\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"616ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.417Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.413Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDM0MzM4Mjk1NjkzMzIwMzgyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-19\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bccbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.29Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.29Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDAwNTAwNzMxMjM0OTY5ODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-19\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"b95ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.847Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMjM0NzcyMTI2MTA1OTI4ODY5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-20\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"6f1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.35Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MTQ0NTYxNjY3MDMxOTIwNjIxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-20\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b6cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.19Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.19Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc2NTIzMzE0NTAxNTQ3ODgzODMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-20\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"646ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.42Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc5NTc0NzM3OTg1MDUwNjk1NDMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-20\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"bfcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.297Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.293Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NTk1NjA2MjMyNzU5NzgxODc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-20\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bc5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.85Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.85Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMjQyOTcwNzUyNjY4NjA2MDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-21\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"721eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.353Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTAyNzAzMDk2OTY0NTQ5OTgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-21\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"b9cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.193Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.193Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3ODM1Nzg5NzIwODg2MDU2ODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-21\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"676ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.423Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.423Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxMTgwMzY3MzkwNDE0ODA0NjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-21\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c2cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.3Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.3Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDg1MjczMjI1MjA5MTUxOTc2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-21\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"bf5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.857Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.853Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI2MTQ0MzE1MjU0MzU2MTQxMzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-22\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"751eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.36Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk5Mjg5MjY5OTMxNjE3MDY5OTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-22\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"bccde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.203Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.2Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMzEzMDUyNDc4Nzc4NjI1NDc0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-22\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6a6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.427Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc1ODEwMjgyODA2NjM2NzU1NzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-22\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c5cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.307Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.307Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM1MjI5Mzc0MjU2ODU2ODYwMzgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-22\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c25ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.86Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.86Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMTA0MzczNDIxOTU3NDg0MTc3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-23\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"781eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.363Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUzMDU5OTg5NzQzNjE4NTA2NTE7MDA7Jw==\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-23\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c0cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.207Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.207Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwODA1NzYzMzMwNjc1NTU4Njk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-23\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"6d6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.43Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.43Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NDI5NTg3NjUzNTkyNzIyMDY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-23\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"c8cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.313Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.31Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE4NDEyNDEwNzkzNTIxMDk1NzcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-23\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c55ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.867Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.863Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTQ2Njg1OTA4NTQ0NjI3MzAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-24\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7b1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.37Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.367Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjAyMTE0NjI1MTE2NDY4MDUwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-24\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c3cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.21Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.21Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzgxOTY5NzI2NjM1MzMzNDE2MzYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-24\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"706ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.44Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.433Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzMxODU2MDkzMjU2NTQ4MTkwODQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-24\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cbcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.317Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.317Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM4Nzk2MTAyODk5MDcwNTU3MjQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-24\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"c85ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.873Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.87Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNTU0NDE5MDk2NzU2NjE0NzUxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-25\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"7e1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.377Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.373Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4ODg0NDc1MTc4OTIwODUzMDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-25\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c6cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.217Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY5MDIwMDMwNDk0MzU3NzQ4MTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-25\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"736ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.443Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.443Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExODI1NzU0MTI2MDMxMDc2NDUzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-25\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"cecbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.323Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODExNTk0NTQzNzc5OTU4NzAzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-25\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"cb5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.877Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.877Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTA5NzczNTYwODA5MjQwMTU2MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-26\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"811eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.38Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.377Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDY2NDI3NzUyMDY3OTU5NzAwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-26\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"c9cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.223Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.22Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2NTgzNDAzMzI1MzIzOTAzMjYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-26\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"766ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.453Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.45Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwODMxNjU2Njc0NjE3OTc2OTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-26\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d1cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.33Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.33Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODYxMTgyMzM0MTQ0MjUxODU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-26\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"ce5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.883Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.88Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU5MTg2NzMwODk2MTk4NDAwNTMxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-27\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"841eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.383Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.383Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTg2Mzg1ODU2Mjc3NTkxNDM3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-27\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cccde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.227Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.227Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NzMxOTQ4MjI3MzM1ODk3OTY3MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-27\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"796ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.457Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.453Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDc2MTEzNjUwMjkzNzkwODIzMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-27\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d4cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.337Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.333Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzcxODI4MTI3ODUyNDM1NjA1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-27\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d15ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.887Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUzMDk5MDkzMDA3MjUwNzk5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-28\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"871eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.39Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.387Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MDgwNDQwNTQ4ODc3MjM4NDU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-28\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"cfcde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.23Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.23Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ5NTc2MTE2ODcxODM4ODA5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-28\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7c6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.46Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDc2NTI3NDQ4NjkzNDQ1NDI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-28\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"d7cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.343Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.343Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0MDUwNDk4NzU1MjkwMTE2NTExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-28\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d45ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.903Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.897Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzAyNzg5NzAzMDEwMjk1ODgwMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-29\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8a1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.393Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.393Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MDk3MjA3NzU4MDkxNjg2MTEyMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-29\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d2cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ0OTE1ODk2MDA1NDY4NzY1NDYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-29\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"7f6ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.467Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.463Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkyODMyNTcwODc1OTk0NjI3MTQxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-29\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"dacbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.347Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.347Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMjE3NTYwMDcxNTE2NTMzMjM4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-29\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"d75ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.907Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDY5NDM1Mzk2OTc3MDAzNjAxMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-30\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"8d1eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.397Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzczMzk1MjUyOTU4NjQ2ODI1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-30\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d5cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.237Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.237Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTcyNTI2NzY4MTE1MzcwNTU1MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-30\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"826ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.47Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.467Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2MDg0NzY3ODExNDg4ODI3MDcxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-30\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"ddcbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.353Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyMjMxMTY0OTE1MDYyNjUyNDExOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-30\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"da5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.913Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.91Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTE3NzI5MjQxNTU3NDMyMjM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-31\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"901eda5c-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:54.403Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:43:54.4Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDExMzUxMzM3NTk1NTEwODM0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-31\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"d8cde156-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:43:46.247Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 3,\n            \"pendingGuarantees\": 3,\n            \"systemCreatedAt\": \"2023-06-09T07:43:46.243Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMTY2Mjg4ODQzNjIwMjMxODgxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-31\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"856ad262-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:01.473Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:01.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NjgxMDYyNjM5MDY1OTk4MjAxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-31\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"e0cbca68-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:10.357Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:10.357Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODQxMTc1OTQ1MTM1NTcyNDQ0MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2025-12-31\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"dd5ec36e-9906-ee11-8f6e-6045bda14c6a\",\n            \"bookingsBookedRoom\": 0,\n            \"bookingsAssignedRoom\": 0,\n            \"lastModifiedDateTime\": \"2023-06-09T07:44:20.917Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3,\n            \"forecast\": 0,\n            \"pendingForecast\": 0,\n            \"guarantees\": 0,\n            \"pendingGuarantees\": 0,\n            \"systemCreatedAt\": \"2023-06-09T07:44:20.917Z\"\n        }\n    ]\n}"}],"_postman_id":"deae1dfa-1a1d-40b7-be12-4df34bb17528"},{"name":"OffersWeb","id":"ca49b84b-fca4-49f8-9340-d36fb8a7e856","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/webOffers","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","webOffers"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"a889bd4a-5f16-427a-8778-200bd006696d","name":"OffersWeb 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/webOffers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1907cc7-96e3-495f-e135-20d7287f2d94"},{"key":"mise-correlation-id","value":"74eb6647-6578-4afa-bc58-0803378b4822"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"72ba2e6d-81fe-4f28-938f-27b79992dfb0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:11:23 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/webOffers\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzE2OTg1NjA2OTQ1ODQ3MzIwNTE7MDA7Jw==\\\"\",\n            \"systemId\": \"4ae2a7eb-d183-ee11-817a-6045bd969a75\",\n            \"onlineBookingNo\": 81,\n            \"bookingEntryNo\": 2,\n            \"entryNo\": 1,\n            \"entryDate\": \"2023-11-15\",\n            \"offerNo\": \"\",\n            \"systemCreatedAt\": \"2023-11-15T16:13:39.587Z\",\n            \"lastModifiedDateTime\": \"2023-11-15T16:13:39.587Z\"\n        }\n    ]\n}"}],"_postman_id":"ca49b84b-fca4-49f8-9340-d36fb8a7e856"},{"name":"OnlineGuest","id":"71f37e57-a438-4336-afd0-687234d710a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/onlineGuests","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","onlineGuests"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"1d6cad5d-8c2c-4f84-8199-6be60a77e4cb","name":"OnlineGuest 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/onlineGuests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"28db2e7a-3a5a-2b13-671f-2c632ff30324"},{"key":"mise-correlation-id","value":"53eb79a8-3c99-4c41-9f14-f5b2313bacf0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"bc083456-f5a1-4248-bdf5-6b7c395fae24"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:12:23 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/onlineGuests\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYwMDE5OTkxNTU0NjYwNzMyMDIxOzAwOyc=\\\"\",\n            \"systemId\": \"4ce2a7eb-d183-ee11-817a-6045bd969a75\",\n            \"onlineBookingNo\": 81,\n            \"bookingEntryNo\": 2,\n            \"entryNo\": 1,\n            \"entryDate\": \"2023-11-15\",\n            \"guestNo\": 999999696,\n            \"name\": \"Pippo WL\",\n            \"surname\": \"GuestSurname\",\n            \"address\": \"Guest address\",\n            \"country\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"phone\": \"xxxxxxxxx\",\n            \"fax\": \"\",\n            \"email\": \"guest@email.com\",\n            \"countryISO\": \"ENG\",\n            \"age\": 23,\n            \"birthdate\": \"1999-12-31\",\n            \"flightNumberArrival\": \"\",\n            \"flightNumberDeparture\": \"\",\n            \"flightDateArrival\": \"2023-08-31T00:00:00Z\",\n            \"flightDateDeparture\": \"2023-08-31T00:00:00Z\",\n            \"flightFrom\": \"\",\n            \"flightTo\": \"\",\n            \"systemCreatedAt\": \"2023-11-15T16:13:39.777Z\",\n            \"lastModifiedDateTime\": \"2023-11-15T16:13:39.777Z\"\n        }\n    ]\n}"}],"_postman_id":"71f37e57-a438-4336-afd0-687234d710a4"},{"name":"PriceWebCalendar","id":"2ffeeafd-3952-484d-8ae4-e6931d230e3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/priceWebCalendars","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","priceWebCalendars"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"0bb43cd5-10f5-48cb-8fd8-e90f97cab89d","name":"PriceWebCalendar 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/priceWebCalendars"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"b2b8b118-7af0-7809-937e-77da885bffd1"},{"key":"mise-correlation-id","value":"159936a8-3e79-4cb0-ba1a-a1578bfea22d"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"1708b071-77a7-4c2a-9a94-3f01e4c848b4"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:13:46 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/priceWebCalendars\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0ODU0MzY1ODg2NDI3MDc4MzgzMTswMDsn\\\"\",\n            \"systemId\": \"49e2a7eb-d183-ee11-817a-6045bd969a75\",\n            \"onlineBookingNo\": 81,\n            \"entryNo\": 1000,\n            \"entryDate\": \"2023-11-15\",\n            \"date\": \"2023-08-31\",\n            \"amount\": 90,\n            \"description\": \"Fantastic room in the most prestigious hotel.\",\n            \"freeChildren\": 0,\n            \"rate\": \"BUDGET\",\n            \"valueChildren\": 0,\n            \"systemCreatedAt\": \"2023-11-15T16:13:39.527Z\",\n            \"lastModifiedDateTime\": \"2023-11-15T16:13:39.527Z\"\n        }\n    ]\n}"}],"_postman_id":"2ffeeafd-3952-484d-8ae4-e6931d230e3e"},{"name":"UpdateBooking","id":"01115d59-2f92-4ace-ab2e-8d182905a7f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientSecret","value":"<client-secret>"},{"key":"clientId","value":"<client-id>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"refreshRequestParams","value":"<refresh-request-params>"},{"key":"tokenRequestParams","value":"<token-request-params>"},{"key":"authRequestParams","value":"<auth-request-params>"},{"key":"challengeAlgorithm","value":"<challenge-algorithm>"},{"key":"scope","value":"<scope>"},{"key":"grant_type","value":"<grant_type>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/updateBookings","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","online","v1.0","companies({companyId})","updateBookings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"0c53eaec-504e-487e-bad4-5a69a2bd9510","name":"UpdateBooking 200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/online/v1.0/companies({companyId})/updateBookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d7daa95b-1a56-0db6-f164-47034e7d4261"},{"key":"mise-correlation-id","value":"8c93f622-e2c9-4786-b270-0e779bd295bc"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"8e90788b-35c6-4489-a889-436ac261eda2"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 04 Feb 2026 12:16:27 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/$metadata#companies(6ce3bd65-3c51-ee11-be6d-6045bd905370)/updateBookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2OTgxODk4NTA3MzczOTc4NTQwMTswMDsn\\\"\",\n            \"systemId\": \"48e2a7eb-d183-ee11-817a-6045bd969a75\",\n            \"entryNo\": 1,\n            \"onlineBookingNo\": 81,\n            \"adults\": \"2\",\n            \"agencyCommission\": \"0,00\",\n            \"alternativeRateAllotment\": false,\n            \"arrivalDate\": \"\",\n            \"arrivalTime\": \"\",\n            \"attemptBooking\": \"\",\n            \"attemptToBooking\": \"\",\n            \"babies\": \"\",\n            \"boardBasis\": \"\",\n            \"bookingDate\": \"2023-11-16\",\n            \"bookingGroup\": \"\",\n            \"bookingTime\": \"\",\n            \"cancellationDate\": \"\",\n            \"cancellationTime\": \"\",\n            \"channelNo\": \"4\",\n            \"childrenA\": \"\",\n            \"childrenB\": \"\",\n            \"childrenC\": \"\",\n            \"contactNo\": \"\",\n            \"contactOption\": 0,\n            \"customerNo\": \"\",\n            \"departureDate\": \"\",\n            \"departureTime\": \"\",\n            \"depositAmount\": \"\",\n            \"documentNo\": \"47856951J\",\n            \"documentType\": \"NIF\",\n            \"entryDate\": \"2023-11-15\",\n            \"entryText\": \"entrytexttest\",\n            \"entryTime\": \"16:13:38.77\",\n            \"error\": false,\n            \"extraBeds\": \"\",\n            \"flightDepartureTime\": \"\",\n            \"flightNo\": \"\",\n            \"hotelVoucher\": \"\",\n            \"idBookingChannel\": \"\",\n            \"idHotel\": \"\",\n            \"idRoomChannel\": \"\",\n            \"lineType\": \"Creation\",\n            \"loyaltyCard\": \"\",\n            \"modificationDate\": \"\",\n            \"modificationTime\": \"\",\n            \"nameChannel\": \"\",\n            \"observations\": \"\",\n            \"onlineGroupTotalPax\": \"\",\n            \"paid\": false,\n            \"password\": \"\",\n            \"paymentMethodDeposit\": \"\",\n            \"paymentMethodNo\": \"1\",\n            \"promotion\": \"\",\n            \"promotionLabelCode\": \"\",\n            \"rateNo\": \"\",\n            \"resident\": \"\",\n            \"roomType\": \"D\",\n            \"salesChannel\": \"\",\n            \"totalAmount\": \"\",\n            \"totalRooms\": \"\",\n            \"voucher\": \"\",\n            \"webLanguage\": \"ENG\",\n            \"systemCreatedAt\": \"2023-11-15T16:13:39.433Z\",\n            \"lastModifiedDateTime\": \"2023-11-15T16:13:39.433Z\"\n        }\n    ]\n}"}],"_postman_id":"01115d59-2f92-4ace-ab2e-8d182905a7f0"}],"id":"0f550d85-8282-4211-9fe6-badcff64f134","_postman_id":"0f550d85-8282-4211-9fe6-badcff64f134","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"9548a006-a720-4146-8758-3092b757cdf5","_postman_id":"9548a006-a720-4146-8758-3092b757cdf5","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Noray Htl: ToLink","item":[{"name":"online","item":[{"name":"unsynchronizedBookings","id":"efd1cab8-88ec-443b-a9af-4125797e3dfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings","description":"<p>System table: Booking HTL<br />Page in Business Central: Bookings View HTL</p>\n<p>Returns the list of the unsynchronized bookings with its associated data.</p>\n<p>It is possible to expand its content with the method $expand, rating(bookingValue).</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>Specifies the booking number.</td>\n</tr>\n<tr>\n<td>arrivalDate</td>\n<td>Date</td>\n<td>Specifies the arrival date of the booking.</td>\n</tr>\n<tr>\n<td>arrivalTime</td>\n<td>Date</td>\n<td>Specifies the arrival time of the booking.</td>\n</tr>\n<tr>\n<td>departureDate</td>\n<td>Date</td>\n<td>Specifies the departure date of the booking.</td>\n</tr>\n<tr>\n<td>departureTime</td>\n<td>Date</td>\n<td>Specifies the departure time of the booking.</td>\n</tr>\n<tr>\n<td>checkInDate</td>\n<td>Date</td>\n<td>Specifies the date on which the booking was check-in.</td>\n</tr>\n<tr>\n<td>checkInTime</td>\n<td>Date</td>\n<td>Specifies the time on which the booking was check-in.</td>\n</tr>\n<tr>\n<td>checkOutTime</td>\n<td>Date</td>\n<td>Specifies the time on which the booking was check-out.</td>\n</tr>\n<tr>\n<td>nights</td>\n<td>Decimal</td>\n<td>Specifies the number of nights of the booking.</td>\n</tr>\n<tr>\n<td>bookingToCustomerNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer code of the booking.</td>\n</tr>\n<tr>\n<td>billToCustomerNo</td>\n<td>Code[20]</td>\n<td>Specifies the name of the customer to whom the booking will be billed.</td>\n</tr>\n<tr>\n<td>voucher</td>\n<td>Code[50]</td>\n<td>Specifies the customer voucher number of the reservation. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>hotelVoucher</td>\n<td>Code[50]</td>\n<td>Specifies the channel voucher in origin. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>allotmentNo</td>\n<td>Code[20]</td>\n<td>Specifies the allotment code used in the booking.</td>\n</tr>\n<tr>\n<td>rateNo</td>\n<td>Code[20]</td>\n<td>Specifies the rate code that applies to the booking.</td>\n</tr>\n<tr>\n<td>bookingGroupNo</td>\n<td>Code[20]</td>\n<td>Specifies the group booking code in case of belonging to one.</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Specifies the room number assigned to the booking.</td>\n</tr>\n<tr>\n<td>roomCleanStatus</td>\n<td>Text</td>\n<td></td>\n</tr>\n<tr>\n<td>bookingStatus</td>\n<td>Option</td>\n<td>Specifies the booking status; Booking,Pencil Booking,Occupancy,Checkout,Cancelled,No-Show</td>\n</tr>\n<tr>\n<td>bookedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of booked room-</td>\n</tr>\n<tr>\n<td>assignedRoomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of room assigned.</td>\n</tr>\n<tr>\n<td>roomTypeUpselling</td>\n<td>Code[10]</td>\n<td>Specifies the type of room billed. If the value of this field is different from the type of booking room it will indicate that there has been a UPGRADE, the upgrade charge must be managed by the user from additional services. (This field does not affect calculation prices).</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>adultsInExtraBed</td>\n<td>Decimal</td>\n<td>Specifies the number of adults in Additional Bed.</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Decimal</td>\n<td>Specifies the number of children in the booking.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Decimal</td>\n<td>Specifies the number of babies in the booking.</td>\n</tr>\n<tr>\n<td>boardBasis</td>\n<td>Code[10]</td>\n<td>Specifies the board basis type used by the booking.</td>\n</tr>\n<tr>\n<td>boardBasisUpselling</td>\n<td>Code[10]</td>\n<td>Specifies the type of upgraded board basis. If the value of this field is different from the type of booked board basisit will indicate that there has been a UPGRADE, the upgrade charge must be managed by the user from additional services. (This field does not affect calculation prices).</td>\n</tr>\n<tr>\n<td>invoicedBoardBasis</td>\n<td>Code[10]</td>\n<td>Specifies the board basis type used in invoice.</td>\n</tr>\n<tr>\n<td>contactBookingName</td>\n<td>Text[50]</td>\n<td>Specifies the name of the contact person for the booking.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Text[100]</td>\n<td>Specifies the name of the customer of the booking.</td>\n</tr>\n<tr>\n<td>name2</td>\n<td>Text[100]</td>\n<td>Specifies the contact name of the booking.</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Text[50]</td>\n<td>Specifies the contact postal address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>Text[50]</td>\n<td>Specifies a second address.</td>\n</tr>\n<tr>\n<td>county</td>\n<td>Text[30]</td>\n<td>Specifies the province.</td>\n</tr>\n<tr>\n<td>postCode</td>\n<td>Code[20]</td>\n<td>Specifies the postal code.</td>\n</tr>\n<tr>\n<td>countryRegion</td>\n<td>Text[30]</td>\n<td>Specifies the country/region.</td>\n</tr>\n<tr>\n<td>contactNo</td>\n<td>Code[20]</td>\n<td>Specifies how many bookings filtered by check out Rec.status have been done by the customer.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Text[30]</td>\n<td>Specifies the population.</td>\n</tr>\n<tr>\n<td>languageNo</td>\n<td>Code[10]</td>\n<td>Specifies the language code.</td>\n</tr>\n<tr>\n<td>originatingNo</td>\n<td>Code[10]</td>\n<td>Specifies the origin code of the booking.</td>\n</tr>\n<tr>\n<td>mobilePhoneNo</td>\n<td>Text[30]</td>\n<td>Specifies the contact mobile phone number.</td>\n</tr>\n<tr>\n<td>phoneNo</td>\n<td>Text[30]</td>\n<td>Specifies the contact phone number.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Text[80]</td>\n<td>Specifies the email address.</td>\n</tr>\n<tr>\n<td>stayTotalAmount</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the stay.</td>\n</tr>\n<tr>\n<td>totalAmountValue</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>totalAdditionalServices</td>\n<td>Decimal</td>\n<td>Specifies the total amount of the additional services of the booking.</td>\n</tr>\n<tr>\n<td>totalPaxExclBabies</td>\n<td>Decimal</td>\n<td>Specifies the total number of people in the group, excluding babies.</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Code[20]</td>\n<td>Specifies the origin of the booking.</td>\n</tr>\n<tr>\n<td>market</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>meetUs</td>\n<td>Code[20]</td>\n<td>Specifies how the customer of the booking met us.</td>\n</tr>\n<tr>\n<td>salesChannel</td>\n<td>Code[20]</td>\n<td>Specifies the sales channel for which the booking was received.</td>\n</tr>\n<tr>\n<td>onlineBooking</td>\n<td>boolean</td>\n<td>Specifies if the booking is of OnLine origin.</td>\n</tr>\n<tr>\n<td>onlineBookingSync</td>\n<td>boolean</td>\n<td>Specifies if the booking is synchronized.</td>\n</tr>\n<tr>\n<td>onlineChannelIDBooking</td>\n<td>Code[20]</td>\n<td>Specifies the channel ID of the booking.</td>\n</tr>\n<tr>\n<td>onlineChannelIDRoom</td>\n<td>Code[20]</td>\n<td>Specifies the room ID of the booking.</td>\n</tr>\n<tr>\n<td>onlineBookingModifdate</td>\n<td>Date</td>\n<td>Specifies the date of modification of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingModifTime</td>\n<td>Date</td>\n<td>Specifies the time of modification of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingCancelDate</td>\n<td>Date</td>\n<td>Specifies the cancellation date of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingCancelTime</td>\n<td>Date</td>\n<td>Specifies the time of cancellation of the online booking.</td>\n</tr>\n<tr>\n<td>onlineBookingPaymentNo</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>onlineBookingServiceNo</td>\n<td>Integer</td>\n<td>Specifies the ID of the online booking service.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","booking","v1.0","companies(< company ID >)","unsynchronizedBookings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"6d56fdcc-d99c-4a7c-9813-00836da60e6a","name":"200","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"d0fadb3b-4075-aaac-a2d3-b4fb81b450f0"},{"key":"mise-correlation-id","value":"732a95e5-205b-49e8-96ca-4dbb6e1730e9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f863d8e7-8887-4d71-8f07-c7e80abaa7e6"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 10:58:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/unsynchronizedBookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0\n        }\n    ]\n}"},{"id":"cde0e902-36bd-492b-8e18-a7c0139a3cce","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"d5a5ce87-b532-4c66-983c-cd8a559676de","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"},{"id":"1bc81ca0-6618-4137-9a80-26cccc7627cb","name":"Expand booking value","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings?$expand=bookingValues","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","booking","v1.0","companies(< company ID >)","unsynchronizedBookings"],"query":[{"key":"$expand","value":"bookingValues"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"6da33d23-c355-16d4-1e8c-b71e670b279e"},{"key":"mise-correlation-id","value":"7ccbe0f3-97a2-4e2a-86c9-84574806549d"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"35257d9d-4a74-42b0-be34-e1faceab1655"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:30:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/unsynchronizedBookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzg0NzYyOTg5NDM5NTMxMzE1MTswMDsn\\\"\",\n            \"systemId\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000003\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:29.347\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"204\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"JSUITE\",\n            \"assignedRoomType\": \"JSUITE\",\n            \"roomTypeUpselling\": \"JSUITE\",\n            \"adults\": 2,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000028\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"114\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 221,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 2,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2023-07-13\",\n            \"onlineBookingModifTime\": \"11:30:58.41\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzYwNjU2NjE5MjkwMzU0OTU1MTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"82f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 180,\n                    \"dailyGrossPriceWithoutTax\": 180,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 153,\n                    \"netWithoutTax\": 153,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 180,\n                    \"meanPriceWithoutTax\": 180,\n                    \"dailyPriceWithTax\": 180,\n                    \"dailyPriceWithoutTax\": 180,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 27,\n                    \"discountAmountWithoutTax\": 27,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 180,\n                    \"totalWithoutTax\": 180,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.393Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEzNzY2OTEyNjA1MzU5OTMxMzgzMTswMDsn\\\"\",\n                    \"bookingNo\": \"RH0000003\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"83f1d336-4d45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 80,\n                    \"dailyGrossPriceWithoutTax\": 80,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 68,\n                    \"netWithoutTax\": 68,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 80,\n                    \"meanPriceWithoutTax\": 80,\n                    \"dailyPriceWithTax\": 80,\n                    \"dailyPriceWithoutTax\": 80,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 12,\n                    \"discountAmountWithoutTax\": 12,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 80,\n                    \"totalWithoutTax\": 80,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:02:26.41Z\"\n                }\n            ]\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc3MDE3NTU0NDA5MTM2ODY5MzAxOzAwOyc=\\\"\",\n            \"systemId\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"no\": \"RH0000004\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"checkInDate\": \"2022-08-31\",\n            \"checkInTime\": \"12:38:38.457\",\n            \"checkOutTime\": \"00:00:00\",\n            \"nights\": 1,\n            \"bookingToCustomerNo\": \"CL0000007\",\n            \"billToCustomerNo\": \"CL0000007\",\n            \"voucher\": \"\",\n            \"hotelVoucher\": \"\",\n            \"allotmentNo\": \"WEB\",\n            \"rateNo\": \"TAR1\",\n            \"bookingGroupNo\": \"\",\n            \"roomNo\": \"302\",\n            \"roomCleanStatus\": \"Undone\",\n            \"bookingStatus\": \"Occupancy\",\n            \"bookedRoomType\": \"IND\",\n            \"assignedRoomType\": \"DBL\",\n            \"roomTypeUpselling\": \"IND\",\n            \"adults\": 1,\n            \"adultsInExtraBed\": 0,\n            \"children\": 0,\n            \"babies\": 0,\n            \"boardBasis\": \"MP\",\n            \"boardBasisUpselling\": \"MP\",\n            \"invoicedBoardBasis\": \"MP\",\n            \"contactBookingName\": \"\",\n            \"name\": \"Client Name Two\",\n            \"name2\": \"\",\n            \"address\": \"\",\n            \"address2\": \"\",\n            \"county\": \"\",\n            \"postCode\": \"\",\n            \"countryRegion\": \"ESP\",\n            \"contactNo\": \"CO0000029\",\n            \"city\": \"\",\n            \"languageNo\": \"\",\n            \"originatingNo\": \"111\",\n            \"mobilePhoneNo\": \"\",\n            \"phoneNo\": \"123456789\",\n            \"email\": \"guest@guestmail.com\",\n            \"stayTotalAmount\": 93.5,\n            \"totalAmountValue\": 0,\n            \"totalAdditionalServices\": 0,\n            \"totalPaxExclBabies\": 1,\n            \"source\": \"\",\n            \"market\": \"\",\n            \"meetUs\": \"\",\n            \"salesChannel\": \"\",\n            \"onlineBooking\": false,\n            \"onlineBookingSync\": false,\n            \"onlineChannelIDBooking\": \"\",\n            \"onlineChannelIDRoom\": \"\",\n            \"onlineBookingModifdate\": \"2022-10-06\",\n            \"onlineBookingModifTime\": \"09:00:14.463\",\n            \"onlineBookingCancelDate\": \"0001-01-01\",\n            \"onlineBookingCancelTime\": \"00:00:00\",\n            \"onlineBookingPaymentNo\": 1,\n            \"onlineBookingServiceNo\": 0,\n            \"bookingsbookingValue\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzUwNjgwNDA2ODQwMjAyMDE5OTUxOzAwOyc=\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 10000,\n                    \"systemId\": \"1cc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"HAB\",\n                    \"hotelItemDescription\": \"Habitación\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 70,\n                    \"dailyGrossPriceWithoutTax\": 70,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 59.5,\n                    \"netWithoutTax\": 59.5,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 70,\n                    \"meanPriceWithoutTax\": 70,\n                    \"dailyPriceWithTax\": 70,\n                    \"dailyPriceWithoutTax\": 70,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 10.5,\n                    \"discountAmountWithoutTax\": 10.5,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 70,\n                    \"totalWithoutTax\": 70,\n                    \"conceptType\": \"Room\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.37Z\"\n                },\n                {\n                    \"@odata.etag\": \"W/\\\"JzE4OzcyNjQwODgwNzU1MTMxNTQ0NzE7MDA7Jw==\\\"\",\n                    \"bookingNo\": \"RH0000004\",\n                    \"Guest_Account_No\": \"\",\n                    \"lineNo\": 20000,\n                    \"systemId\": \"1dc01de8-4c45-ed11-946f-000d3a25421c\",\n                    \"startingDate\": \"2022-08-31\",\n                    \"endingDate\": \"2022-08-31\",\n                    \"hotelItemNo\": \"PEN\",\n                    \"hotelItemDescription\": \"PENSION\",\n                    \"invoicedDays\": 1,\n                    \"dailyGrossPriceWithTax\": 40,\n                    \"dailyGrossPriceWithoutTax\": 40,\n                    \"amountOffer\": 0,\n                    \"netWithTax\": 34,\n                    \"netWithoutTax\": 34,\n                    \"netDiscountLine\": 0,\n                    \"meanPriceWithTax\": 40,\n                    \"meanPriceWithoutTax\": 40,\n                    \"dailyPriceWithTax\": 40,\n                    \"dailyPriceWithoutTax\": 40,\n                    \"discount\": 0,\n                    \"discountAmountWithTax\": 6,\n                    \"discountAmountWithoutTax\": 6,\n                    \"grossDiscountLine\": 0,\n                    \"customerNetDiscount\": 0,\n                    \"totalDiscount\": 15,\n                    \"commission\": false,\n                    \"rateNo\": \"TAR1\",\n                    \"monday\": true,\n                    \"tuesday\": true,\n                    \"wednesday\": true,\n                    \"thursday\": true,\n                    \"friday\": true,\n                    \"saturday\": true,\n                    \"sunday\": true,\n                    \"tax\": 0,\n                    \"totalWithTax\": 40,\n                    \"totalWithoutTax\": 40,\n                    \"conceptType\": \"Board\",\n                    \"systemModifiedAt\": \"2022-10-06T08:00:14.417Z\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"efd1cab8-88ec-443b-a9af-4125797e3dfd"},{"name":"setBookingsSynchronized","id":"eafc7e89-4f33-4ac7-b46e-f45e16a465b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"onlineBookingNo\": \"304\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings(< Booking ID >)/Microsoft.NAV.setBookingSynchronized","description":"<p>Allows to synchronize the bookings that have the Online Booking Sync in false.</p>\n","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","booking","v1.0","companies(< company ID >)","unsynchronizedBookings(< Booking ID >)","Microsoft.NAV.setBookingSynchronized"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"98e837ae-9b51-47f0-a22d-173921ed9535","name":"200","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"onlineBookingNo\": \"304\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/booking/v1.0/companies(< company ID >)/unsynchronizedBookings(< Booking ID >)/Microsoft.NAV.setBookingSynchronized"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"135cf6ea-99be-6f29-5308-f6d7db667b00"},{"key":"mise-correlation-id","value":"bca8b57f-749f-48ef-b71e-6c959e9f23f2"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"80f0de21-0609-49c0-a0e0-69c1344bb320"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 09 Aug 2023 22:12:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#Edm.String\",\n    \"value\": \"The synchronization of the online Booking RH0000006 has been done \"\n}"}],"_postman_id":"eafc7e89-4f33-4ac7-b46e-f45e16a465b5"},{"name":"allotmentByRoomType","id":"2b6bc44b-e375-4fa0-8c9f-cde56ecde5cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/allotmentByRoomTypes","description":"<p>System table: Allotment By Room Type HTL<br />Page in Business Central:</p>\n<p>Return the list of the allotment by room type.</p>\n<p><strong>PARAMS</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>allotmentNo</td>\n<td>Code[10]</td>\n<td>Specifies the room.</td>\n</tr>\n<tr>\n<td>allotmentDate</td>\n<td>Date</td>\n<td>Specifies the date.</td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>Code[10]</td>\n<td>Specifies the type of room.</td>\n</tr>\n<tr>\n<td>bookingsBookedRoom</td>\n<td>Integer</td>\n<td>Specifies the booked rooms.</td>\n</tr>\n<tr>\n<td>lockedrooms</td>\n<td>Integer</td>\n<td>Specifies the rooms locked.</td>\n</tr>\n<tr>\n<td>inventoryRooms</td>\n<td>Integer</td>\n<td>Specifies the total ammount of rooms.</td>\n</tr>\n<tr>\n<td>netInventoryRooms</td>\n<td>Integer</td>\n<td>Specifies the available rooms after removing the locked rooms to the inventory rooms.</td>\n</tr>\n<tr>\n<td>forecast</td>\n<td>Integer</td>\n<td>Specifies the assigned rooms planned for sale.</td>\n</tr>\n<tr>\n<td>pendingForecast</td>\n<td>Integer</td>\n<td>Specifies the pending rooms planned for sale.</td>\n</tr>\n<tr>\n<td>guarantees</td>\n<td>Integer</td>\n<td>Specifies the assigned guarantee rooms.</td>\n</tr>\n<tr>\n<td>pendingGuarantees</td>\n<td>Integer</td>\n<td>Specifies the pending guarantee rooms.</td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","allotmentByRoomTypes"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"aed013e1-4654-4a58-adcd-876248f05c6f","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/allotmentByRoomTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"abafd98d-a9e1-0ef4-c16d-367b710e3fb4"},{"key":"mise-correlation-id","value":"fd336917-5434-48e5-b5c4-bc6996b91bc0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"ef00f387-1d51-4a51-86f6-af6b787ff9e8"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 08 Aug 2023 08:22:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/allotmentByRoomTypes\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY2NzAxNDMyODExNDE0OTU3OTYxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"APT\",\n            \"systemId\": \"2f46eac4-3230-ed11-97e8-6045bd8e430d\",\n            \"bookingsBookedRoom\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:17.737Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 0,\n            \"netInventoryRooms\": 0\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTI1NTczNDU4OTUzMTc0ODExMTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"DBL\",\n            \"systemId\": \"a03deac4-3230-ed11-97e8-6045bd8e430d\",\n            \"bookingsBookedRoom\": 3,\n            \"systemModifiedAt\": \"2022-09-09T11:30:14.823Z\",\n            \"lockedrooms\": 2,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 1\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2NjQxMjkxMzgyMTIyODkwNTE5MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"FAM\",\n            \"systemId\": \"bd4eeac4-3230-ed11-97e8-6045bd8e430d\",\n            \"bookingsBookedRoom\": 1,\n            \"systemModifiedAt\": \"2022-09-09T11:30:21.08Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQxMDgyOTYxNDg0NTc4MzU3NTIxOzAwOyc=\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"IND\",\n            \"systemId\": \"7aefe3ca-3230-ed11-97e8-6045bd8e430d\",\n            \"bookingsBookedRoom\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:24.003Z\",\n            \"lockedrooms\": 1,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 2\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExMDE1OTY1NDA5NzY0OTE2MjU4MTswMDsn\\\"\",\n            \"allotmentNo\": \"WEB\",\n            \"allotmentDate\": \"2022-09-03\",\n            \"roomType\": \"JSUITE\",\n            \"systemId\": \"08f8e3ca-3230-ed11-97e8-6045bd8e430d\",\n            \"bookingsBookedRoom\": 0,\n            \"systemModifiedAt\": \"2022-09-09T11:30:27.097Z\",\n            \"lockedrooms\": 0,\n            \"inventoryRooms\": 3,\n            \"netInventoryRooms\": 3\n        }\n    ]\n}"},{"id":"1dd667b8-b93f-4b2a-b8ef-1a9bd52678de","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/allotmentByRoomTypes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"a6e6fd78-b1be-48f2-804d-a849f324385b","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/allotmentByRoomTypes"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"}],"_postman_id":"2b6bc44b-e375-4fa0-8c9f-cde56ecde5cd"},{"name":"UpdateOnlineBookings","id":"0660bc27-e972-41a5-94a7-7cb6e8420c9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings?$expand=priceWebCalendars,webOffers,receivedWebServices,onlineGuests","description":"<p>System table: Received Web Booking HTL<br />Page in Business Central:</p>\n<p>Return the list of the online bookings with their associated data. To see the associated data is necessary to use the expand that is in the example:</p>\n<p>?$expand=priceWebCalendars,webOffers,receivedWebServices,onlineGuests</p>\n<p>It will return the Price Web Calendars, Web Offers, Received Web Services and Online Guests.</p>\n<p><strong>PARAMS</strong></p>\n<p><strong>OnlineBookings:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Time</td>\n<td>Time</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Text</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>ID Hotel</td>\n<td>Code[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Booking No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Customer No.</td>\n<td>Code[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>Arrival Date</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Departure Date</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Departure Time</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Room Type</td>\n<td>Text[30]</td>\n<td>Specifies the type of room.</td>\n</tr>\n<tr>\n<td>Board Basis</td>\n<td>Text[30]</td>\n<td>Specifies the board basis type used by the booking.</td>\n</tr>\n<tr>\n<td>Adults</td>\n<td>Text[5]</td>\n<td>Specifies the number of adults in the booking.</td>\n</tr>\n<tr>\n<td>Children A</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Children B</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Children C</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Babies</td>\n<td>Text[5]</td>\n<td>Specifies the number of babies in the booking.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Text[75]</td>\n<td>Specifies the name of the customer of the booking.</td>\n</tr>\n<tr>\n<td>Surname</td>\n<td>Text[75]</td>\n<td>Specifies the surname of the customer of the booking.</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>Text[75]</td>\n<td>Specifies the contact postal address.</td>\n</tr>\n<tr>\n<td>County</td>\n<td>Text[75]</td>\n<td>Specifies the province.</td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Text[25]</td>\n<td>Specifies the country.</td>\n</tr>\n<tr>\n<td>Observations</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>Post Code</td>\n<td>Text[10]</td>\n<td>Specifies the postal code.</td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Text[25]</td>\n<td>Specifies the contact phone number.</td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>Text[25]</td>\n<td></td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Text[75]</td>\n<td>Specifies the email address.</td>\n</tr>\n<tr>\n<td>Booking Date</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Time</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Modification Date</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Modification Time</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Cancellation Date</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Cancellation Time</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Password</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Total Amount</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Deposit Amount</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Payment Method No.</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Payment Method Deposit</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Total Rooms</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Promotion Label Code</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>Agency Commission</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Extra Beds</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Arrival Time</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>ID Service</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>PMS Booking No.</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Resident</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>Promotion</td>\n<td>Text[15]</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Group</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Attempt Booking</td>\n<td>Text[1]</td>\n<td></td>\n</tr>\n<tr>\n<td>Attempt To Booking</td>\n<td>Text[1]</td>\n<td></td>\n</tr>\n<tr>\n<td>Sales Channel</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Web Language</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>ID Room Channel</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Channel No.</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Name Channel</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>ID Booking Channel</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Country ISO Code</td>\n<td>Text[3]</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Group Total Pax</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Voucher</td>\n<td>Text[50]</td>\n<td>Specifies the customer voucher number of the reservation. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>Flight No.</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight Departure Time</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>Line Type</td>\n<td>Option</td>\n<td></td>\n</tr>\n<tr>\n<td>Contact Option</td>\n<td>Integer</td>\n<td>Specifies if the contact is going to be searched en the databse as contact from booking engine.</td>\n</tr>\n<tr>\n<td>Contact No.</td>\n<td>Code[20]</td>\n<td>Specifies how many bookings filtered by check out Rec.status have been done by the customer.</td>\n</tr>\n<tr>\n<td>Error Type</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>Error</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>Alternative Rate/Allotment</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>Rate No.</td>\n<td>Text[30]</td>\n<td>Specifies the rate code that applies to the booking.</td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td>Text[5]</td>\n<td></td>\n</tr>\n<tr>\n<td>DocumentNo</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>HotelVoucher</td>\n<td>Text[30]</td>\n<td>Specifies the channel voucher in origin. If booking customer is a web client, this field cannot be modified.</td>\n</tr>\n<tr>\n<td>LoyaltyCard</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Paid</td>\n<td>Boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>lastModifiedDateTime</td>\n<td>DateTime</td>\n<td>Specifies the last time the booking was modified.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Price Web Calendars:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Booking No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Rate</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Amount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>Free Children</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>Value Children</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>OfferAmount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Web Offers:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Booking No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Offer No.</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Received Web Services:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Service No.</td>\n<td>Code[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Booking No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Units</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Total Amount</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>Unit Price</td>\n<td>Decimal</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Online Guests:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Entry Date</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Online Booking No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Guest No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>Surname</td>\n<td>Text[250]</td>\n<td></td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Text[20]</td>\n<td></td>\n</tr>\n<tr>\n<td>Age Range</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Birthdate</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Address</td>\n<td>Text[75]</td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td>Text[75]</td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td>Text[25]</td>\n<td></td>\n</tr>\n<tr>\n<td>Post Code</td>\n<td>Text[10]</td>\n<td></td>\n</tr>\n<tr>\n<td>Phone</td>\n<td>Text[25]</td>\n<td></td>\n</tr>\n<tr>\n<td>Fax</td>\n<td>Text[25]</td>\n<td></td>\n</tr>\n<tr>\n<td>Email</td>\n<td>Text[75]</td>\n<td></td>\n</tr>\n<tr>\n<td>Country ISO</td>\n<td>Code[3]</td>\n<td></td>\n</tr>\n<tr>\n<td>Booking Entry No.</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Age</td>\n<td>Integer</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight Number Arriva</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight Number Departure</td>\n<td>Text[50]</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight Date Arrival</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight Date Departure</td>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight From</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n<tr>\n<td>Flight To</td>\n<td>Text[30]</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","updateBookings"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$expand","value":"priceWebCalendars,webOffers,receivedWebServices,onlineGuests"}],"variable":[]}},"response":[{"id":"5c12311c-f108-4359-82f9-b86c72cfea8f","name":"200","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings?$expand=priceWebCalendars,webOffers,receivedWebServices,onlineGuests","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","updateBookings"],"query":[{"key":"$expand","value":"priceWebCalendars,webOffers,receivedWebServices,onlineGuests"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"dd74c787-7f8e-ea2a-f5a0-738ee99f1fe1"},{"key":"mise-correlation-id","value":"40b77767-3247-48e9-9313-32bec102c065"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"2b816247-06fb-425c-bdeb-9f3fa2a5d694"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 18 Aug 2023 11:21:07 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/updateBookings\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3MDc1NTE5MDM3NzM2NDQwNDMxOzAwOyc=\\\"\",\n            \"entryNo\": 11,\n            \"adults\": \"2\",\n            \"agencyCommission\": \"0,00\",\n            \"alternativeRateAllotment\": false,\n            \"arrivalDate\": \"\",\n            \"arrivalTime\": \"\",\n            \"attemptBooking\": \"\",\n            \"attemptToBooking\": \"\",\n            \"babies\": \"\",\n            \"boardBasis\": \"\",\n            \"bookingDate\": \"\",\n            \"bookingGroup\": \"\",\n            \"bookingTime\": \"\",\n            \"cancellationDate\": \"\",\n            \"cancellationTime\": \"\",\n            \"channelNo\": \"\",\n            \"childrenA\": \"\",\n            \"childrenB\": \"\",\n            \"childrenC\": \"\",\n            \"contactNo\": \"\",\n            \"contactOption\": 0,\n            \"customerNo\": \"\",\n            \"departureDate\": \"\",\n            \"departureTime\": \"\",\n            \"depositAmount\": \"\",\n            \"documentNo\": \"Guest Document\",\n            \"documentType\": \"Guest Document Type\",\n            \"entryDate\": \"2023-08-18\",\n            \"entryText\": \"entrytext\",\n            \"entryTime\": \"11:21:05.367\",\n            \"error\": false,\n            \"extraBeds\": \"\",\n            \"flightDepartureTime\": \"\",\n            \"flightNo\": \"\",\n            \"hotelVoucher\": \"\",\n            \"idBookingChannel\": \"\",\n            \"idHotel\": \"\",\n            \"idRoomChannel\": \"\",\n            \"lineType\": \"Creation\",\n            \"loyaltyCard\": \"\",\n            \"modificationDate\": \"\",\n            \"modificationTime\": \"\",\n            \"nameChannel\": \"\",\n            \"observations\": \"\",\n            \"onlineBookingNo\": 81,\n            \"onlineGroupTotalPax\": \"\",\n            \"paid\": false,\n            \"password\": \"\",\n            \"paymentMethodDeposit\": \"\",\n            \"paymentMethodNo\": \"1\",\n            \"promotion\": \"\",\n            \"promotionLabelCode\": \"\",\n            \"rateNo\": \"\",\n            \"resident\": \"\",\n            \"roomType\": \"D\",\n            \"salesChannel\": \"\",\n            \"systemId\": \"7387ad4e-b93d-ee11-bdf5-000d3a69739b\",\n            \"totalAmount\": \"\",\n            \"totalRooms\": \"\",\n            \"voucher\": \"\",\n            \"webLanguage\": \"ENG\",\n            \"priceWebCalendars\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzYzMjM2MjQyNTk1NDA1NTM5NTUxOzAwOyc=\\\"\",\n                    \"onlineBookingNo\": 81,\n                    \"entryNo\": 1001,\n                    \"date\": \"2023-08-31\",\n                    \"systemId\": \"7487ad4e-b93d-ee11-bdf5-000d3a69739b\",\n                    \"entryDate\": \"2023-08-18\",\n                    \"amount\": 90,\n                    \"description\": \"Fantastic room in the most prestigious hotel.\",\n                    \"freeChildren\": 0,\n                    \"rate\": \"BUDGET\",\n                    \"valueChildren\": 0\n                }\n            ],\n            \"webOffers\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzEwNzUxNzYxMTU5MTQ4NDcyMjMwMTswMDsn\\\"\",\n                    \"onlineBookingNo\": 81,\n                    \"entryNo\": 1,\n                    \"bookingEntryNo\": 12,\n                    \"entryDate\": \"2023-08-18\",\n                    \"offerNo\": \"\",\n                    \"systemId\": \"7587ad4e-b93d-ee11-bdf5-000d3a69739b\"\n                }\n            ],\n            \"receivedWebServices\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzE5OzcxMzU3MDA5NzE0NTc1NTIyNzkxOzAwOyc=\\\"\",\n                    \"onlineBookingNo\": 81,\n                    \"entryNo\": 1000,\n                    \"bookingEntryNo\": 12,\n                    \"entryDate\": \"2023-08-31\",\n                    \"serviceNo\": \"A\",\n                    \"systemId\": \"7687ad4e-b93d-ee11-bdf5-000d3a69739b\",\n                    \"totalAmount\": 6,\n                    \"unitPrice\": 3,\n                    \"units\": 2\n                }\n            ],\n            \"onlineGuests\": [\n                {\n                    \"@odata.etag\": \"W/\\\"JzIwOzE1MzM3OTUxODY1MzU1NTE4NjIzMTswMDsn\\\"\",\n                    \"onlineBookingNo\": 81,\n                    \"entryNo\": 1,\n                    \"guestNo\": 999999696,\n                    \"name\": \"GuestName\",\n                    \"surname\": \"GuestSurname\",\n                    \"address\": \"Guest address\",\n                    \"country\": \"\",\n                    \"county\": \"\",\n                    \"postCode\": \"\",\n                    \"phone\": \"xxxxxxxxx\",\n                    \"fax\": \"\",\n                    \"email\": \"guest@email.com\",\n                    \"countryISO\": \"ENg\",\n                    \"bookingEntryNo\": 12,\n                    \"age\": 23,\n                    \"entryDate\": \"2023-08-18\",\n                    \"birthdate\": \"1999-12-31\",\n                    \"flightNumberArrival\": \"\",\n                    \"flightNumberDeparture\": \"\",\n                    \"flightDateArrival\": \"0001-01-01T00:00:00Z\",\n                    \"flightDateDeparture\": \"0001-01-01T00:00:00Z\",\n                    \"flightFrom\": \"\",\n                    \"flightTo\": \"\",\n                    \"systemId\": \"7787ad4e-b93d-ee11-bdf5-000d3a69739b\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"6c760ef2-78c9-4fd8-90bb-f0352abd76bf","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings?$expand=priceWebCalendars,webOffers,receivedWebServices,onlineGuests","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","updateBookings"],"query":[{"key":"$expand","value":"priceWebCalendars,webOffers,receivedWebServices,onlineGuests"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"5bfb0e28-c2d3-4781-9c7c-008b8cd2703d","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings?$expand=priceWebCalendars,webOffers,receivedWebServices,onlineGuests","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","updateBookings"],"query":[{"key":"$expand","value":"priceWebCalendars,webOffers,receivedWebServices,onlineGuests"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"}],"_postman_id":"0660bc27-e972-41a5-94a7-7cb6e8420c9c"},{"name":"UpdateOnlineBookings","id":"f1118b23-8da2-43b6-83fe-0265685d3e3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"basicConfig":[]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"adults\": \"2\",\r\n    \"agencyCommission\": \"0,00\",\r\n    \"alternativeRateAllotment\": false,\r\n    \"arrivalDate\": \"\",\r\n    \"arrivalTime\": \"\",\r\n    \"attemptBooking\": \"\",\r\n    \"attemptToBooking\": \"\",\r\n    \"babies\": \"\",\r\n    \"boardBasis\": \"\",\r\n    \"bookingDate\": \"\",\r\n    \"bookingGroup\": \"\",\r\n    \"bookingTime\": \"\",\r\n    \"cancellationDate\": \"\",\r\n    \"cancellationTime\": \"\",\r\n    \"channelNo\": \"\",\r\n    \"childrenA\": \"\",\r\n    \"childrenB\": \"\",\r\n    \"childrenC\": \"\",\r\n    \"contactNo\": \"\",\r\n    \"contactOption\": 0,\r\n    \"customerNo\": \"\",\r\n    \"departureDate\": \"\",\r\n    \"departureTime\": \"\",\r\n    \"depositAmount\": \"\",\r\n    \"documentNo\": \"47856951J\",\r\n    \"documentType\": \"NIF\",\r\n    \"entryDate\": \"2023-08-31\",\r\n    \"entryText\": \"entrytexttest\",\r\n    \"entryTime\": \"00:09:00\",\r\n    \"extraBeds\": \"\",\r\n    \"flightDepartureTime\": \"\",\r\n    \"flightNo\": \"\",\r\n    \"hotelVoucher\": \"\",\r\n    \"idBookingChannel\": \"\",\r\n    \"idHotel\": \"\",\r\n    \"idRoomChannel\": \"\",\r\n    \"lineType\": \"Creation\",\r\n    \"loyaltyCard\": \"\",\r\n    \"modificationDate\": \"\",\r\n    \"modificationTime\": \"\",\r\n    \"nameChannel\": \"\",\r\n    \"observations\": \"\",\r\n    \"onlineBookingNo\": \"81\",\r\n    \"onlineGroupTotalPax\": \"\",\r\n    \"paid\": false,\r\n    \"password\": \"\",\r\n    \"paymentMethodDeposit\": \"\",\r\n    \"paymentMethodNo\": \"1\",\r\n    \"promotion\": \"\",\r\n    \"promotionLabelCode\": \"\",\r\n    \"rateNo\": \"\",\r\n    \"resident\": \"\",\r\n    \"roomType\": \"D\",\r\n    \"salesChannel\": \"\",\r\n    \"totalAmount\": \"\",\r\n    \"totalRooms\": \"\",\r\n    \"voucher\": \"\",\r\n    \"webLanguage\": \"ENG\",\r\n    \"webOffers\": [\r\n        {\r\n        \"entryDate\": \"2023-08-31\",\r\n        \"offerNo\": \"\"\r\n        }\r\n    ],\r\n    \"priceWebCalendars\":[\r\n        {\r\n            \"date\": \"2023-08-31\",\r\n            \"amount\": 90,\r\n            \"description\": \"Fantastic room in the most prestigious hotel.\",\r\n            \"freeChildren\": 0,\r\n            \"rate\": \"BUDGET\",\r\n            \"valueChildren\": 0\r\n        }\r\n    ],\r\n    \"receivedWebServices\":[\r\n        {\r\n            \"entryDate\": \"2023-08-31\",\r\n            \"serviceNo\": \"A\",\r\n            \"unitPrice\": 3,\r\n            \"units\": 2\r\n        }\r\n    ],\r\n    \"onlineGuests\": [\r\n        {\r\n            \"guestNo\": 999999696,\r\n            \"name\": \"GuestName\",\r\n            \"surname\": \"GuestSurname\",\r\n            \"address\": \"Guest address\",\r\n            \"country\": \"\",\r\n            \"county\": \"\",\r\n            \"postCode\": \"\",\r\n            \"phone\": \"xxxxxxxxx\",\r\n            \"fax\": \"\",\r\n            \"email\": \"guest@email.com\",\r\n            \"countryISO\": \"ENg\",\r\n            \"bookingEntryNo\": 12,\r\n            \"age\": 23,\r\n            \"entryDate\": \"2023-08-18\",\r\n            \"birthdate\": \"1999-12-31\",\r\n            \"flightNumberArrival\": \"\",\r\n            \"flightNumberDeparture\": \"\",\r\n            \"flightDateArrival\": \"2023-08-31\",\r\n            \"flightDateDeparture\": \"2023-08-31\",\r\n            \"flightFrom\": \"\",\r\n            \"flightTo\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings","description":"<p>Allow the insertion of the online bookings with their associated data.</p>\n","urlObject":{"protocol":"https","path":["v2.0","< tenant >","< environment name >","api","< api publisher >","online","v1.0","companies(< company ID >)","updateBookings"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"4f6857bf-be41-4106-9811-a89522c8e1f7","name":"200","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"adults\": \"2\",\r\n    \"agencyCommission\": \"0,00\",\r\n    \"alternativeRateAllotment\": false,\r\n    \"arrivalDate\": \"\",\r\n    \"arrivalTime\": \"\",\r\n    \"attemptBooking\": \"\",\r\n    \"attemptToBooking\": \"\",\r\n    \"babies\": \"\",\r\n    \"boardBasis\": \"\",\r\n    \"bookingDate\": \"\",\r\n    \"bookingGroup\": \"\",\r\n    \"bookingTime\": \"\",\r\n    \"cancellationDate\": \"\",\r\n    \"cancellationTime\": \"\",\r\n    \"channelNo\": \"\",\r\n    \"childrenA\": \"\",\r\n    \"childrenB\": \"\",\r\n    \"childrenC\": \"\",\r\n    \"contactNo\": \"\",\r\n    \"contactOption\": 0,\r\n    \"customerNo\": \"\",\r\n    \"departureDate\": \"\",\r\n    \"departureTime\": \"\",\r\n    \"depositAmount\": \"\",\r\n    \"documentNo\": \"Guest Document\",\r\n    \"documentType\": \"Guest Document Type\",\r\n    \"entryText\": \"entrytext\",\r\n    \"extraBeds\": \"\",\r\n    \"flightDepartureTime\": \"\",\r\n    \"flightNo\": \"\",\r\n    \"hotelVoucher\": \"\",\r\n    \"idBookingChannel\": \"\",\r\n    \"idHotel\": \"\",\r\n    \"idRoomChannel\": \"\",\r\n    \"lineType\": \"Creation\",\r\n    \"loyaltyCard\": \"\",\r\n    \"modificationDate\": \"\",\r\n    \"modificationTime\": \"\",\r\n    \"nameChannel\": \"\",\r\n    \"observations\": \"\",\r\n    \"onlineBookingNo\": \"81\",\r\n    \"onlineGroupTotalPax\": \"\",\r\n    \"paid\": false,\r\n    \"password\": \"\",\r\n    \"paymentMethodDeposit\": \"\",\r\n    \"paymentMethodNo\": \"1\",\r\n    \"promotion\": \"\",\r\n    \"promotionLabelCode\": \"\",\r\n    \"rateNo\": \"\",\r\n    \"resident\": \"\",\r\n    \"roomType\": \"D\",\r\n    \"salesChannel\": \"\",\r\n    \"totalAmount\": \"\",\r\n    \"totalRooms\": \"\",\r\n    \"voucher\": \"\",\r\n    \"webLanguage\": \"ENG\",\r\n    \"webOffers\": [\r\n        {\r\n        \"entryDate\": \"2023-08-31\",\r\n        \"offerNo\": \"\"\r\n        }\r\n    ],\r\n    \"priceWebCalendars\":[\r\n        {\r\n            \"date\": \"2023-08-31\",\r\n            \"amount\": 90,\r\n            \"description\": \"Fantastic room in the most prestigious hotel.\",\r\n            \"freeChildren\": 0,\r\n            \"rate\": \"BUDGET\",\r\n            \"valueChildren\": 0\r\n        }\r\n    ],\r\n    \"receivedWebServices\":[\r\n        {\r\n            \"entryDate\": \"2023-08-31\",\r\n            \"serviceNo\": \"A\",\r\n            \"unitPrice\": 3,\r\n            \"units\": 2\r\n        }\r\n    ],\r\n    \"onlineGuests\": [\r\n        {\r\n            \"guestNo\": 999999696,\r\n            \"name\": \"GuestName\",\r\n            \"surname\": \"GuestSurname\",\r\n            \"address\": \"Guest address\",\r\n            \"country\": \"\",\r\n            \"county\": \"\",\r\n            \"postCode\": \"\",\r\n            \"phone\": \"xxxxxxxxx\",\r\n            \"fax\": \"\",\r\n            \"email\": \"guest@email.com\",\r\n            \"countryISO\": \"ENg\",\r\n            \"bookingEntryNo\": 12,\r\n            \"age\": 23,\r\n            \"entryDate\": \"2023-08-18\",\r\n            \"birthdate\": \"1999-12-31\",\r\n            \"flightNumberArrival\": \"\",\r\n            \"flightNumberDeparture\": \"\",\r\n            \"flightDateArrival\": \"2023-08-31\",\r\n            \"flightDateDeparture\": \"2023-08-31\",\r\n            \"flightFrom\": \"\",\r\n            \"flightTo\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/online/v1.0/companies(7baa7726-010f-ed11-90eb-6045bd8aa9fb)/updateBookings(11)"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"00aa68a5-82e3-cc07-4fc2-6bfb6b1a21f7"},{"key":"mise-correlation-id","value":"77e97b72-635a-49b8-bf28-10908e44d314"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"03cd106e-4452-4e73-8d10-f306af1b9eaa"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 18 Aug 2023 11:21:05 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/updateBookings/$entity\",\n    \"@odata.etag\": \"W/\\\"JzE5OzU3MDc1NTE5MDM3NzM2NDQwNDMxOzAwOyc=\\\"\",\n    \"entryNo\": 11,\n    \"adults\": \"2\",\n    \"agencyCommission\": \"0,00\",\n    \"alternativeRateAllotment\": false,\n    \"arrivalDate\": \"\",\n    \"arrivalTime\": \"\",\n    \"attemptBooking\": \"\",\n    \"attemptToBooking\": \"\",\n    \"babies\": \"\",\n    \"boardBasis\": \"\",\n    \"bookingDate\": \"\",\n    \"bookingGroup\": \"\",\n    \"bookingTime\": \"\",\n    \"cancellationDate\": \"\",\n    \"cancellationTime\": \"\",\n    \"channelNo\": \"\",\n    \"childrenA\": \"\",\n    \"childrenB\": \"\",\n    \"childrenC\": \"\",\n    \"contactNo\": \"\",\n    \"contactOption\": 0,\n    \"customerNo\": \"\",\n    \"departureDate\": \"\",\n    \"departureTime\": \"\",\n    \"depositAmount\": \"\",\n    \"documentNo\": \"guestDocumentNo\",\n    \"documentType\": \"guestDocumentType\",\n    \"entryDate\": \"2023-08-18\",\n    \"entryText\": \"entrytext\",\n    \"entryTime\": \"11:21:05.367\",\n    \"error\": false,\n    \"extraBeds\": \"\",\n    \"flightDepartureTime\": \"\",\n    \"flightNo\": \"\",\n    \"hotelVoucher\": \"\",\n    \"idBookingChannel\": \"\",\n    \"idHotel\": \"\",\n    \"idRoomChannel\": \"\",\n    \"lineType\": \"Creation\",\n    \"loyaltyCard\": \"\",\n    \"modificationDate\": \"\",\n    \"modificationTime\": \"\",\n    \"nameChannel\": \"\",\n    \"observations\": \"\",\n    \"onlineBookingNo\": \"onlineBookingNo\",\n    \"onlineGroupTotalPax\": \"\",\n    \"paid\": false,\n    \"password\": \"\",\n    \"paymentMethodDeposit\": \"\",\n    \"paymentMethodNo\": \"1\",\n    \"promotion\": \"\",\n    \"promotionLabelCode\": \"\",\n    \"rateNo\": \"\",\n    \"resident\": \"\",\n    \"roomType\": \"D\",\n    \"salesChannel\": \"\",\n    \"systemId\": \"7387ad4e-b93d-ee11-bdf5-000d3a69739b\",\n    \"totalAmount\": \"\",\n    \"totalRooms\": \"\",\n    \"voucher\": \"\",\n    \"webLanguage\": \"ENG\"\n}"},{"id":"532122af-b57c-4a52-b450-952f3fd72884","name":"400","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"adults\": \"2\",\r\n    \"agencyCommission\": \"0,00\",\r\n    \"alternativeRateAllotment\": false,\r\n    \"arrivalDate\": \"\",\r\n    \"arrivalTime\": \"\",\r\n    \"attemptBooking\": \"\",\r\n    \"attemptToBooking\": \"\",\r\n    \"babies\": \"\",\r\n    \"boardBasis\": \"\",\r\n    \"bookingDate\": \"\",\r\n    \"bookingGroup\": \"\",\r\n    \"bookingTime\": \"\",\r\n    \"cancellationDate\": \"\",\r\n    \"cancellationTime\": \"\",\r\n    \"channelNo\": \"\",\r\n    \"childrenA\": \"\",\r\n    \"childrenB\": \"\",\r\n    \"childrenC\": \"\",\r\n    \"contactNo\": \"\",\r\n    \"contactOption\": 0,\r\n    \"customerNo\": \"\",\r\n    \"departureDate\": \"\",\r\n    \"departureTime\": \"\",\r\n    \"depositAmount\": \"\",\r\n    \"documentNo\": \"Guest Document\",\r\n    \"documentType\": \"Guest Document Type\",\r\n    \"entryText\": \"entrytext\",\r\n    \"extraBeds\": \"\",\r\n    \"flightDepartureTime\": \"\",\r\n    \"flightNo\": \"\",\r\n    \"hotelVoucher\": \"\",\r\n    \"idBookingChannel\": \"\",\r\n    \"idHotel\": \"\",\r\n    \"idRoomChannel\": \"\",\r\n    \"lineType\": \"Creation\",\r\n    \"loyaltyCard\": \"\",\r\n    \"modificationDate\": \"\",\r\n    \"modificationTime\": \"\",\r\n    \"nameChannel\": \"\",\r\n    \"observations\": \"\",\r\n    \"onlineBookingNo\": \"81\",\r\n    \"onlineGroupTotalPax\": \"\",\r\n    \"paid\": false,\r\n    \"password\": \"\",\r\n    \"paymentMethodDeposit\": \"\",\r\n    \"paymentMethodNo\": \"1\",\r\n    \"promotion\": \"\",\r\n    \"promotionLabelCode\": \"\",\r\n    \"rateNo\": \"\",\r\n    \"resident\": \"\",\r\n    \"roomType\": \"D\",\r\n    \"salesChannel\": \"\",\r\n    \"totalAmount\": \"\",\r\n    \"totalRooms\": \"\",\r\n    \"voucher\": \"\",\r\n    \"webLanguage\": \"ENG\",\r\n    \"webOffers\": [\r\n        {\r\n        \"entryDate\": \"2023-08-31\",\r\n        \"offerNo\": \"\"\r\n        }\r\n    ],\r\n    \"priceWebCalendars\":[\r\n        {\r\n            \"date\": \"2023-08-31\",\r\n            \"amount\": \"90\",\r\n            \"description\": \"Fantastic room in the most prestigious hotel.\",\r\n            \"freeChildren\": \"0\",\r\n            \"rate\": \"BUDGET\",\r\n            \"valueChildren\": \"0\"\r\n        }\r\n    ],\r\n    \"receivedWebServices\":[\r\n        {\r\n            \"entryDate\": \"2023-08-31\",\r\n            \"serviceNo\": \"A\",\r\n            \"unitPrice\": 3,\r\n            \"units\": 2\r\n        }\r\n    ],\r\n    \"onlineGuests\": [\r\n        {\r\n            \"guestNo\": 999999696,\r\n            \"name\": \"GuestName\",\r\n            \"surname\": \"GuestSurname\",\r\n            \"address\": \"Guest address\",\r\n            \"country\": \"\",\r\n            \"county\": \"\",\r\n            \"postCode\": \"\",\r\n            \"phone\": \"xxxxxxxxx\",\r\n            \"fax\": \"\",\r\n            \"email\": \"guest@email.com\",\r\n            \"countryISO\": \"ENg\",\r\n            \"bookingEntryNo\": 12,\r\n            \"age\": 23,\r\n            \"entryDate\": \"2023-08-18\",\r\n            \"birthdate\": \"1999-12-31\",\r\n            \"flightNumberArrival\": \"\",\r\n            \"flightNumberDeparture\": \"\",\r\n            \"flightDateArrival\": \"2023-08-31\",\r\n            \"flightDateDeparture\": \"2023-08-31\",\r\n            \"flightFrom\": \"\",\r\n            \"flightTo\": \"\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"34b0e580-941c-7969-273f-1bfe90d04b5e"},{"key":"mise-correlation-id","value":"d0d48394-689c-4839-8724-c626a46f804f"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"3b5043e5-5ed8-4a95-ba77-e3e4c7636628"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 18 Aug 2023 15:24:29 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"BadRequest\",\n        \"message\": \"Invalid Request Body  CorrelationId:  3b5043e5-5ed8-4a95-ba77-e3e4c7636628.\"\n    }\n}"},{"id":"c14feaf5-4c6e-4b76-9ee0-7f30f8ee27df","name":"401","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Content-Language","value":"en-US"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"f1f0247f-8232-813a-eb54-e3463025a092"},{"key":"mise-correlation-id","value":"c4dbbc75-aef9-44ba-bc19-69873e0df69a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"WWW-Authenticate","value":"Basic realm=\"\", Bearer authorization_uri=\"https://login.microsoftonline.com/8adc3ee6-b964-44ca-bb94-c939fd272c56/oauth2/authorize\""},{"key":"Date","value":"Tue, 25 Jul 2023 11:29:42 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Unauthorized\",\n        \"message\": \"The credentials provided are incorrect\"\n    }\n}"},{"id":"4eaca403-8cc7-4a7c-97f7-fa1f1621969e","name":"404","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/< tenant >/< environment name >/api/< api publisher >/online/v1.0/companies(< company ID >)/updateBookings"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"e6dc6934-5d7f-ca7b-19d8-61be7b819781"},{"key":"mise-correlation-id","value":"6ad929cc-f2ef-46db-b8b5-6d9270044303"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"31115690-7eb7-4502-b6d1-f6893e92b29c"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Tue, 25 Jul 2023 11:28:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"code\": \"Internal_CompanyNotFound\",\n        \"message\": \"The specified company ID, <Company ID>, does not exist.\"\n    }\n}"}],"_postman_id":"f1118b23-8da2-43b6-83fe-0265685d3e3f"}],"id":"31459f8a-e91f-4fe2-96b2-8b1946d77797","_postman_id":"31459f8a-e91f-4fe2-96b2-8b1946d77797","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"f5b551b1-4191-435e-b94f-4a6c052bd281","_postman_id":"f5b551b1-4191-435e-b94f-4a6c052bd281","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Noray Htl: Housekeeping","item":[{"name":"housekeeping","item":[{"name":"housekeepingEmployees","id":"eda95c4d-a509-4c79-babf-8aabed738a74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployees","description":"<p>Contains the information associated with the Housekeeping module for all hotel employees. We recommend filtering by the “isInHousekeepingPlanning” parameter to obtain only the employees associated with Housekeeping planning.</p>\n<h3 id=\"business-central-info\"><strong>BUSINESS CENTRAL INFO</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Table</strong></th>\n<th><strong>Business Central Table ID</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Employee HKPHTL</td>\n<td>70576937</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"params\"><strong>PARAMS</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique identifier of the record.</td>\n</tr>\n<tr>\n<td>employeeNo</td>\n<td>Code[20]</td>\n<td>Indicates the identifier code of the employee.</td>\n</tr>\n<tr>\n<td>isInHousekeepingPlanning</td>\n<td>Boolean</td>\n<td>Specifies whether the employee is included in the Housekeeping schedule, and therefore, can perform room cleaning.</td>\n</tr>\n<tr>\n<td>cleaningRoute</td>\n<td>Code[20]</td>\n<td>Indicates the cleaning route associated with the employee.</td>\n</tr>\n<tr>\n<td>assignOrder</td>\n<td>Integer</td>\n<td>Specifies the cleaning priority. The higher the priority, the earlier it will appear in the cleaning schedule.</td>\n</tr>\n<tr>\n<td>isHousekeeper</td>\n<td>Boolean</td>\n<td>Specify if this employee is the housekeeper.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingEmployees"],"host":["https://api.businesscentral.dynamics.com/v2.0"],"query":[],"variable":[]}},"response":[{"id":"b22a5894-03d7-471c-9ede-3b4af212246b","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployees"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#companies({companyId})/housekeepingEmployees\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Nzc2MTkzNjE1OTAxMjk1MjYxOzAwOyc=\\\"\",\r\n            \"id\": \"46a2a812-4814-ef11-9f88-0022489d56a7\",\r\n            \"employeeNo\": \"600 NORTE\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 0,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Mjk0NTEzMDY5MDk1MTI1ODgxOzAwOyc=\\\"\",\r\n            \"id\": \"bd25e02e-bd35-ee11-bdf5-6045bd8d18fe\",\r\n            \"employeeNo\": \"EP0000000\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 4,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUxMzY0MzMwMTc0OTk1MzkzMTswMDsn\\\"\",\r\n            \"id\": \"0ac5a1c4-7524-ee11-9cbf-000d3aaa00db\",\r\n            \"employeeNo\": \"EP0000001\",\r\n            \"department\": \"PURCHASING\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 2,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkzODgyMTA4OTEzNjAwNjUzMTswMDsn\\\"\",\r\n            \"id\": \"6208390a-4125-ee11-8f6e-6045bd9d45c4\",\r\n            \"employeeNo\": \"EP0000002\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 1,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTU5OTA3OTEzMDA1NjY1MDMxOzAwOyc=\\\"\",\r\n            \"id\": \"c6a78f72-4251-ee11-be6d-6045bd905370\",\r\n            \"employeeNo\": \"EP0000003\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 3,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU5MjAzNjM0NzUwMTM5ODgwMTswMDsn\\\"\",\r\n            \"id\": \"c1ae8ceb-8145-ee11-bdf5-6045bd905c13\",\r\n            \"employeeNo\": \"EP0000004\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 7,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYxMzQyNzkwNjc2MzAzODQ0MTswMDsn\\\"\",\r\n            \"id\": \"a22cb925-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000005\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 6,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyNDUyNjg1MDY5MzIyMTczOTA1MTswMDsn\\\"\",\r\n            \"id\": \"ba46857a-b4f1-ee11-a1fd-000d3ada17b1\",\r\n            \"employeeNo\": \"EP0000006\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": false,\r\n            \"assignOrder\": 0,\r\n            \"cleaningRoute\": \"\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozk3OTI3OTI3MTQ5MDMxMzc2MzgxOzAwOyc=\\\"\",\r\n            \"id\": \"b9e18743-9511-ee11-8f6e-6045bd9d45c4\",\r\n            \"employeeNo\": \"SOPORTE\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": false,\r\n            \"assignOrder\": 5,\r\n            \"cleaningRoute\": \"\",\r\n            \"isHousekeeper\": true\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUwNjMzMTExNzU1NzM1OTM1MTswMDsn\\\"\",\r\n            \"id\": \"c29924e6-7cbb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"ZONAS COMUNES\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 8,\r\n            \"cleaningRoute\": \"RUTA ZONAS COMUNES\",\r\n            \"isHousekeeper\": false\r\n        }\r\n    ]\r\n}"},{"id":"2ff943fe-3311-49d3-b18c-222fa3721e06","name":"Recommended filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployees?$filter=isInHousekeepingPlanning eq true","host":["https://api.businesscentral.dynamics.com/v2.0"],"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingEmployees"],"query":[{"key":"$filter","value":"isInHousekeepingPlanning eq true","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHtlDevelopment/api/noray/housekeeping/v1.0/$metadata#companies(af9287a9-c938-ed11-97e8-000d3a398287)/housekeepingEmployees\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE1Nzc2MTkzNjE1OTAxMjk1MjYxOzAwOyc=\\\"\",\r\n            \"id\": \"46a2a812-4814-ef11-9f88-0022489d56a7\",\r\n            \"employeeNo\": \"600 NORTE\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 0,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5Mjk0NTEzMDY5MDk1MTI1ODgxOzAwOyc=\\\"\",\r\n            \"id\": \"bd25e02e-bd35-ee11-bdf5-6045bd8d18fe\",\r\n            \"employeeNo\": \"EP0000000\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 4,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDUxMzY0MzMwMTc0OTk1MzkzMTswMDsn\\\"\",\r\n            \"id\": \"0ac5a1c4-7524-ee11-9cbf-000d3aaa00db\",\r\n            \"employeeNo\": \"EP0000001\",\r\n            \"department\": \"PURCHASING\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 2,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2ODkzODgyMTA4OTEzNjAwNjUzMTswMDsn\\\"\",\r\n            \"id\": \"6208390a-4125-ee11-8f6e-6045bd9d45c4\",\r\n            \"employeeNo\": \"EP0000002\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 1,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzI0OTU5OTA3OTEzMDA1NjY1MDMxOzAwOyc=\\\"\",\r\n            \"id\": \"c6a78f72-4251-ee11-be6d-6045bd905370\",\r\n            \"employeeNo\": \"EP0000003\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 3,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDU5MjAzNjM0NzUwMTM5ODgwMTswMDsn\\\"\",\r\n            \"id\": \"c1ae8ceb-8145-ee11-bdf5-6045bd905c13\",\r\n            \"employeeNo\": \"EP0000004\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 7,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDYxMzQyNzkwNjc2MzAzODQ0MTswMDsn\\\"\",\r\n            \"id\": \"a22cb925-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000005\",\r\n            \"department\": \"HKP\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 6,\r\n            \"cleaningRoute\": \"RUTA 1\",\r\n            \"isHousekeeper\": false\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTUwNjMzMTExNzU1NzM1OTM1MTswMDsn\\\"\",\r\n            \"id\": \"c29924e6-7cbb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"ZONAS COMUNES\",\r\n            \"department\": \"\",\r\n            \"isInHousekeepingPlanning\": true,\r\n            \"assignOrder\": 8,\r\n            \"cleaningRoute\": \"RUTA ZONAS COMUNES\",\r\n            \"isHousekeeper\": false\r\n        }\r\n    ]\r\n}"}],"_postman_id":"eda95c4d-a509-4c79-babf-8aabed738a74"},{"name":"housekeepingEmployeeShifts","id":"b810d7ca-2ee7-4ece-ab68-ea05b0b46e9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployeeShifts","description":"<p>This function allows querying housekeeping staff shifts, applying filters by shift type, specific date or employee availability on that date.</p>\n<p>It is recommended to obtain the shifts of the current day using the filters: <strong>onDuty eq true</strong> and <strong>employeeShiftDate eq 2025-08-01</strong>, replacing the date with the date of the corresponding day.</p>\n<h3 id=\"business-central-info\"><strong>BUSINESS CENTRAL INFO</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Table</strong></th>\n<th><strong>Business Central Table ID</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Employee Shift HKPHTL</td>\n<td>70576920</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"params\"><strong>PARAMS</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique identifier of the record.</td>\n</tr>\n<tr>\n<td>employeeNo</td>\n<td>Code[20]</td>\n<td>Indicates the identifier code of the employee.</td>\n</tr>\n<tr>\n<td>shiftNo</td>\n<td>Code[20]</td>\n<td>Indicates the identifier code of the shift.</td>\n</tr>\n<tr>\n<td>employeeShiftDate</td>\n<td>Date</td>\n<td>Specifies the date associated with this shift.</td>\n</tr>\n<tr>\n<td>onDuty</td>\n<td>Boolean</td>\n<td>Indicates whether or not the employee will work this day according to his/her shift.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingEmployeeShifts"],"host":["https://api.businesscentral.dynamics.com/v2.0"],"query":[],"variable":[]}},"response":[{"id":"d4ab3140-0cf4-4d7b-b1df-0e5e8085750f","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployeeShifts"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#companies({companyId})/housekeepingEmployeeShifts\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjMxMDE5MTc5Njg2NjU0ODMxOzAwOyc=\\\"\",\r\n            \"id\": \"ef70c626-7abb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000000\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": false,\r\n            \"shiftNo\": \"LIBRES\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTc3MTQ4ODkwMTk0MTY4NTAxOzAwOyc=\\\"\",\r\n            \"id\": \"f070c626-7abb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000001\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑA01\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzczNjU3MzM5NTA5NjI4NDI5MTswMDsn\\\"\",\r\n            \"id\": \"27eac0da-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000002\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": false,\r\n            \"shiftNo\": \"LIBRES\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM0OTc4NDU5MjEyMjMzNzMwMTswMDsn\\\"\",\r\n            \"id\": \"a778ccc4-cb61-ee11-8def-6045bd9eaec3\",\r\n            \"employeeNo\": \"EP0000003\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑA01\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTI0OTU1Nzc0NjA5Nzg2MTExOzAwOyc=\\\"\",\r\n            \"id\": \"28eac0da-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000004\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": false,\r\n            \"shiftNo\": \"LIBRES\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODU0MTE0NDU2Mzg2MzU4NTQxOzAwOyc=\\\"\",\r\n            \"id\": \"b4bdb2e6-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000005\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NjQ2Nzk4NTk4MDU4MzAwNzMxOzAwOyc=\\\"\",\r\n            \"id\": \"d61984ed-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"SOPORTE\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODc3NjU1MzQwNjk2NTU5NDUxOzAwOyc=\\\"\",\r\n            \"id\": \"eb475232-7dbb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"ZONAS COMUNES\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        }\r\n    ]\r\n}"},{"id":"1801b7f2-4703-4955-82a4-0bc41c07ce50","name":"Recommended filters","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingEmployeeShifts?$filter=employeeShiftDate eq 2022-08-02 and onDuty eq true","host":["https://api.businesscentral.dynamics.com/v2.0"],"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingEmployeeShifts"],"query":[{"key":"$filter","value":"employeeShiftDate eq 2022-08-02 and onDuty eq true"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#companies({companyId})/housekeepingEmployeeShifts\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE5NTc3MTQ4ODkwMTk0MTY4NTAxOzAwOyc=\\\"\",\r\n            \"id\": \"f070c626-7abb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000001\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑA01\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM0OTc4NDU5MjEyMjMzNzMwMTswMDsn\\\"\",\r\n            \"id\": \"a778ccc4-cb61-ee11-8def-6045bd9eaec3\",\r\n            \"employeeNo\": \"EP0000003\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑA01\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzY3ODU0MTE0NDU2Mzg2MzU4NTQxOzAwOyc=\\\"\",\r\n            \"id\": \"b4bdb2e6-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"EP0000005\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzM4NjQ2Nzk4NTk4MDU4MzAwNzMxOzAwOyc=\\\"\",\r\n            \"id\": \"d61984ed-79bb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"SOPORTE\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0ODc3NjU1MzQwNjk2NTU5NDUxOzAwOyc=\\\"\",\r\n            \"id\": \"eb475232-7dbb-ee11-9078-000d3ad8af50\",\r\n            \"employeeNo\": \"ZONAS COMUNES\",\r\n            \"employeeShiftDate\": \"2022-08-02\",\r\n            \"onDuty\": true,\r\n            \"shiftNo\": \"MAÑANA\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"b810d7ca-2ee7-4ece-ab68-ea05b0b46e9b"},{"name":"housekeepingLines","id":"2ae2fddf-d8e6-4185-88e5-d3dd6aaf16c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines","description":"<p>The housekeeping lines represent daily records by room, indicating the cleaning tasks and the operational status of each room. Each line includes information on whether the room is to be cleaned that day, whether it is a check-in, check-out or both, whether it is occupied or vacant, and what type of tasks are to be performed.</p>\n<h3 id=\"business-central-info\"><strong>BUSINESS CENTRAL INFO</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Table</strong></th>\n<th><strong>Business Central Table ID</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Housek. Line HKPHTL</td>\n<td>70576924</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"params\"><strong>PARAMS</strong></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th><strong>Type</strong></th>\n<th><strong>Tooltip</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique identifier of the record.</td>\n</tr>\n<tr>\n<td>batchNo</td>\n<td>Code[20]</td>\n<td>Specifies the housekeeping section. A hotel can have multiple sections if required, but most commonly they will only have one.</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Integer</td>\n<td>Numeric incremental identifier of each line.</td>\n</tr>\n<tr>\n<td>bookingNo</td>\n<td>Code[20]</td>\n<td>Specify the associated reservation number if there is one.</td>\n</tr>\n<tr>\n<td>guestName</td>\n<td>Text[100]</td>\n<td>Specifies the name of the main guest.</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[20]</td>\n<td>Refers to the room assigned for cleaning.</td>\n</tr>\n<tr>\n<td>isAChangeRoom</td>\n<td>Boolean</td>\n<td>Specifies if there has been a room change.</td>\n</tr>\n<tr>\n<td>arrivalTime</td>\n<td>Time</td>\n<td>Specifies the time of arrival of the booking if it is a room or the start of the event in case of a lounge.</td>\n</tr>\n<tr>\n<td>departureTime</td>\n<td>Time</td>\n<td>Specifies the time of departure of the booking if it is a room or of the start of the event in case of a lounge.</td>\n</tr>\n<tr>\n<td>customerNo</td>\n<td>Code[20]</td>\n<td>Specifies the customer identifier associated with the reservation. For example, Expedia or Booking.</td>\n</tr>\n<tr>\n<td>housekLineDate</td>\n<td>Date</td>\n<td>Indicates the date of the line. It is necessary that the hotel registers the lines of previous days so that they are generated correctly.</td>\n</tr>\n<tr>\n<td>areaType</td>\n<td>Enum with the values:  <br />- \"Room\"  <br />- \"Common Area\"  <br />- \"Salon\"  <br />- \"Service\"</td>\n<td>Type of area referred to, distinguishing between rooms, common areas or others.</td>\n</tr>\n<tr>\n<td>cleaningRoute</td>\n<td>Code[20]</td>\n<td>Indicates the cleaning path associated with the room to be cleaned.</td>\n</tr>\n<tr>\n<td>cleaningRouteOrder</td>\n<td>Integer</td>\n<td>Specifies the order within the cleaning path assigned to the room.</td>\n</tr>\n<tr>\n<td>occupancy</td>\n<td>Enum with the values:  <br />- \"Vacant\"  <br />- \"Blocked\"  <br />- \"Occupied\"  <br />- \"Out\"  <br />- \"In\"  <br />- \"Out+In\"  <br />- \"\"</td>\n<td>Indicates the occupancy status of the reservation. In the case of a reservation arriving and departing on the same day, “Out+In” is specified.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>Enum with the values:  <br />- \"Undone\"  <br />- \"Checked\"  <br />- \"Broken\"  <br />- \"Check\"  <br />- \"Cleaning\"  <br />- \"Clean\"</td>\n<td>Specifies the cleaning status, for housekeeping purposes, of the room. Cleaning indicates that the room is now being cleaned, and Clean that it has already been cleaned.</td>\n</tr>\n<tr>\n<td>paxWoBabies</td>\n<td>Integer</td>\n<td>Specifies the pax of the room without taking into account infants.</td>\n</tr>\n<tr>\n<td>babies</td>\n<td>Integer</td>\n<td>Specifies the pax of infants in the room.</td>\n</tr>\n<tr>\n<td>daysOfNeglect</td>\n<td>Integer</td>\n<td>Specifies the days when the room has not been cleaned when it should have been cleaned according to the frequency template.</td>\n</tr>\n<tr>\n<td>clean</td>\n<td>Boolean</td>\n<td>Specifies whether cleaning tasks should be performed.</td>\n</tr>\n<tr>\n<td>towels</td>\n<td>Boolean</td>\n<td>Specifies whether to perform the tasks of changing towels.</td>\n</tr>\n<tr>\n<td>sheets</td>\n<td>Boolean</td>\n<td>Specifies whether to change the sheets.</td>\n</tr>\n<tr>\n<td>checkOutTask</td>\n<td>Boolean</td>\n<td>Specifies whether the checkout room cleaning tasks should be performed.</td>\n</tr>\n<tr>\n<td>checkTask</td>\n<td>Boolean</td>\n<td>Specifies whether to perform the cleaning review task.</td>\n</tr>\n<tr>\n<td>turnDown</td>\n<td>Boolean</td>\n<td>Specifies whether to cover the room. The turn down task will be marked as active when the booking has an assigned dining room shift. In this case, the start time will also be added, as the start of dinner of the dining room.</td>\n</tr>\n<tr>\n<td>calculatedTime</td>\n<td>Decimal</td>\n<td>Specifies the time calculated based on the program's internal frequency templates that the summation of tasks should take.</td>\n</tr>\n<tr>\n<td>extraTime</td>\n<td>Decimal</td>\n<td>Specify the extra time indicated by the chambermaid who took the cleaning of the room for unforeseen reasons.</td>\n</tr>\n<tr>\n<td>totalTime</td>\n<td>Decimal</td>\n<td>Specifies the total time between the calculated time and the overtime.</td>\n</tr>\n<tr>\n<td>assignedEmployee</td>\n<td>Code[20]</td>\n<td>Indicates the employee assigned to clean the room.</td>\n</tr>\n<tr>\n<td>assignedEmployeeName</td>\n<td>Text[50]</td>\n<td>Specifies the name of the employee assigned to the tasks.</td>\n</tr>\n<tr>\n<td>totalEmployees</td>\n<td>Integer</td>\n<td>Specifies the total of employees assigned to the task.</td>\n</tr>\n<tr>\n<td>startingTime</td>\n<td>Time</td>\n<td>Specifies the time at which the cleaning was started.</td>\n</tr>\n<tr>\n<td>latestRevisionDate</td>\n<td>Date</td>\n<td>Specifies the last revision date of the task.</td>\n</tr>\n<tr>\n<td>finishingEmployee</td>\n<td>Code[20]</td>\n<td>Indicates the employee who finished cleaning.</td>\n</tr>\n<tr>\n<td>finishingEmployeeName</td>\n<td>Text[50]</td>\n<td>Specifies the name of the employee who completes the task.</td>\n</tr>\n<tr>\n<td>finishingDate</td>\n<td>Date</td>\n<td>Indicates the date on which the cleaning was completed.</td>\n</tr>\n<tr>\n<td>finishingTime</td>\n<td>Time</td>\n<td>Indicates the time at which the cleaning was completed.</td>\n</tr>\n<tr>\n<td>causeOfRejection</td>\n<td>Enum with the values:  <br />- \" \" is none.  <br />- \"Do not disturb\".  <br />- \"Cleaning refused\".</td>\n<td>In the event that a customer refuses the cleaning, the reason for the refusal must be stated.</td>\n</tr>\n<tr>\n<td>sheetsExtraBed</td>\n<td>Boolean</td>\n<td>Specify the number of sheets for the extra bed used in the task.</td>\n</tr>\n<tr>\n<td>sheetsNo</td>\n<td>Decimal</td>\n<td>Specify the number of sheets used in the task.</td>\n</tr>\n<tr>\n<td>towelsNo</td>\n<td>Decimal</td>\n<td>Specify the number of towels used in the task.</td>\n</tr>\n<tr>\n<td>sheetsExtraNo</td>\n<td>Decimal</td>\n<td>Specify the number of sheets for the extra bed used in the task.</td>\n</tr>\n<tr>\n<td>comments</td>\n<td>Text[80]</td>\n<td>Indicates the housekeeper's and/or chambermaid's comments regarding the cleanliness of the room.</td>\n</tr>\n<tr>\n<td>housekeeperComments</td>\n<td>Text[80]</td>\n<td>Specifies comments from the housekeeping employee about the task.</td>\n</tr>\n<tr>\n<td>housekeeperNotes</td>\n<td>Text[250]</td>\n<td>Specifies comments from the housekeeping employee about the booking.</td>\n</tr>\n<tr>\n<td>housekBookingNotes</td>\n<td>Text[250]</td>\n<td>Specifies the general housekeeping notes for the room. For example, if there are two baby cribs.</td>\n</tr>\n<tr>\n<td>splitBed</td>\n<td>Boolean</td>\n<td>Specifies if the room has a split bed.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Important</strong>: Due to an internal error in Business Central, when sending a space in an enumerable, it replaces it with “_x0020_”. For example: “Do not disturb” will be returned as: “Do_x0020_not_x0020_disturb”.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingLines"],"host":["https://api.businesscentral.dynamics.com/v2.0"],"query":[],"variable":[]}},"response":[{"id":"78c74649-ad3c-48b3-bc6a-c6898ad4e827","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#companies({companyId})/housekeepingLines/$entity\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MzE1ODYwNDg4Mjc0MDk5Njc3MTswMDsn\\\"\",\r\n            \"id\": \"59621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 27,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"101\",\r\n            \"roomType\": \"DBL\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Checked\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"Test\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"15:30:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"Do_x0020_not_x0020_disturb\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"2025-05-12\",\r\n            \"finishingTime\": \"15:42:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 2,\r\n            \"towelsNo\": 2,\r\n            \"sheetsExtraNo\": 1,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.337Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2025-04-07T13:59:18.307Z\",\r\n            \"lastModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzMxMDQzMTQ5NzU1MzM5NjQ3MjkxOzAwOyc=\\\"\",\r\n            \"id\": \"6d621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 28,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"103\",\r\n            \"roomType\": \"INDIV\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Clean\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.353Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.353Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzYzNTMyMjUwMDY1OTU5MTE1NTkxOzAwOyc=\\\"\",\r\n            \"id\": \"78621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 29,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"201\",\r\n            \"roomType\": \"DBL\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Undone\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.363Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.363Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMzQ0NTM4MjYxNTM0NDU2MzYzMTswMDsn\\\"\",\r\n            \"id\": \"85621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 30,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"202\",\r\n            \"roomType\": \"DBL\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Undone\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.38Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.38Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5Ozg5ODc1MDU0MjQ2NTEyNDA3ODMxOzAwOyc=\\\"\",\r\n            \"id\": \"94621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 31,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"203\",\r\n            \"roomType\": \"DBL\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Undone\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.393Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.393Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzIzMTY4MDkzMzY0ODkyMjkwMTswMDsn\\\"\",\r\n            \"id\": \"a7621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 32,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"301\",\r\n            \"roomType\": \"SUITE\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Clean\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.41Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.41Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NDc3NTY2MjgyMTU2NTI1NTgxOzAwOyc=\\\"\",\r\n            \"id\": \"ba621703-18d9-ed11-a7c7-00224888b1e5\",\r\n            \"batchNo\": \"HKP\",\r\n            \"lineNo\": 33,\r\n            \"bookingNo\": \"\",\r\n            \"guestName\": \"\",\r\n            \"roomNo\": \"302\",\r\n            \"roomType\": \"SUITE\",\r\n            \"isAChangeRoom\": false,\r\n            \"arrivalTime\": \"00:00:00\",\r\n            \"departureTime\": \"00:00:00\",\r\n            \"customerNo\": \"\",\r\n            \"housekLineDate\": \"2023-08-12\",\r\n            \"areaType\": \"Room\",\r\n            \"cleaningRoute\": \"\",\r\n            \"cleaningRouteOrder\": 0,\r\n            \"daysOfNeglect\": 0,\r\n            \"occupancy\": \"Vacant\",\r\n            \"status\": \"Clean\",\r\n            \"paxWOBabies\": 0,\r\n            \"babies\": 0,\r\n            \"clean\": false,\r\n            \"towels\": false,\r\n            \"sheets\": false,\r\n            \"checkOutTask\": false,\r\n            \"checkTask\": false,\r\n            \"turnDown\": false,\r\n            \"calculatedTime\": 0,\r\n            \"extraTime\": 0,\r\n            \"totalTime\": 0,\r\n            \"assignedEmployee\": \"\",\r\n            \"assignedEmployeeName\": \"\",\r\n            \"comments\": \"\",\r\n            \"housekeeperComments\": \"\",\r\n            \"housekeeperNotes\": \"\",\r\n            \"housekBookingNotes\": \"\",\r\n            \"startingTime\": \"00:00:00\",\r\n            \"latestRevisionDate\": \"0001-01-01\",\r\n            \"causeOfRejection\": \"_x0020_\",\r\n            \"finishingEmployee\": \"\",\r\n            \"finishingEmployeeName\": \"\",\r\n            \"finishingDate\": \"0001-01-01\",\r\n            \"finishingTime\": \"00:00:00\",\r\n            \"totalEmployees\": 1,\r\n            \"sheetsExtraBed\": false,\r\n            \"sheetsNo\": 0,\r\n            \"towelsNo\": 0,\r\n            \"sheetsExtraNo\": 0,\r\n            \"splitBed\": false,\r\n            \"createdDateTime\": \"2023-04-12T09:54:36.433Z\",\r\n            \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n            \"lastModifiedDateTime\": \"2023-04-12T09:54:36.433Z\",\r\n            \"lastModifiedBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"2ae2fddf-d8e6-4185-88e5-d3dd6aaf16c7"},{"name":"housekeepingLines","id":"ea67b13d-c480-4aef-b05d-bc428d9d6761","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"assignedEmployee\": \"HOUSEKEEPING_01\",\r\n    \"sheetsNo\": 2,\r\n    \"towelsNo\": 2,\r\n    \"sheetsExtraNo\": 1,\r\n    \"startingTime\": \"15:30:00\",\r\n    \"finishingEmployee\": \"HOUSEKEEPING_02\",\r\n    \"finishingDate\": \"2025-05-12\",\r\n    \"finishingTime\": \"15:42:00\",\r\n    \"causeOfRejection\": \"Do not disturb\",\r\n    \"housekeeperComments\": \"Test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<ID>)","description":"<p>It is not possible to edit all the fields in the table. Therefore, the editable fields will be included in the body of the request.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingLines(<ID>)"],"host":["https://api.businesscentral.dynamics.com/v2.0"],"query":[],"variable":[]}},"response":[{"id":"e5bf833c-585c-46a5-a205-ab35e1addabe","name":"200","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"assignedEmployee\": \"HOUSEKEEPING_01\",\r\n    \"sheetsNo\": 2,\r\n    \"towelsNo\": 2,\r\n    \"sheetsExtraNo\": 1,\r\n    \"startingTime\": \"15:30:00\",\r\n    \"finishingEmployee\": \"HOUSEKEEPING_02\",\r\n    \"finishingDate\": \"2025-05-12\",\r\n    \"finishingTime\": \"15:42:00\",\r\n    \"causeOfRejection\": \"Do not disturb\",\r\n    \"housekeeperComments\": \"Test\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<ID>)"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#companies({companyId})/housekeepingLines/$entity\",\r\n    \"@odata.etag\": \"W/\\\"JzIwOzE3MzE1ODYwNDg4Mjc0MDk5Njc3MTswMDsn\\\"\",\r\n    \"id\": \"59621703-18d9-ed11-a7c7-00224888b1e5\",\r\n    \"batchNo\": \"HKP\",\r\n    \"lineNo\": 27,\r\n    \"bookingNo\": \"RH000032\",\r\n    \"guestName\": \"ALEJANDRO RODRÍGUEZ\",\r\n    \"roomNo\": \"101\",\r\n    \"roomType\": \"DBL\",\r\n    \"isAChangeRoom\": false,\r\n    \"arrivalTime\": \"00:00:00\",\r\n    \"departureTime\": \"00:00:00\",\r\n    \"customerNo\": \"\",\r\n    \"housekLineDate\": \"2023-08-12\",\r\n    \"areaType\": \"Room\",\r\n    \"cleaningRoute\": \"\",\r\n    \"cleaningRouteOrder\": 0,\r\n    \"daysOfNeglect\": 0,\r\n    \"occupancy\": \"Vacant\",\r\n    \"status\": \"Checked\",\r\n    \"paxWOBabies\": 0,\r\n    \"babies\": 0,\r\n    \"clean\": false,\r\n    \"towels\": false,\r\n    \"sheets\": false,\r\n    \"checkOutTask\": false,\r\n    \"checkTask\": false,\r\n    \"turnDown\": false,\r\n    \"calculatedTime\": 0,\r\n    \"extraTime\": 0,\r\n    \"totalTime\": 0,\r\n    \"assignedEmployee\": \"HOUSEKEEPING_01\",\r\n    \"assignedEmployeeName\": \"EMILIA FERNANDEZ\",\r\n    \"comments\": \"\",\r\n    \"housekeeperComments\": \"Test\",\r\n    \"housekeeperNotes\": \"\",\r\n    \"housekBookingNotes\": \"\",\r\n    \"startingTime\": \"15:30:00\",\r\n    \"latestRevisionDate\": \"0001-01-01\",\r\n    \"causeOfRejection\": \"Do_x0020_not_x0020_disturb\",\r\n    \"finishingEmployee\": \"HOUSEKEEPING_02\",\r\n    \"finishingEmployeeName\": \"SANDRA OLIVA\",\r\n    \"finishingDate\": \"2025-05-12\",\r\n    \"finishingTime\": \"15:42:00\",\r\n    \"totalEmployees\": 1,\r\n    \"sheetsExtraBed\": false,\r\n    \"sheetsNo\": 2,\r\n    \"towelsNo\": 2,\r\n    \"sheetsExtraNo\": 1,\r\n    \"splitBed\": false,\r\n    \"createdDateTime\": \"2023-04-12T09:54:36.337Z\",\r\n    \"createdBy\": \"c75ddb7b-c65f-4b15-9d05-7c5bd750a6ac\",\r\n    \"lastModifiedDateTime\": \"2025-04-07T13:59:18.307Z\",\r\n    \"lastModifiedBy\": \"9245a013-e8c4-47b6-8dd0-143dfb3d0380\"\r\n}"}],"_postman_id":"ea67b13d-c480-4aef-b05d-bc428d9d6761"},{"name":"changeStatus","id":"5949beb1-fd34-4c22-8ed0-1383c001d104","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"statusValue\": \"Undone\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<id>)/Microsoft.NAV.changeStatus","description":"<p>This function allows you to update both the change status of the housekeeping line and the associated room. Therefore, it is not necessary to use the “changeRoomStatus” function additionally. Only today's lines should be changed.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["{tenant}","{environmentName}","api","noray","housekeeping","v1.0","companies({companyId})","housekeepingLines(<id>)","Microsoft.NAV.changeStatus"],"host":["https://api.businesscentral.dynamics.com/v2.0"],"query":[],"variable":[]}},"response":[{"id":"b31f5325-6042-4e69-876a-cb256dac0e91","name":"200","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"statusValue\": \"Checked\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<id>)/Microsoft.NAV.changeStatus"},"code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/$metadata#Edm.String\",\r\n    \"value\": \"The status change operation has been successfully completed.\"\r\n}"},{"id":"26a28d5a-9066-4b61-85d9-a2e7a894f0db","name":"Status not found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"statusValue\": \"Cheked\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<id>)/Microsoft.NAV.changeStatus"},"code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": {\r\n        \"code\": \"Application_DialogException\",\r\n        \"message\": \"Status Cheked was not found  CorrelationId:  c4daecee-222b-454d-ad9e-f7ac959085cb.\"\r\n    }\r\n}"},{"id":"826963e3-db60-4238-9496-27ced929c53b","name":"Error Response","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n    \"statusValue\": \"Checked\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/housekeeping/v1.0/companies({companyId})/housekeepingLines(<id>)/Microsoft.NAV.changeStatus"},"code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"error\": {\r\n        \"code\": \"Application_DialogException\",\r\n        \"message\": \"The status change operation has ended with errors: Error text. CorrelationId:  c4daecee-222b-454d-ad9e-f7ac959085cb.\"\r\n    }\r\n}"}],"_postman_id":"5949beb1-fd34-4c22-8ed0-1383c001d104"}],"id":"011331b4-1dca-4b30-8834-f89edb929c00","_postman_id":"011331b4-1dca-4b30-8834-f89edb929c00","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"048d1a21-142d-47e6-9fff-d702eb2e0ee2","description":"<p>This section requires that the hotel has installed and configured the “Noray Htl: Housekeeping” module in order to be used. It allows the integral management of Housekeeping needs, such as frequency tables for room cleaning, towel and sheet changes, arrival and/or departure tasks.</p>\n","_postman_id":"048d1a21-142d-47e6-9fff-d702eb2e0ee2","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Noray Htl: POS","item":[{"name":"norayhtlPOS","item":[{"name":"salesPersonsDepartments","id":"76afd4e2-ad98-4d63-a94b-a712ed66b834","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns the list of users for each department</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>departmentNo</td>\n<td>Code[20]</td>\n<td>department identifier</td>\n</tr>\n<tr>\n<td>salesPersonNo</td>\n<td>Code[20]</td>\n<td>identifier of the user belonging to that department</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique object identifier</td>\n</tr>\n<tr>\n<td>salespersonName</td>\n<td>Text[50]</td>\n<td>name of the user belonging to that department</td>\n</tr>\n<tr>\n<td>systemModifiedAt</td>\n<td>DateTime</td>\n<td>last modification of the object</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"7d7e0397-13dc-4a89-8f05-f7f3af726f07","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/salesPersonsDepartments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"ed86f26f-ea00-e2de-64eb-41936be319a5"},{"key":"mise-correlation-id","value":"8ed6820d-8e63-41be-9c72-b0423388ecbf"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"d2b5bb6e-d139-469f-896c-e363c758af50"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:52:51 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/salesPersonsDepartments\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTQwNjcyODYzNDI4NDQ5NDMxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"salesPersonNo\": \"LLG\",\n            \"id\": \"067c8c51-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"LUIS LOPEZ GIL\",\n            \"systemModifiedAt\": \"2022-09-05T10:34:28.957Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTM2NjIwODUwODA4Mzc1NTkxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"salesPersonNo\": \"MGH\",\n            \"id\": \"676174e9-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MIGUEL GARCIA HERNÁNDEZ\",\n            \"systemModifiedAt\": \"2022-09-05T10:38:43.813Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTQyMzk1NjU5MTExNDc4MTkxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"salesPersonNo\": \"MMM\",\n            \"id\": \"b68743e3-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MARIA MAGÜEZ MANILA\",\n            \"systemModifiedAt\": \"2022-09-05T10:38:33.427Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MTQ1NDI2NzgxMTU5MjQ4MzUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"salesPersonNo\": \"PGC\",\n            \"id\": \"18368205-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"PEDRO GARCIA CUEVAS\",\n            \"systemModifiedAt\": \"2022-09-05T10:32:21.397Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjIxMDgxOTQ0OTI3MDI3MjUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"salesPersonNo\": \"LLG\",\n            \"id\": \"1f07056f-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"LUIS LOPEZ GIL\",\n            \"systemModifiedAt\": \"2022-09-05T10:38:55.183Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjE3MTQ1MzA1MjM0MjIzNDgxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"salesPersonNo\": \"MGH\",\n            \"id\": \"dafa81f3-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MIGUEL GARCIA HERNÁNDEZ\",\n            \"systemModifiedAt\": \"2022-09-05T10:39:00.677Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjIyODYzMDU4NTMxNDUzOTIxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"salesPersonNo\": \"MMM\",\n            \"id\": \"dbfa81f3-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MARIA MAGÜEZ MANILA\",\n            \"systemModifiedAt\": \"2022-09-05T10:39:03.683Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjE4NjE3NTQ4NDE0NTM1MTQxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"salesPersonNo\": \"LLG\",\n            \"id\": \"c610ebfa-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"LUIS LOPEZ GIL\",\n            \"systemModifiedAt\": \"2022-09-05T10:39:13.11Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjIwMjYxODMwODQzOTg2ODUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"salesPersonNo\": \"MMM\",\n            \"id\": \"c710ebfa-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MARIA MAGÜEZ MANILA\",\n            \"systemModifiedAt\": \"2022-09-05T10:39:15.777Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2MjIzMzA2MDEwOTk4MjU0NDExOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"salesPersonNo\": \"PGC\",\n            \"id\": \"bb60cdd3-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"PEDRO GARCIA CUEVAS\",\n            \"systemModifiedAt\": \"2022-09-05T10:38:07.487Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mjc4Mjk3NjE3NjcxNTA0MTYxOzAwOyc=\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"salesPersonNo\": \"LLG\",\n            \"id\": \"79a9f3c4-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"LUIS LOPEZ GIL\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:42.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mjc0MjI2MjIyNzI0MTE1MzUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"salesPersonNo\": \"MGH\",\n            \"id\": \"7aa9f3c4-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MIGUEL GARCIA HERNÁNDEZ\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:50.64Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2Mjc5OTk4MzM2MDU2NzkzMDAxOzAwOyc=\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"salesPersonNo\": \"MMM\",\n            \"id\": \"882599cb-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MARIA MAGÜEZ MANILA\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:53.72Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzEyNzY5OTIwMTczODUyMDExOzAwOyc=\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"salesPersonNo\": \"LLG\",\n            \"id\": \"1f27a8ba-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"LUIS LOPEZ GIL\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:25.297Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzA4NjU5NzQzMjc0ODMwMjQxOzAwOyc=\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"salesPersonNo\": \"MGH\",\n            \"id\": \"2027a8ba-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MIGUEL GARCIA HERNÁNDEZ\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:28.177Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzE0Mzc3NDk2MjYwOTcwOTIxOzAwOyc=\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"salesPersonNo\": \"MMM\",\n            \"id\": \"2127a8ba-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"MARIA MAGÜEZ MANILA\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:30.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ2NzE3NDcwNzI5MTI0NzQ1NzExOzAwOyc=\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"salesPersonNo\": \"PGC\",\n            \"id\": \"2227a8ba-062d-ed11-97e8-6045bd8e430d\",\n            \"salespersonName\": \"PEDRO GARCIA CUEVAS\",\n            \"systemModifiedAt\": \"2022-09-05T10:37:35.027Z\"\n        }\n    ]\n}"}],"_postman_id":"76afd4e2-ad98-4d63-a94b-a712ed66b834"},{"name":"roomsOccupied","id":"b84e9e66-786c-4c66-b651-04aa49105971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns a list of rooms in occupancy state</p>\n<p>In future versions this endpoint may become obsolete.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>no</td>\n<td>Code[20]</td>\n<td>guest reservation identifier</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique object identifier</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>Code[10]</td>\n<td>Identifier of the room where the guest is staying</td>\n</tr>\n<tr>\n<td>arrivalDate</td>\n<td>Date</td>\n<td>(YYYY-MM-DD) Arrival date of the guest</td>\n</tr>\n<tr>\n<td>arrivalTime</td>\n<td>Time</td>\n<td>(HH:MM:SS) Arrival time of the guest</td>\n</tr>\n<tr>\n<td>departureDate</td>\n<td>Date</td>\n<td>(YYYY-MM-DD) Departure date of the guest</td>\n</tr>\n<tr>\n<td>departureTime</td>\n<td>Time</td>\n<td>(HH:MM:SS) Departure time of the guest</td>\n</tr>\n<tr>\n<td>boardBasis</td>\n<td>Code[10]</td>\n<td>Code that identifies the guest's accommodation</td>\n</tr>\n<tr>\n<td>boardBasisType</td>\n<td>Enum with the values:  <br />- \" \"  <br />- \"Self Catering\"  <br />- Breakfast  <br />- \"Half Board\"  <br />- \"Full Board\"  <br />- \"All Inclusive\"</td>\n<td>Description of the type of guest accommodation</td>\n</tr>\n<tr>\n<td>adults</td>\n<td>Decimal</td>\n<td>Number of adults in the reservation</td>\n</tr>\n<tr>\n<td>children</td>\n<td>Decimal</td>\n<td>Number of children in the reservation</td>\n</tr>\n<tr>\n<td>allowPOSCharges</td>\n<td>Boolean</td>\n<td>(false/ true) symbolizes if the reservation allows point-of-sale charges in the PMS</td>\n</tr>\n<tr>\n<td>creditLimit</td>\n<td>Decimal</td>\n<td>Guest's reservation credit limit</td>\n</tr>\n<tr>\n<td>bookingname</td>\n<td>Text[100]</td>\n<td>guest reservation name</td>\n</tr>\n<tr>\n<td>dateFilter</td>\n<td>Date</td>\n<td>(YYYY-MM-DD &lt; YYYY-MM-DD) Date filter to display occupied rooms</td>\n</tr>\n<tr>\n<td>systemModifiedAt</td>\n<td>DateTime</td>\n<td>last modification of the object</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"ad7542b6-e61b-4d26-8d09-765e0cd6c8be","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/roomsOccupied"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"5d426085-163d-87cb-85dd-d991a6eeb95d"},{"key":"mise-correlation-id","value":"ae256771-6b9b-4eed-b863-36b2e8e17ae7"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"c32c3ad2-d0b4-4b45-a66e-da001b46f57f"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 02 Jun 2023 12:54:09 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/roomsOccupied\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MDA1MjUyNjEyOTE0NjgxNTMxOzAwOyc=\\\"\",\n            \"no\": \"RH0000001\",\n            \"id\": \"bd8a7c1f-2929-ed11-97e8-00224882e1a5\",\n            \"roomNo\": \"202\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"ELISA BAEZ GONZALEZ\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T09:45:25.78Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg4MDkwNTc4NTQ5MzI0MTI5MzQxOzAwOyc=\\\"\",\n            \"no\": \"RH0000002\",\n            \"id\": \"54395a31-b22e-ed11-97e8-00224882e1a5\",\n            \"roomNo\": \"206\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-04\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"JOHN SMITH \",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T11:01:38.173Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwOTM4Mzg1ODM2ODAyNDUyNDQzMTswMDsn\\\"\",\n            \"no\": \"RH0000003\",\n            \"id\": \"7d1904c1-4845-ed11-946f-000d3a25421c\",\n            \"roomNo\": \"102\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"JOAN GARCÍA GARCÍA\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T11:01:25.217Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDkzNjc2NTUwNzIzMDY0ODgzMTswMDsn\\\"\",\n            \"no\": \"RH0000004\",\n            \"id\": \"f90827c7-4845-ed11-946f-000d3a25421c\",\n            \"roomNo\": \"302\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 1,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"MARIA JOSÉ  GONZALEZ  PEREZ\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T11:02:08.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MzkyNTIwMjExMDQ5NjU2MDc4MTswMDsn\\\"\",\n            \"no\": \"RH0000006\",\n            \"id\": \"df859a5d-4f45-ed11-946f-000d3a25421c\",\n            \"roomNo\": \"104\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-05\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 4,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"PETER JACKSON\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T11:02:39.97Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjU3MDkzMTc3Mzc5MTQ2NTI4MTswMDsn\\\"\",\n            \"no\": \"RH0000007\",\n            \"id\": \"4230a443-6a45-ed11-946f-000d3aa8c4e6\",\n            \"roomNo\": \"103\",\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 100,\n            \"bookingName\": \"JAIME MARRERO GARCIA\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-02T11:01:10.643Z\"\n        }\n    ]\n}"}],"_postman_id":"b84e9e66-786c-4c66-b651-04aa49105971"},{"name":"paymentMethodsDep","id":"0fde8adc-50c9-4bc9-adcf-36f016f16b05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns the list of supported payment methods per department</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Tooltip</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>departmentNo</td>\n<td>Code[20]</td>\n<td>department identifier</td>\n</tr>\n<tr>\n<td>paymentMethod</td>\n<td>Code[10]</td>\n<td>type of payment allowed in the department</td>\n</tr>\n<tr>\n<td>id</td>\n<td>Guid</td>\n<td>Unique object identifier</td>\n</tr>\n<tr>\n<td>paymentDescription</td>\n<td>Text[100]</td>\n<td>description of the method of payment</td>\n</tr>\n<tr>\n<td>paymentType</td>\n<td>Option with the values:  <br />- Cash  <br />- Credit  <br />- \"Credit Card\"  <br />- Voucher  <br />- Pending  <br />- \"All Inclusive\"  <br />- \"Internal Charge\"</td>\n<td>payment Type</td>\n</tr>\n<tr>\n<td>paymentCashLine</td>\n<td>Boolean</td>\n<td>identifier symbolizing if the payment type supports cash</td>\n</tr>\n<tr>\n<td>paymentCombinable</td>\n<td>Boolean</td>\n<td>Symbolizes if different types of payment are supported</td>\n</tr>\n<tr>\n<td>paymentInternalCharge</td>\n<td>paymentInternalCharge</td>\n<td>home account code (to be paid by the establishment)</td>\n</tr>\n<tr>\n<td>hotelItemNoTips</td>\n<td>hotelItemNoTips</td>\n<td>Hotel product code to identify tips</td>\n</tr>\n<tr>\n<td>systemModifiedAt</td>\n<td>DateTime</td>\n<td>last modification of the object</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"a4b3541d-67e3-429f-81aa-aa068dba5fe1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/paymentMethodsDep"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"abcc0038-6db1-5edb-a7e5-34220c6353e4"},{"key":"mise-correlation-id","value":"f642b92f-1da2-462e-a487-3bc9b2b40b82"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"38eb6df8-3832-4d7b-a62f-d64a97c805e2"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:52:15 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/paymentMethodsDep\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyODEyNTgwNjAyMzk2MzQ1NjcxMTswMDsn\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"AMEX\",\n            \"id\": \"a2c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"American Express\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk4OTUxMDYxODUxMTEzODEzODExOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"C. HAB\",\n            \"id\": \"a3c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Cargo habitación\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMDYxODE2NTM2NjIxNzk5NDQxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"CONTADO\",\n            \"id\": \"a4c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Pago efectivo\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE4OzUyOTM3NjUxNDk2MDkzNTcyNTE7MDA7Jw==\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"CTA.CASA\",\n            \"id\": \"a5c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Cuenta Casa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjg3MjkwMTU4MTk1NDc1MTc5MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"DINNERS\",\n            \"id\": \"a6c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Dinners\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI0NTkxNzgxNTAwMjE3Mjc1MjMxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"MASTER\",\n            \"id\": \"a7c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Master Card\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDIxMzg1MzQwMjk2MTg5NzQ3MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR HALL\",\n            \"paymentMethod\": \"VISA\",\n            \"id\": \"a8c02fca-17e7-ec11-82f8-6045bd8deb29\",\n            \"paymentDescription\": \"Visa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:23:07.843Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MzU2MTk0NDE5MjQzNjMwNjk2MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"paymentMethod\": \"C. HAB\",\n            \"id\": \"2a9e8252-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cargo habitación\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:27:27.887Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk0Mzk4NjY5NzE1NDYwMzA3NzUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"paymentMethod\": \"CTA.CASA\",\n            \"id\": \"9f4f5569-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cuenta Casa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:27:59.363Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU3NjI4NzA5OTk0NDc5MjA4ODExOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"paymentMethod\": \"VISA\",\n            \"id\": \"299e8252-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Visa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:27:21.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIyMjQzOTUzMjczNDE0MjgwOTIxOzAwOyc=\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"paymentMethod\": \"C. HAB\",\n            \"id\": \"9fd0ff0b-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cargo habitación\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:25:27.477Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjQyNjgxNTYwNDY3NTQ2MTI0MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"paymentMethod\": \"CONTADO\",\n            \"id\": \"39448013-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Pago efectivo\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:25:35.36Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MjYyMTcyNzM5MjI3NDY5NjU4MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"paymentMethod\": \"CTA.CASA\",\n            \"id\": \"ea3a3578-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cuenta Casa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:28:24.32Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjE3Mjc2NjE4MDI4NTY3MzA1MTswMDsn\\\"\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"paymentMethod\": \"VISA\",\n            \"id\": \"a0d0ff0b-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Visa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:25:31.803Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzkwOTI4NjI2Nzg4NTkzMzcyODAxOzAwOyc=\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"paymentMethod\": \"C. HAB\",\n            \"id\": \"2b8fa41c-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cargo habitación\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:25:50.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzM2Nzk3NTk3MTk2MjMwMTQ1MTUxOzAwOyc=\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"paymentMethod\": \"CONTADO\",\n            \"id\": \"52ea4f3f-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Pago efectivo\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:27:01.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTI5NDQxNDE2Mzg0NjE5MzQ2MTswMDsn\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"paymentMethod\": \"CTA.CASA\",\n            \"id\": \"b6a58971-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cuenta Casa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:28:13.127Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNTc1MjMwODk1ODM0NDU4NTcxMTswMDsn\\\"\",\n            \"departmentNo\": \"SPA\",\n            \"paymentMethod\": \"VISA\",\n            \"id\": \"2c8fa41c-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Visa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:26:37.163Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MjQ1NzA3NzU4ODU5OTAwMzI4MTswMDsn\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"paymentMethod\": \"C. HAB\",\n            \"id\": \"67a34688-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cargo habitación\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:28:51.277Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNDg2NzM5MjMzNjE0MjA4MTkyMTswMDsn\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"paymentMethod\": \"CONTADO\",\n            \"id\": \"f6855cec-042d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Pago efectivo\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:24:29.697Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUxOTA0NDYwMjM3NDQxMjY5OTcxOzAwOyc=\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"paymentMethod\": \"CTA.CASA\",\n            \"id\": \"41b3f97f-052d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Cuenta Casa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": false,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:28:37.35Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1ODA2NTczNjExNTAwOTY2NTY4MTswMDsn\\\"\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"paymentMethod\": \"VISA\",\n            \"id\": \"f7855cec-042d-ed11-97e8-6045bd8e430d\",\n            \"paymentDescription\": \"Visa\",\n            \"paymentType\": \"Cash\",\n            \"paymentCashLine\": true,\n            \"paymentCombinable\": false,\n            \"paymentInternalCharge\": \"\",\n            \"hotelItemNoTips\": \"\",\n            \"systemModifiedAt\": \"2022-09-05T10:24:33.363Z\"\n        }\n    ]\n}"}],"_postman_id":"0fde8adc-50c9-4bc9-adcf-36f016f16b05"},{"name":"totalDiscounts","id":"94111117-2b03-44a2-8f7d-15d313cfe8a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns a list of the predefined discounts existing at the POS</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Discount identifier number</p>\n","type":"text/plain"},"key":"totalDiscountNo","value":"String"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>description of the discount</p>\n","type":"text/plain"},"key":"description","value":"String"},{"disabled":true,"description":{"content":"<p>discount percentage applied</p>\n","type":"text/plain"},"key":"percent","value":"Integer"},{"disabled":true,"description":{"content":"<p>last modification of the object</p>\n","type":"text/plain"},"key":"systemModifiedAt","value":"String"}],"variable":[]}},"response":[{"id":"c1bc6fcf-879a-4509-a2f9-ace74f85b763","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/totalDiscounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"2bece99d-127b-9d8b-8f30-539e77f0aa6d"},{"key":"mise-correlation-id","value":"ec0296cd-493d-4b96-a859-5bfd8612a65b"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"7239b448-3621-41d8-bc37-deb327d60dcd"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:51:37 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/totalDiscounts\",\n    \"value\": []\n}"}],"_postman_id":"94111117-2b03-44a2-8f7d-15d313cfe8a2"},{"name":"hotelsName","id":"d3404efc-ecef-4d78-9465-d47554072781","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns a list of all the companies created (hotels) in the environment where the API is used. Its use is necessary in the case of charges to a specific hotel in those functions that have as parameter of the request {hotelName}.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"name","value":"String"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>Name displayed in the PMS (not identifying the company)</p>\n","type":"text/plain"},"key":"displayName","value":"String"},{"disabled":true,"description":{"content":"<p>last modification of the object</p>\n","type":"text/plain"},"key":"systemModifiedAt","value":"String"}],"variable":[]}},"response":[{"id":"d2d4bbbc-daab-4c32-a8ba-b8c63d7eb024","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/hotelsName"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0df787e1-a0ca-915e-5d13-f7cb8a523fe8"},{"key":"mise-correlation-id","value":"f86f54a5-8a40-40f3-bca8-4d754cb16b4d"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"a34f12c2-5d55-4126-a10f-0e412f5bed87"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:50:57 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/hotelsName\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MjY4NDU4NDc5OTkwMjI4MTswMDsn\\\"\",\n            \"name\": \"CRONUS ES\",\n            \"id\": \"b5feb9d5-4089-ec11-bb86-6045bd8e5a18\",\n            \"displayName\": \"\",\n            \"systemModifiedAt\": \"2022-02-09T00:40:13.417Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MjgwNjQ0MTMxNDE5MDY3MTswMDsn\\\"\",\n            \"name\": \"Hotel\",\n            \"id\": \"8d1395ac-3fe3-ec11-82f8-6045bd8e3416\",\n            \"displayName\": \"Hotel\",\n            \"systemModifiedAt\": \"2022-08-19T10:13:51.907Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MTg2MzEwMTQzOTkwODExMTswMDsn\\\"\",\n            \"name\": \"MEG Hotel\",\n            \"id\": \"6c1c99bd-be14-ed11-90eb-000d3a29b954\",\n            \"displayName\": \"MEG Hotel\",\n            \"systemModifiedAt\": \"2022-08-05T13:03:35.693Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MDIzNjEzNDcxOTk4NTE1MTswMDsn\\\"\",\n            \"name\": \"My Company\",\n            \"id\": \"5218dbe1-4089-ec11-bb86-6045bd8e5a18\",\n            \"displayName\": \"\",\n            \"systemModifiedAt\": \"2022-02-09T00:40:32.053Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MDM3NTM2MDQxMDQxMzM4MTswMDsn\\\"\",\n            \"name\": \"Noray Htl Demo\",\n            \"id\": \"7baa7726-010f-ed11-90eb-6045bd8aa9fb\",\n            \"displayName\": \"Noray Htl Demo\",\n            \"systemModifiedAt\": \"2022-07-29T05:47:32.643Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3NDc5NjcyMjY1ODQwOTI3MTswMDsn\\\"\",\n            \"name\": \"Pruebas\",\n            \"id\": \"986e8ab6-82e1-ec11-82f8-6045bd8deb29\",\n            \"displayName\": \"Pruebas\",\n            \"systemModifiedAt\": \"2022-06-01T08:13:34.57Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3NzgyMzA1NzgxNTE1NzMwMTswMDsn\\\"\",\n            \"name\": \"Pruebas Enlace REVO\",\n            \"id\": \"ca12877d-42a9-ed11-9a88-6045bd88ba10\",\n            \"displayName\": \"Pruebas Enlace revo\",\n            \"systemModifiedAt\": \"2023-02-16T13:51:45.953Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3NjQ3NDcwNzc0MDk3MDE5MTswMDsn\\\"\",\n            \"name\": \"Soporte Pruebas\",\n            \"id\": \"af9287a9-c938-ed11-97e8-000d3a398287\",\n            \"displayName\": \"Soporte Pruebas\",\n            \"systemModifiedAt\": \"2022-09-20T09:54:21.233Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3Njg3MTU3OTA5OTY1MjYwMTswMDsn\\\"\",\n            \"name\": \"Test Unitarios\",\n            \"id\": \"d636ab2b-7e06-ed11-90ed-6045bd974bde\",\n            \"displayName\": \"Test Unitarios\",\n            \"systemModifiedAt\": \"2022-07-18T09:44:09.663Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0NTM3MDg1NDI4NTE3MjAwNTk5MTswMDsn\\\"\",\n            \"name\": \"TEST Version Noray Htl\",\n            \"id\": \"7ca2196c-b3cf-ed11-a7c9-002248869456\",\n            \"displayName\": \"TEST Version Noray Htl\",\n            \"systemModifiedAt\": \"2023-03-31T11:04:08.62Z\"\n        }\n    ]\n}"}],"_postman_id":"d3404efc-ecef-4d78-9465-d47554072781"},{"name":"departmentsPOS","id":"3f5772f5-a52b-440d-9819-d8afe4a8aa83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns a list with all the departments and information about them.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>department identifier</p>\n","type":"text/plain"},"key":"departmentNo","value":"String"},{"disabled":true,"description":{"content":"<p>name of the department</p>\n","type":"text/plain"},"key":"description","value":"String"},{"disabled":true,"description":{"content":"<p>symbolizes if the apartment has taxes included</p>\n","type":"text/plain"},"key":"taxIncluded","value":"Boolean"},{"disabled":true,"description":{"content":"<p>indicates if the department has products unique to that department</p>\n","type":"text/plain"},"key":"itemsByDepartment","value":"Boolean"},{"disabled":true,"description":{"content":"<p>indicates whether the department supports revenue concepts by product catergory</p>\n","type":"text/plain"},"key":"itemCatHotelItem","value":"Boolean"},{"disabled":true,"description":{"content":"<p>Warehouse identifier</p>\n","type":"text/plain"},"key":"location","value":"String"},{"disabled":true,"description":{"content":"<p>No. of rooms Cash Sales</p>\n","type":"text/plain"},"key":"cashSalesRoomNo","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the customer code to be used for cash sales and to obtain product prices.</p>\n","type":"text/plain"},"key":"cashSalesCustomerNo","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the default cash code for cash sales.</p>\n","type":"text/plain"},"key":"cashSalesCashNo","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the cash outgoing operation concept code</p>\n","type":"text/plain"},"key":"cashOperationNo","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the cash receipt transaction concept code.</p>\n","type":"text/plain"},"key":"cashInitialOperationNo","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the cash closing operation code.</p>\n","type":"text/plain"},"key":"cashLiqOperationNo","value":"String"},{"disabled":true,"description":{"content":"<p>Tipo concepto</p>\n","type":"text/plain"},"key":"vatProdPostingGroup","value":"String"},{"disabled":true,"description":{"content":"<p>Specifies the revenue concept used in the charge to be made in the charge hotel.</p>\n","type":"text/plain"},"key":"defaultHotelItem","value":"String"},{"disabled":true,"description":{"content":"<p>last modification of the object</p>\n","type":"text/plain"},"key":"systemModifiedAt","value":"String"}],"variable":[]}},"response":[{"id":"cc0053cf-d4f7-44c0-b374-80fa58be755e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/departmentsPOS"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"57640603-1fdc-f92c-4f3e-354ad29c6a70"},{"key":"mise-correlation-id","value":"3bd6c4eb-58de-4323-bba9-9aad09bd49db"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"254c1581-1fb8-4e4b-af25-d9bebd9ce9cd"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:45:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/departmentsPOS\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEyMDAxNDIyNDE2ODI1MDc4Nzg5MTswMDsn\\\"\",\n            \"id\": \"028c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"departmentNo\": \"BAR HALL\",\n            \"description\": \"BAR HALL\",\n            \"taxIncluded\": true,\n            \"itemsByDepartment\": false,\n            \"itemCatHotelItem\": false,\n            \"location\": \"TPV1\",\n            \"cashSalesRoomNo\": \"TPV\",\n            \"cashSalesCustomerNo\": \"TPV1\",\n            \"cashSalesCashNo\": \"CAJATPV1\",\n            \"cashOperationNo\": \"LIQ-TPV1\",\n            \"cashInitialOperationNo\": \"ENT-TPV1\",\n            \"cashLiqOperationNo\": \"LIQ-TPV1\",\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\n            \"defaultHotelItem\": \"TPV1\",\n            \"systemModifiedAt\": \"2022-10-14T14:46:51.757Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwMjY1NTEyNjA2NTk2MTI5NTc5MTswMDsn\\\"\",\n            \"id\": \"038c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"departmentNo\": \"BAR PISCINA\",\n            \"description\": \"BAR PISCINA\",\n            \"taxIncluded\": true,\n            \"itemsByDepartment\": false,\n            \"itemCatHotelItem\": true,\n            \"location\": \"TPV2\",\n            \"cashSalesRoomNo\": \"TPV\",\n            \"cashSalesCustomerNo\": \"TPV2\",\n            \"cashSalesCashNo\": \"CAJATPV2\",\n            \"cashOperationNo\": \"LIQ-TPV2\",\n            \"cashInitialOperationNo\": \"ENT-TPV2\",\n            \"cashLiqOperationNo\": \"LIQ-TPV2\",\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\n            \"defaultHotelItem\": \"TPV2\",\n            \"systemModifiedAt\": \"2022-10-26T07:34:33.473Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzYyMjA4OTM1NzAxNTQzNTA5NDcxOzAwOyc=\\\"\",\n            \"id\": \"048c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"departmentNo\": \"SPA\",\n            \"description\": \"SPA\",\n            \"taxIncluded\": true,\n            \"itemsByDepartment\": false,\n            \"itemCatHotelItem\": false,\n            \"location\": \"TPV3\",\n            \"cashSalesRoomNo\": \"TPV\",\n            \"cashSalesCustomerNo\": \"TPV3\",\n            \"cashSalesCashNo\": \"CAJATPV3\",\n            \"cashOperationNo\": \"LIQ-TPV3\",\n            \"cashInitialOperationNo\": \"ENT-TPV3\",\n            \"cashLiqOperationNo\": \"LIQ-TPV3\",\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\n            \"defaultHotelItem\": \"TPV3\",\n            \"systemModifiedAt\": \"2022-10-14T14:47:18.517Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1Nzg3ODQ2MDU4OTUzNTkxMjUyMTswMDsn\\\"\",\n            \"id\": \"058c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"departmentNo\": \"BAR RESTAURANTE\",\n            \"description\": \"BAR RESTAURANTE\",\n            \"taxIncluded\": true,\n            \"itemsByDepartment\": false,\n            \"itemCatHotelItem\": false,\n            \"location\": \"TPV4\",\n            \"cashSalesRoomNo\": \"TPV\",\n            \"cashSalesCustomerNo\": \"TPV4\",\n            \"cashSalesCashNo\": \"CAJATPV4\",\n            \"cashOperationNo\": \"LIQ-TPV4\",\n            \"cashInitialOperationNo\": \"ENT-TPV4\",\n            \"cashLiqOperationNo\": \"LIQ-TPV4\",\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\n            \"defaultHotelItem\": \"TPV4\",\n            \"systemModifiedAt\": \"2022-10-14T14:47:46.04Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzUyNjcxNzQ5MDg0NTg3Mjk2NDMxOzAwOyc=\\\"\",\n            \"id\": \"068c2ec4-17e7-ec11-82f8-6045bd8deb29\",\n            \"departmentNo\": \"TIENDA HALL\",\n            \"description\": \"TIENDA HALL\",\n            \"taxIncluded\": true,\n            \"itemsByDepartment\": false,\n            \"itemCatHotelItem\": false,\n            \"location\": \"TPV5\",\n            \"cashSalesRoomNo\": \"TPV\",\n            \"cashSalesCustomerNo\": \"TPV5\",\n            \"cashSalesCashNo\": \"CAJATPV5\",\n            \"cashOperationNo\": \"LIQ-TPV5\",\n            \"cashInitialOperationNo\": \"ENT-TPV5\",\n            \"cashLiqOperationNo\": \"LIQ-TPV5\",\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\n            \"defaultHotelItem\": \"TPV5\",\n            \"systemModifiedAt\": \"2022-10-14T14:47:26.86Z\"\n        }\n    ]\n}"}],"_postman_id":"3f5772f5-a52b-440d-9819-d8afe4a8aa83"},{"name":"roomList","id":"bf5a9c9a-641c-4d51-aead-96cc7ef9ffd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/roomList","description":"<p>Returns a list of fictionals and real rooms</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","8adc3ee6-b964-44ca-bb94-c939fd272c56","NorayHTLSandbox","api","noray","norayhtlPOS","v1.0","companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)","roomList"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>guest Booking identifier</p>\n","type":"text/plain"},"key":"no","value":"String"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>Identifier of the room where the guest is staying</p>\n","type":"text/plain"},"key":"roomNo","value":"String"},{"disabled":true,"description":{"content":"<p>(YYYY-MM-DD) Arrival date of the guest</p>\n","type":"text/plain"},"key":"arrivalDate","value":"String"},{"disabled":true,"description":{"content":"<p>(HH:MM:SS) Arrival time of the guest</p>\n","type":"text/plain"},"key":"arrivalTime","value":"String"},{"disabled":true,"description":{"content":"<p>(YYYY-MM-DD) Departure date of the guest</p>\n","type":"text/plain"},"key":"departureDate","value":"String"},{"disabled":true,"description":{"content":"<p>(HH:MM:SS) Departure time of the guest</p>\n","type":"text/plain"},"key":"departureTime","value":"String"},{"disabled":true,"description":{"content":"<p>Code that identifies the guest's pension</p>\n","type":"text/plain"},"key":"boardBasis","value":"String"},{"disabled":true,"description":{"content":"<p>Description of the type of guest accommodation</p>\n","type":"text/plain"},"key":"boardBasisType","value":"String"},{"disabled":true,"description":{"content":"<p>Number of adults in the booking</p>\n","type":"text/plain"},"key":"adults","value":"Integer"},{"disabled":true,"description":{"content":"<p>Number of children in the booking</p>\n","type":"text/plain"},"key":"children","value":"Integer"},{"disabled":true,"description":{"content":"<p>(false/ true) symbolizes if the reservation allows point-of-sale charges in the PMS</p>\n","type":"text/plain"},"key":"allowPOSCharges","value":"Boolean"},{"disabled":true,"description":{"content":"<p>Guest's booking credit limit</p>\n","type":"text/plain"},"key":"creditLimit","value":"Integer"},{"disabled":true,"description":{"content":"<p>guest booking name</p>\n","type":"text/plain"},"key":"bookingname","value":"String"},{"disabled":true,"description":{"content":"<p>(YYYY-MM-DD &lt; YYYY-MM-DD) Date filter to display occupied rooms</p>\n","type":"text/plain"},"key":"dateFilter","value":"String"},{"disabled":true,"description":{"content":"<p>last modification of the object</p>\n","type":"text/plain"},"key":"systemModifiedAt","value":"String"}],"variable":[]}},"response":[{"id":"297a9958-21ee-4296-bb96-f725aba02b53","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/roomList"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"55bf717d-e0ad-2ff4-6ee9-b7927146190a"},{"key":"mise-correlation-id","value":"7f32a281-1c7c-4c94-9980-bac212b34425"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"850477d4-15c3-4d42-aedd-66f125a6feca"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 10 May 2024 15:58:31 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/roomList\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzkyOTQ4NDE2MDQwNTczNTgyMTswMDsn\\\"\",\n            \"no\": \"ALQUILER\",\n            \"roomNo\": \"ALQUILER\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozk1NzA4OTE1NTgyNjg3MTAyNTQxOzAwOyc=\\\"\",\n            \"no\": \"COMISION\",\n            \"roomNo\": \"COMISION\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMzUyMzc3NzQ4MTIyMjA0NDEwMTswMDsn\\\"\",\n            \"no\": \"DESVIO\",\n            \"roomNo\": \"DESVIO\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgyMjU5OTUzMzU2ODkxODEwMTswMDsn\\\"\",\n            \"no\": \"EVE\",\n            \"roomNo\": \"EVE\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE1MDcyMDQ3MjY2MjAwMTMyMDk4MTswMDsn\\\"\",\n            \"no\": \"FIANZAS\",\n            \"roomNo\": \"FIANZAS\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE3OzI1NjQ0NDI4MTkwNDc1Njc4MTswMDsn\\\"\",\n            \"no\": \"FIC\",\n            \"roomNo\": \"FIC\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4Mjg5NTgwNDgyNDcyMjg5ODI4MTswMDsn\\\"\",\n            \"no\": \"FRAMANUAL\",\n            \"roomNo\": \"FRAMANUAL\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTk5MjQyODQ4MDUwOTU2MzYyMTswMDsn\\\"\",\n            \"no\": \"PENALIZA\",\n            \"roomNo\": \"PENALIZA\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMjQ5NTYwODkzMTkxNjMyNTQxOzAwOyc=\\\"\",\n            \"no\": \"PPRUEBA2\",\n            \"roomNo\": \"PPRUEBA2\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3Njc3ODk4NzY3NTQyMzMxMjIxOzAwOyc=\\\"\",\n            \"no\": \"PRUEBA1\",\n            \"roomNo\": \"PRUEBA1\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzODM5MDU1NjgyMDMyMzM2MzE0MTswMDsn\\\"\",\n            \"no\": \"PRUEBA3\",\n            \"roomNo\": \"PRUEBA3\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzY0MzAwNDMzNDM0MTYxMDM4NTgxOzAwOyc=\\\"\",\n            \"no\": \"RECTIFICA\",\n            \"roomNo\": \"RECTIFICA\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MzQ2MDg1MDMzMDQ2MTAzOTkxOzAwOyc=\\\"\",\n            \"no\": \"RH0000001\",\n            \"roomNo\": \"202\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"ELISA BAEZ GONZALEZ\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2024-04-12T10:59:39.007Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQzNTMxNzQ5NTQzOTE2MTQwMTkxOzAwOyc=\\\"\",\n            \"no\": \"RH0000003\",\n            \"roomNo\": \"102\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"JOAN GARCÍA GARCÍA\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2024-04-15T11:13:12.557Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg2ODU4NzY5MzM4NjYxODA1ODYxOzAwOyc=\\\"\",\n            \"no\": \"RH0000006\",\n            \"roomNo\": \"104\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-05\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 4,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 300,\n            \"bookingName\": \"PETER JACKSON\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-10-26T09:48:20.077Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzNDAxMzk5OTY2MDA4NjY2Njk3MTswMDsn\\\"\",\n            \"no\": \"RH0000007\",\n            \"roomNo\": \"103\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 900,\n            \"bookingName\": \"JAIME MARRERO GARCIA\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-06-06T07:48:02.46Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzQ5MDg4ODk5NTE0MDMwNjI4ODQxOzAwOyc=\\\"\",\n            \"no\": \"RH0000018\",\n            \"roomNo\": \"TPV\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 100,\n            \"bookingName\": \"Daniel Castro Alonso\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-07-20T17:21:19.66Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNDYyMzkxMDc1ODY4NzQ2NzA5MTswMDsn\\\"\",\n            \"no\": \"RH0000026\",\n            \"roomNo\": \"101\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 100,\n            \"bookingName\": \"ESPANOLA ESPANOLA, CARMEN\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2023-08-23T15:39:15.113Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE2NzYzMDIzOTgxOTE2Njc5MjkxOzAwOyc=\\\"\",\n            \"no\": \"RH0000033\",\n            \"roomNo\": \"205\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-02\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 100,\n            \"bookingName\": \"Prueba\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2024-04-01T07:12:42.9Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MTM4ODc4MzE0MTYwODIwNjgxMTswMDsn\\\"\",\n            \"no\": \"RH0000034\",\n            \"roomNo\": \"102\",\n            \"real\": true,\n            \"arrivalDate\": \"2022-08-31\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"2022-09-02\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"MP\",\n            \"boardBasisType\": \"Half Board\",\n            \"adults\": 2,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 100,\n            \"bookingName\": \"Prueba\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"2024-04-01T07:12:42.747Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzIzNzU1NzE3ODIyODQ3ODQ5OTAxOzAwOyc=\\\"\",\n            \"no\": \"TPV\",\n            \"roomNo\": \"TPV\",\n            \"real\": false,\n            \"arrivalDate\": \"0001-01-01\",\n            \"arrivalTime\": \"00:00:00\",\n            \"departureDate\": \"0001-01-01\",\n            \"departureTime\": \"00:00:00\",\n            \"boardBasis\": \"\",\n            \"boardBasisType\": \" \",\n            \"adults\": 0,\n            \"children\": 0,\n            \"allowPOSCharges\": true,\n            \"creditLimit\": 0,\n            \"bookingName\": \"\",\n            \"dateFilter\": \"\",\n            \"systemModifiedAt\": \"0001-01-01T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"bf5a9c9a-641c-4d51-aead-96cc7ef9ffd2"},{"name":"unSyncItem","id":"345d4b0d-1548-4f5a-9a89-dffbf5ce1544","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"itemNoValue\": \"itemNoValue\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/<method>/Microsoft.NAV.<action>","description":"<p>The \"UnSyncItem\" function is used to mark a product as \"unsynchronized\", indicating that it has not been received or updated through any external calls.</p>\n<p>When the \"UnSyncItem\" function is executed with a specific product as a parameter, the system records that the product has not been synchronized with any external calls.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","<method>","Microsoft.NAV.<action>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>(Optional URL Param) Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"company","value":"String"},{"disabled":true,"description":{"content":"<p>Product ID</p>\n","type":"text/plain"},"key":"itemNoValue","value":"String"}],"variable":[]}},"response":[{"id":"75d56656-9d47-4eca-bd7e-c188470ebda5","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"itemNoValue\": \"C0000008\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/norayhtlPOS/v1.0/companies(<Company ID>)/items(<Item ID>)/Microsoft.NAV.unSyncItemExternalPOS"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/items(7840b03f-0a55-ed11-8c34-000d3a2716d1)"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"3511a7f3-f54b-6e83-f859-aaac311654fd"},{"key":"mise-correlation-id","value":"d6aab41c-42bd-455e-928c-296c15c73d5d"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"84ee5d88-54fe-4d1e-a24d-c905fef2a7db"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:24:48 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"345d4b0d-1548-4f5a-9a89-dffbf5ce1544"},{"name":"items","id":"eb81a33b-8c6a-4dc5-b10a-93237b30dd8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>The \"items\" function displays both products marked as unsynchronized and those marked as synchronized with the external application. After the API response, the displayed products will be automatically marked as synchronized with the external application.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>Product identifier in the PMS</p>\n","type":"text/plain"},"key":"itemNo","value":"String"},{"disabled":true,"description":{"content":"<p>product description in the PMS</p>\n","type":"text/plain"},"key":"description","value":"String"},{"disabled":true,"description":{"content":"<p>number of the category to which the product belongs</p>\n","type":"text/plain"},"key":"category","value":"String"},{"disabled":true,"description":{"content":"<p>description of the category</p>\n","type":"text/plain"},"key":"categoryDescription","value":"String"},{"disabled":true,"description":{"content":"<p>Unit of measure of the product</p>\n","type":"text/plain"},"key":"unitOfMeasure","value":"String"},{"disabled":true,"description":{"content":"<p>unit cost of the product</p>\n","type":"text/plain"},"key":"unitCost","value":"Integer"},{"disabled":true,"description":{"content":"<p>Status of the product in the PMS that symbolizes whether it is ready to sell or not.</p>\n","type":"text/plain"},"key":"blocked","value":"Boolean"},{"disabled":true,"description":{"content":"<p>Status of the product in the PMS that symbolizes whether it has been synchronized with an external point of sale.</p>\n","type":"text/plain"},"key":"synchronizedExternalPOS","value":"Boolean"},{"disabled":true,"description":{"content":"<p>Last modification of the object</p>\n","type":"text/plain"},"key":"systemModifiedAt","value":"String"}],"variable":[]}},"response":[{"id":"9fbf53c0-8f67-407d-a571-2520fd5ec488","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/items"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"9e71a846-ac62-9356-e52d-a72a73662369"},{"key":"mise-correlation-id","value":"667d837a-c923-4cd2-9c71-2b5c969e68f1"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"a9113341-4ed8-4f71-b595-f37fbb44bee7"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 09:08:56 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/items\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzExNTg3ODY0MzI1NTA3NDIwOTA0MTswMDsn\\\"\",\n            \"id\": \"7840b03f-0a55-ed11-8c34-000d3a2716d1\",\n            \"itemNo\": \"C0000008\",\n            \"description\": \"PINTA \",\n            \"category\": \"010404\",\n            \"categoryDescription\": \"CERVEZAS\",\n            \"unitOfMeasure\": \"UD\",\n            \"unitCost\": 9,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-05-16T10:21:17.13Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0OTAxMjMzNzI3NDI1MzQyMzY0MTswMDsn\\\"\",\n            \"id\": \"0e9c78fd-4b54-ed11-8c34-000d3a271c2d\",\n            \"itemNo\": \"C0000006\",\n            \"description\": \"CHULETÓN DE TERNERA\",\n            \"category\": \"020101\",\n            \"categoryDescription\": \"VACUNO\",\n            \"unitOfMeasure\": \"KG\",\n            \"unitCost\": 9,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-05-15T16:11:59.1Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTc4NjkzMDg1MTM4MzUzMDMwMTswMDsn\\\"\",\n            \"id\": \"2a6fbf20-3c5c-ed11-8c34-000d3a271c2d\",\n            \"itemNo\": \"C0000009\",\n            \"description\": \"LEJIA\",\n            \"category\": \"301\",\n            \"categoryDescription\": \"DROGUERÍA Y LIMPIEZA\",\n            \"unitOfMeasure\": \"L\",\n            \"unitCost\": 9,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-23T15:37:12.323Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI3OTM4NzgyMjkxMjE4MTEyMzQxOzAwOyc=\\\"\",\n            \"id\": \"f9a4dc72-233b-ed11-946f-000d3aa8ca9d\",\n            \"itemNo\": \"M0000003\",\n            \"description\": \"TOALLA SPA\",\n            \"category\": \"\",\n            \"categoryDescription\": \"\",\n            \"unitOfMeasure\": \"UD\",\n            \"unitCost\": 0,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MDM0MjkyOTk3NTg5ODUwMzQ5MTswMDsn\\\"\",\n            \"id\": \"3a64c98a-233b-ed11-946f-000d3aa8ca9d\",\n            \"itemNo\": \"M0000004\",\n            \"description\": \"LIMPIADOR FACIAL\",\n            \"category\": \"\",\n            \"categoryDescription\": \"\",\n            \"unitOfMeasure\": \"ML\",\n            \"unitCost\": 0,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE0MDYzNzgzMDUwNDQwMzg0MTIyMTswMDsn\\\"\",\n            \"id\": \"db81cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000003\",\n            \"description\": \"ENSALADA GOURMET 175GR\",\n            \"category\": \"020602\",\n            \"categoryDescription\": \"VERDURAS Y HORTALIZAS\",\n            \"unitOfMeasure\": \"PQ\",\n            \"unitCost\": 0.42,\n            \"blocked\": true,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2Njg3NTIyMDA3MTE3MDAwODkzMTswMDsn\\\"\",\n            \"id\": \"f181cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000005\",\n            \"description\": \"BETERRADA\",\n            \"category\": \"\",\n            \"categoryDescription\": \"\",\n            \"unitOfMeasure\": \"KG\",\n            \"unitCost\": 0.55,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEwNTAzNzAyODA2MDYxODM2MjQ5MTswMDsn\\\"\",\n            \"id\": \"0282cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000006\",\n            \"description\": \"CALABACIN\",\n            \"category\": \"020403\",\n            \"categoryDescription\": \"VERDURAS Y HORTALIZAS\",\n            \"unitOfMeasure\": \"KG\",\n            \"unitCost\": 0.75,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-23T15:36:39.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozc4NDc1MjM1MTE3MTkxMTMzMjYxOzAwOyc=\\\"\",\n            \"id\": \"6982cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000015\",\n            \"description\": \"FANTA\",\n            \"category\": \"010402\",\n            \"categoryDescription\": \"BEBIDAS REFRESCANTES\",\n            \"unitOfMeasure\": \"UD\",\n            \"unitCost\": 0.43,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.5Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE4MzU2NTM0MTYyNTAwOTAxNDM3MTswMDsn\\\"\",\n            \"id\": \"2b83cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000031\",\n            \"description\": \"TOMATE \",\n            \"category\": \"020403\",\n            \"categoryDescription\": \"VERDURAS Y HORTALIZAS\",\n            \"unitOfMeasure\": \"KG\",\n            \"unitCost\": 0.56,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-23T15:36:39.073Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3MTM0MzQ2MDkyNzgyMTU2MTIwMTswMDsn\\\"\",\n            \"id\": \"5983cf51-5f2f-ed11-97e8-00224882e1a5\",\n            \"itemNo\": \"PR0000035\",\n            \"description\": \"MOUSSE CHOCOLATE\",\n            \"category\": \"020502\",\n            \"categoryDescription\": \"POSTRES PREPARADOS\",\n            \"unitOfMeasure\": \"UD\",\n            \"unitCost\": 1.15,\n            \"blocked\": false,\n            \"synchronizedExternalPOS\": true,\n            \"systemModifiedAt\": \"2023-03-22T13:57:00.517Z\"\n        }\n    ]\n}"}],"_postman_id":"eb81a33b-8c6a-4dc5-b10a-93237b30dd8d"},{"name":"guestFolioCashCharge","id":"385a185b-d592-4fa8-887f-be5b4b6d1035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"sale\": \"{'hotelName':'Hotel Noray','roomNo':'104','DepartmentNo':'BAR RESTAURANTE','ticketNo':'V00066601','date':'2023-05-16','time':'10:44:00','payments':[{'paymentMethod':'VISA', 'itemCategoryNo':'010404','netAmount':'9.5','tipLine':'true'},{'paymentMethod':'CONTADO','itemCategoryNo':'010404','netAmount':'11.5','tipLine':'false'}]}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>(<Object ID>)/Microsoft.NAV.<action>","description":"<p>Request to insert a credit charge to a guest account<br />The body of the request must be 1 single value containing a plain text, the plain text must be in a format suitable to be treated as a Json as shown in the example</p>\n<p>If the parameter <code>hotelName</code> is empty then the functions will be performed in the active company to which the API calls are made.</p>\n<p>TipLine: The tip line should never stand alone in a sale, it should always be accompanied by a product or service sold to the consumer.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>(<Object ID>)","Microsoft.NAV.<action>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Cash collection line with sales data</p>\n","type":"text/plain"},"key":"sale","value":"String"},{"disabled":true,"description":{"content":"<p>Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"hotelName","value":"String"},{"disabled":true,"description":{"content":"<p>Identifier of the room where the guest is staying</p>\n","type":"text/plain"},"key":"roomNo","value":"String"},{"disabled":true,"description":{"content":"<p>identifier of the department from which the sale has been made</p>\n","type":"text/plain"},"key":"DepartmentNo","value":"String"},{"disabled":true,"description":{"content":"<p>sales ticket identifier</p>\n","type":"text/plain"},"key":"ticketNo","value":"String"},{"disabled":true,"description":{"content":"<p>(YYYY-MM-DD) date on which the sale was made</p>\n","type":"text/plain"},"key":"date","value":"String"},{"disabled":true,"description":{"content":"<p>(HH:MM:SS) time at which the sale was made</p>\n","type":"text/plain"},"key":"time","value":"String"},{"disabled":true,"description":{"content":"<p>number of products that have been collected on sale</p>\n","type":"text/plain"},"key":"payments","value":"String"},{"disabled":true,"description":{"content":"<p>number of the category to which the product belongs</p>\n","type":"text/plain"},"key":"itemCategoryNo","value":"String"},{"disabled":true,"description":{"content":"<p>(dots as decimal separator) net product value after tax &amp; after discount</p>\n","type":"text/plain"},"key":"netAmount","value":"String"},{"disabled":true,"description":{"content":"<p>(true or false) indicator if the line is a tip</p>\n","type":"text/plain"},"key":"tipLine","value":"String"}],"variable":[]}},"response":[{"id":"8fe07cc7-fb56-4995-8c6c-91880e6d6f35","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sale\": \"{'hotelName':'Hotel Noray','roomNo':'104','DepartmentNo':'BAR RESTAURANTE','ticketNo':'V00066601','date':'2023-05-16','time':'10:44:00','payments':[{'paymentMethod':'VISA', 'itemCategoryNo':'010404','netAmount':'9.5','tipLine':'false'},{'paymentMethod':'CONTADO','itemCategoryNo':'010404','netAmount':'11.5','tipLine':'false'},{'netAmount':'11.5','tipLine':'true'}]}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/guestFolios(8926750d-6a45-ed11-946f-000d3a25421c)/Microsoft.NAV.guestFolioCashCharge"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/guestFolios(8926750d-6a45-ed11-946f-000d3a25421c)"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"89ce8944-7e0e-c4e3-c529-418d53a77263"},{"key":"mise-correlation-id","value":"97a4f42f-95a0-4d9b-8831-42401686dac1"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"a8845ac3-a31e-4b05-a26d-ed7f2ac8464a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 19 May 2023 13:20:39 GMT"}],"cookie":[],"responseTime":null,"body":""},{"id":"63d5e5df-4aa3-4843-88ce-ddd82244db41","name":"TipLine Incorrect use","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sale\": \"{'hotelName':'Hotel Noray','roomNo':'104','DepartmentNo':'BAR RESTAURANTE','ticketNo':'V00066601','date':'2023-05-16','time':'10:44:00','payments':[{'netAmount':'11.5','tipLine':'true'}]}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/guestFolios(8926750d-6a45-ed11-946f-000d3a25421c)/Microsoft.NAV.guestFolioCashCharge"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/guestFolios(8926750d-6a45-ed11-946f-000d3a25421c)"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"89ce8944-7e0e-c4e3-c529-418d53a77263"},{"key":"mise-correlation-id","value":"97a4f42f-95a0-4d9b-8831-42401686dac1"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"a8845ac3-a31e-4b05-a26d-ed7f2ac8464a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 19 May 2023 13:20:39 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"385a185b-d592-4fa8-887f-be5b4b6d1035"},{"name":"guestFolioRoomCharge","id":"ab6fbf2b-1509-4b4d-bf06-07e761561188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sale\": \"{'hotelName':'Hotel Noray','roomNo':'102','DepartmentNo':'BAR RESTAURANTE','ticketNo':'V00077701','date':'2023-05-19','time':'08:44:00','ticketLines':[{'itemCategoryNo':'010404','netAmount':'2','tipLine':'false'},{'itemCategoryNo':'010404','netAmount':'0.96','tipLine':'false'}]}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>(<Object ID>)/Microsoft.NAV.<action>","description":"<p>Request to insert a room charge to a guest account<br />The body of the request must be 1 single value containing a plain text, the plain text must be in a format suitable to be treated as a Json as shown in the example</p>\n<p>If the parameter <code>hotelName</code> is empty then the functions will be performed in the active company to which the API calls are made.</p>\n<p>TipLine: The tip line should never stand alone in a sale, it should always be accompanied by a product or service sold to the consumer.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>(<Object ID>)","Microsoft.NAV.<action>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Cash collection line with sales data</p>\n","type":"text/plain"},"key":"sale","value":"String"},{"disabled":true,"description":{"content":"<p>Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"hotelName","value":"String"},{"disabled":true,"description":{"content":"<p>(Mandatory) Identifier of the room where the guest is staying</p>\n","type":"text/plain"},"key":"roomNo","value":"String"},{"disabled":true,"description":{"content":"<p>identifier of the department from which the sale has been made</p>\n","type":"text/plain"},"key":"DepartmentNo","value":"String"},{"disabled":true,"description":{"content":"<p>sales ticket identifier</p>\n","type":"text/plain"},"key":"ticketNo","value":"String"},{"disabled":true,"description":{"content":"<p>(YYYY-MM-DD) date on which the sale was made</p>\n","type":"text/plain"},"key":"date","value":"String"},{"disabled":true,"description":{"content":"<p>(HH:MM:SS) time at which the sale was made</p>\n","type":"text/plain"},"key":"time","value":"String"},{"disabled":true,"description":{"content":"<p>number of products that have been collected on sale</p>\n","type":"text/plain"},"key":"ticketLines","value":"String"},{"disabled":true,"description":{"content":"<p>number of the category to which the product belongs</p>\n","type":"text/plain"},"key":"itemCategoryNo","value":"String"},{"disabled":true,"description":{"content":"<p>(dots as decimal separator) net product value after tax &amp; after discount</p>\n","type":"text/plain"},"key":"netAmount","value":"String"},{"disabled":true,"description":{"content":"<p>(true or false) indicator if the line is a tip</p>\n","type":"text/plain"},"key":"tipLine","value":"String"}],"variable":[]}},"response":[{"id":"505756bf-6e7e-42a3-995f-fdf005ccdcfb","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"sale\": \"{'hotelName':'Hotel Noray','roomNo':'102','DepartmentNo':'BAR RESTAURANTE','ticketNo':'V00077701','date':'2023-05-19','time':'08:44:00','ticketLines':[{'itemCategoryNo':'010404','netAmount':'2','tipLine':'false'},{'itemCategoryNo':'010404','netAmount':'0.96','tipLine':'false'}]}\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/guestFolios(303445c4-0055-ed11-8c34-000d3a2716d1)/Microsoft.NAV.guestFolioRoomCharge"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Location","value":"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/guestFolios(303445c4-0055-ed11-8c34-000d3a2716d1)"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"0b19f516-41a6-9614-7b47-196f3003a8aa"},{"key":"mise-correlation-id","value":"9cf0f329-68a9-4dd3-9d20-de9213b77ff7"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"f8fdc36e-6e78-46d7-9beb-8f6eff143125"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 19 May 2023 08:29:18 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ab6fbf2b-1509-4b4d-bf06-07e761561188"},{"name":"getCreditGuestFolio","id":"03bb0759-e9f5-4bc2-9418-fcf89f0df308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNoValue\": \"RH0000007\",\r\n    \"roomNoValue\": \"103\",\r\n    \"hotelNameValue\": \"Pruebas Enlace REVO\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>(<Object ID>)/Microsoft.NAV.<action>","description":"<p>Function to obtain the credit invoice to make the guest credit charges</p>\n<p>If the parameter <code>hotelName</code> is empty then the functions will be performed in the active company to which the API calls are made.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>(<Object ID>)","Microsoft.NAV.<action>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>guest reservation identifier</p>\n","type":"text/plain"},"key":"bookingNoValue","value":"String"},{"disabled":true,"description":{"content":"<p>Identifier of the room where the guest is staying</p>\n","type":"text/plain"},"key":"roomNoValue","value":"String"},{"disabled":true,"description":{"content":"<p>Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"hotelNameValue","value":"String"}],"variable":[]}},"response":[{"id":"570b81a8-b703-452d-8d5e-541a14126b82","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"bookingNoValue\": \"RH0000007\",\r\n    \"roomNoValue\": \"103\",\r\n    \"hotelNameValue\": \"Hotel Noray\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/guestFolios(b30e8d35-4c45-ed11-946f-000d3a25421c)/Microsoft.NAV.getCreditGuestFolio"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"371122a3-6134-bb3d-ae51-c96847a0984b"},{"key":"mise-correlation-id","value":"0ee98cec-f007-4ef1-a57a-5e1f92ce2fe9"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"3d0d34cc-5c94-48bf-ac4d-69ec9c6f9b71"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Fri, 19 May 2023 13:22:35 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#Edm.String\",\n    \"value\": \"CH0000005\"\n}"}],"_postman_id":"03bb0759-e9f5-4bc2-9418-fcf89f0df308"},{"name":"guestFolios","id":"dd2beae5-6984-4cb7-a6ad-2ac5e765f622","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/<API publisher>/<API group>/<API version>/companies(<Company ID>)/<method>","description":"<p>Returns the list of open guest accounts to be paid by guest</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environment name>","api","<API publisher>","<API group>","<API version>","companies(<Company ID>)","<method>"],"host":["api","businesscentral","dynamics","com"],"query":[{"disabled":true,"description":{"content":"<p>Description</p>\n","type":"text/plain"},"key":"Field","value":"Type"},{"disabled":true,"description":{"content":"<p>Unique object identifier</p>\n","type":"text/plain"},"key":"id","value":"String"},{"disabled":true,"description":{"content":"<p>guest account identifier</p>\n","type":"text/plain"},"key":"no","value":"String"},{"disabled":true,"description":{"content":"<p>Identifier of the room where the guest is staying</p>\n","type":"text/plain"},"key":"roomNo","value":"String"},{"disabled":true,"description":{"content":"<p>guest reservation identifier</p>\n","type":"text/plain"},"key":"bookingNo","value":"String"},{"disabled":true,"description":{"content":"<p>identifier of the customer in the reservation</p>\n","type":"text/plain"},"key":"bookingCustomerNo","value":"String"},{"disabled":true,"description":{"content":"<p>identificador of the customer un the guest account</p>\n","type":"text/plain"},"key":"customerNo","value":"String"},{"disabled":true,"description":{"content":"<p>Name of the company where the data is stored</p>\n","type":"text/plain"},"key":"hotelName","value":"String"}],"variable":[]}},"response":[{"id":"00b9106f-34d4-46de-9212-49987684cd34","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/8ads3fe2-b974-47ca-bs14-c939f3272556/NorayInstance/api/noray/norayhtlPOS/v1.0/companies(ca23461r-43g2-ew51-9f31-5075kt00ws10)/guestFolios"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal; odata.streaming=true"},{"key":"Content-Encoding","value":"br"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Authorization"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"ms-correlation-x","value":"28aaf166-e44b-7db5-7581-9e2e689e0a70"},{"key":"mise-correlation-id","value":"712337c0-effa-4f38-b825-f292907047bd"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"Access-Control-Expose-Headers","value":"ms-correlation-x"},{"key":"request-id","value":"76ff6305-2909-453a-9dfb-c4cc7997e90a"},{"key":"x-content-type-options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"Date","value":"Wed, 17 May 2023 15:56:49 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/8adc3ee6-b964-44ca-bb94-c939fd272c56/NorayHTLSandbox/api/noray/norayhtlPOS/v1.0/$metadata#companies(ca12877d-42a9-ed11-9a88-6045bd88ba10)/guestFolios\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzExMTE5MTc3NDQyMTc1NDU1NDExOzAwOyc=\\\"\",\n            \"id\": \"b30e8d35-4c45-ed11-946f-000d3a25421c\",\n            \"no\": \"CH0000001\",\n            \"roomNo\": \"206\",\n            \"bookingNo\": \"RH0000002\",\n            \"bookingCustomerNo\": \"CL0000007\",\n            \"customerNo\": \"CL0000007\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzEzMDgxOTMzNTg2NDQ5MjU2OTk0MTswMDsn\\\"\",\n            \"id\": \"8926750d-6a45-ed11-946f-000d3a25421c\",\n            \"no\": \"CH0000004\",\n            \"roomNo\": \"104\",\n            \"bookingNo\": \"RH0000006\",\n            \"bookingCustomerNo\": \"9999997\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzI4MjU4NjcyNDcyMTc1MDUwNDMxOzAwOyc=\\\"\",\n            \"id\": \"303445c4-0055-ed11-8c34-000d3a2716d1\",\n            \"no\": \"CH0000007\",\n            \"roomNo\": \"102\",\n            \"bookingNo\": \"RH0000003\",\n            \"bookingCustomerNo\": \"CL0000007\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3MDIwNjQzOTYxNDEzMjI4MDUxOzAwOyc=\\\"\",\n            \"id\": \"c76b5061-0355-ed11-8c34-000d3a2716d1\",\n            \"no\": \"CH0000008\",\n            \"roomNo\": \"TPV\",\n            \"bookingNo\": \"\",\n            \"bookingCustomerNo\": \"\",\n            \"customerNo\": \"TPV2\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzU1MTY2MTYxNjEzMjE2MDEwNzAxOzAwOyc=\\\"\",\n            \"id\": \"05221ebc-6a45-ed11-946f-000d3aa8c4e6\",\n            \"no\": \"CH0000005\",\n            \"roomNo\": \"103\",\n            \"bookingNo\": \"RH0000007\",\n            \"bookingCustomerNo\": \"9999997\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE3NTE4NDExMTU4MjAzODc5OTI2MTswMDsn\\\"\",\n            \"id\": \"ac3814cf-0160-ed11-8c34-000d3aab50ed\",\n            \"no\": \"CH0000009\",\n            \"roomNo\": \"102\",\n            \"bookingNo\": \"RH0000003\",\n            \"bookingCustomerNo\": \"CL0000007\",\n            \"customerNo\": \"9999999\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5OzE3NjE5NTYxOTEwNDAxNjk5MTgxOzAwOyc=\\\"\",\n            \"id\": \"02453b70-0960-ed11-8c34-000d3aab50ed\",\n            \"no\": \"CH0000010\",\n            \"roomNo\": \"302\",\n            \"bookingNo\": \"RH0000004\",\n            \"bookingCustomerNo\": \"\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzE5Ozg3NTk2ODczNDE1ODAzOTIzMTQxOzAwOyc=\\\"\",\n            \"id\": \"60fba73e-70df-ed11-a7c7-00224888bc9c\",\n            \"no\": \"CH0000011\",\n            \"roomNo\": \"FIC\",\n            \"bookingNo\": \"\",\n            \"bookingCustomerNo\": \"\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzIwOzE2MjMzODE5OTE4NjQ0NDE0MjYxMTswMDsn\\\"\",\n            \"id\": \"d360ff49-73df-ed11-a7c7-00224888bc9c\",\n            \"no\": \"CH0000012\",\n            \"roomNo\": \"FIC\",\n            \"bookingNo\": \"\",\n            \"bookingCustomerNo\": \"\",\n            \"customerNo\": \"9999997\",\n            \"hotelName\": \"Pruebas Enlace REVO\"\n        }\n    ]\n}"}],"_postman_id":"dd2beae5-6984-4cb7-a6ad-2ac5e765f622"}],"id":"1becf85b-06c1-471a-ae17-73a9d5b80e9e","_postman_id":"1becf85b-06c1-471a-ae17-73a9d5b80e9e","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"sales","item":[{"name":"posSalesHeaders","id":"8f0707cb-f820-40ef-a984-9155334707b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sales/v1.0/companies(<companyID>)/posSalesHeaders","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","sales","v1.0","companies(<companyID>)","posSalesHeaders"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"8f56c1ac-b103-40d0-9d0c-9273af0297eb","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sales/v1.0/companies(<companyID>)/posSalesHeaders"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/posSalesHeaders\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzExNzI4OTY3MTI5Mjk5NDA4MjgxMTswMDsn\\\"\",\r\n            \"id\": \"844148cf-9c4e-ed11-bde8-000d3aaeb35a\",\r\n            \"customerNo\": \"TPV-GLF\",\r\n            \"amount\": 2.8,\r\n            \"amountIncludingVAT\": 3,\r\n            \"assignedUserID\": \"\",\r\n            \"bookingNo\": \"\",\r\n            \"companySource\": \"\",\r\n            \"currencyNo\": \"\",\r\n            \"customerName\": \"Ventas Golf\",\r\n            \"date\": \"2021-04-18\",\r\n            \"departmentNo\": \"GOLF\",\r\n            \"diners\": 0,\r\n            \"draft\": false,\r\n            \"externalDocumentNo\": \"VF0010603\",\r\n            \"hotelSalePOSHTL\": \"\",\r\n            \"internalCharge\": \"TTC04\",\r\n            \"invoiceDiscountAmount\": 0,\r\n            \"invoiceDiscountCalculation\": \"Amount\",\r\n            \"invoiceDiscountValue\": 0,\r\n            \"locationNo\": \"\",\r\n            \"paymentDescription\": \"CUENTA CASA\",\r\n            \"paymentDiscountPerc\": 0,\r\n            \"paymentMethod\": \"CCASA\",\r\n            \"paymentMethodNo\": \"CONTADO H\",\r\n            \"paymentTermsNo\": \"0 DIAS\",\r\n            \"paymentType\": \"Internal Charge\",\r\n            \"postedIssue\": \"\",\r\n            \"postingDate\": \"2021-04-19\",\r\n            \"pricesIncludingVAT\": true,\r\n            \"reference\": \"\",\r\n            \"roomNo\": \"\",\r\n            \"sale\": true,\r\n            \"salesNo\": \"TPVGOL0000001\",\r\n            \"salesPOSCreatedInCentral\": false,\r\n            \"salespersonNo\": \"13\",\r\n            \"session\": 10000,\r\n            \"sign\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"status\": \"Open\",\r\n            \"tableNo\": \"\",\r\n            \"terminal\": \"ABEQTPVGOLF\",\r\n            \"time\": \"10:37:15.16\",\r\n            \"totalDiscountPorc\": 0,\r\n            \"totalDividedBy\": 0,\r\n            \"totalLineAmount\": 3,\r\n            \"totalLineAmountInclVAT\": 0,\r\n            \"typeOfDiners\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzEzOTYxOTQ3MTc3NzgxNjY1MjI5MTswMDsn\\\"\",\r\n            \"id\": \"694148cf-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"customerNo\": \"TPV-GLF\",\r\n            \"amount\": 350.47,\r\n            \"amountIncludingVAT\": 375,\r\n            \"assignedUserID\": \"\",\r\n            \"bookingNo\": \"\",\r\n            \"companySource\": \"\",\r\n            \"currencyNo\": \"\",\r\n            \"customerName\": \"Ventas Golf\",\r\n            \"date\": \"2021-04-19\",\r\n            \"departmentNo\": \"GOLF\",\r\n            \"diners\": 0,\r\n            \"draft\": false,\r\n            \"externalDocumentNo\": \"VF0010636\",\r\n            \"hotelSalePOSHTL\": \"\",\r\n            \"internalCharge\": \"TTC04\",\r\n            \"invoiceDiscountAmount\": 0,\r\n            \"invoiceDiscountCalculation\": \"Amount\",\r\n            \"invoiceDiscountValue\": 0,\r\n            \"locationNo\": \"\",\r\n            \"paymentDescription\": \"CUENTA CASA\",\r\n            \"paymentDiscountPerc\": 0,\r\n            \"paymentMethod\": \"CCASA\",\r\n            \"paymentMethodNo\": \"CONTADO H\",\r\n            \"paymentTermsNo\": \"0 DIAS\",\r\n            \"paymentType\": \"Internal Charge\",\r\n            \"postedIssue\": \"\",\r\n            \"postingDate\": \"2021-04-19\",\r\n            \"pricesIncludingVAT\": true,\r\n            \"reference\": \"\",\r\n            \"roomNo\": \"\",\r\n            \"sale\": true,\r\n            \"salesNo\": \"TPVGOL0000006\",\r\n            \"salesPOSCreatedInCentral\": false,\r\n            \"salespersonNo\": \"13\",\r\n            \"session\": 10000,\r\n            \"sign\": \"00000000-0000-0000-0000-000000000000\",\r\n            \"status\": \"Open\",\r\n            \"tableNo\": \"\",\r\n            \"terminal\": \"ABEQTPVGOLF\",\r\n            \"time\": \"12:17:46.013\",\r\n            \"totalDiscountPorc\": 0,\r\n            \"totalDividedBy\": 0,\r\n            \"totalLineAmount\": 375,\r\n            \"totalLineAmountInclVAT\": 0,\r\n            \"typeOfDiners\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"8f0707cb-f820-40ef-a984-9155334707b6"},{"name":"posSalesLines","id":"e5f97c03-5fad-4769-a7c5-228915c1ee53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sales/v1.0/companies(<companyID>)/posSalesLines","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","<tenant>","<environmentName>","api","<api publisher>","sales","v1.0","companies(<companyID>)","posSalesLines"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"a98afc69-b8a4-454d-a9f6-1b87b3208c5a","name":"200","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environmentName>/api/<api publisher>/sales/v1.0/companies(<companyID>)/posSalesLines"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"@odata.context\": \"https://api.businesscentral.dynamics.com/v2.0/<tenant>/<environment name>/api/noray/<api group>/<api version>/$metadata#companies(<company id>)/posSalesLines\",\r\n    \"value\": [\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzE5OzQ1ODQzMTUxMzk2OTA4ODM4NTQxOzAwOyc=\\\"\",\r\n            \"id\": \"9ea60dce-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"amount\": 2.8,\r\n            \"amountIncludingVAT\": 3,\r\n            \"currencyNo\": \"\",\r\n            \"description\": \"PROSHOP VARIOS\",\r\n            \"invDiscountAmount\": 0,\r\n            \"itemCategoryNo\": \"ZGPR01\",\r\n            \"itemNo\": \"V0000864\",\r\n            \"lineAmount\": 3,\r\n            \"lineAmountIncludingVAT\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"lineDiscountPerc\": 0,\r\n            \"lineInUse\": true,\r\n            \"lineNo\": 10000,\r\n            \"quantity\": 1,\r\n            \"salesNo\": \"TPVGOL0000001\",\r\n            \"taxGroupNo\": \"\",\r\n            \"unitCost\": 0,\r\n            \"unitOfMeasure\": \"\",\r\n            \"unitOfMeasureNo\": \"\",\r\n            \"unitPrice\": 3,\r\n            \"vatBaseAmount\": 2.8,\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatDifference\": 0,\r\n            \"vatIdentifier\": \"IGIC-GEN\",\r\n            \"vatPerc\": 7,\r\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\r\n            \"variantCode\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzExNjkwMjcyNTYyNjU2NTEzNDI0MTswMDsn\\\"\",\r\n            \"id\": \"9fa60dce-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"amount\": 420.56,\r\n            \"amountIncludingVAT\": 450,\r\n            \"currencyNo\": \"\",\r\n            \"description\": \"GF 18H INVIERNO\",\r\n            \"invDiscountAmount\": 0,\r\n            \"itemCategoryNo\": \"ZGGF01\",\r\n            \"itemNo\": \"V0000820\",\r\n            \"lineAmount\": 450,\r\n            \"lineAmountIncludingVAT\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"lineDiscountPerc\": 0,\r\n            \"lineInUse\": true,\r\n            \"lineNo\": 10000,\r\n            \"quantity\": 3,\r\n            \"salesNo\": \"TPVGOL0000003\",\r\n            \"taxGroupNo\": \"\",\r\n            \"unitCost\": 0,\r\n            \"unitOfMeasure\": \"UNIDAD\",\r\n            \"unitOfMeasureNo\": \"UD\",\r\n            \"unitPrice\": 150,\r\n            \"vatBaseAmount\": 420.56,\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatDifference\": 0,\r\n            \"vatIdentifier\": \"IGIC-GEN\",\r\n            \"vatPerc\": 7,\r\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\r\n            \"variantCode\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        },\r\n        {\r\n            \"@odata.etag\": \"W/\\\"JzIwOzExOTMxMzI2NTM1NTAxODQ4MzYxMTswMDsn\\\"\",\r\n            \"id\": \"a0a60dce-9c4e-ed11-bde8-000d3aaeb76a\",\r\n            \"amount\": -420.56,\r\n            \"amountIncludingVAT\": -450,\r\n            \"currencyNo\": \"\",\r\n            \"description\": \"GF 18H INVIERNO\",\r\n            \"invDiscountAmount\": 0,\r\n            \"itemCategoryNo\": \"ZGGF01\",\r\n            \"itemNo\": \"V0000820\",\r\n            \"lineAmount\": -450,\r\n            \"lineAmountIncludingVAT\": 0,\r\n            \"lineDiscountAmount\": 0,\r\n            \"lineDiscountPerc\": 0,\r\n            \"lineInUse\": true,\r\n            \"lineNo\": 10000,\r\n            \"quantity\": -3,\r\n            \"salesNo\": \"TPVGOL0000004\",\r\n            \"taxGroupNo\": \"\",\r\n            \"unitCost\": 0,\r\n            \"unitOfMeasure\": \"UNIDAD\",\r\n            \"unitOfMeasureNo\": \"UD\",\r\n            \"unitPrice\": 150,\r\n            \"vatBaseAmount\": -420.56,\r\n            \"vatBusPostingGroup\": \"CANARIAS\",\r\n            \"vatDifference\": 0,\r\n            \"vatIdentifier\": \"IGIC-GEN\",\r\n            \"vatPerc\": 7,\r\n            \"vatProdPostingGroup\": \"IGIC-GEN\",\r\n            \"variantCode\": \"\",\r\n            \"lastModifiedDateTime\": \"0001-01-01T00:00:00Z\"\r\n        }\r\n    ]\r\n}"}],"_postman_id":"e5f97c03-5fad-4769-a7c5-228915c1ee53"}],"id":"c1dddc2e-3b7c-4fd9-8611-1b6eb5922246","_postman_id":"c1dddc2e-3b7c-4fd9-8611-1b6eb5922246","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"c6da76c2-447f-49a0-a1e8-23f83919a113","description":"<p>The API offers a specific set of functionalities related to Noray Htl: POS, such as posting charges to guest accounts.</p>\n","_postman_id":"c6da76c2-447f-49a0-a1e8-23f83919a113","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Webhooks","item":[{"name":"How to use them","item":[],"id":"5575fb82-43db-48a9-abbe-81ea6ddb9a44","description":"<p>Although Business Central has integrated <strong>Webhooks</strong> natively, this does not mean that you do not have to prepare the ground for them to work.</p>\n<p>To use them, you need to subscribe to the desired <strong>Webhook</strong> along with a URL that can handle what is received from the <strong>Webhook</strong>.</p>\n<h3 id=\"how-do-i-find-the-webhooks\">How do i find the Webhooks?</h3>\n<p>To find out which <strong>Webhook</strong> you can subscribe to, you must make the following GET request to Business Central:</p>\n<p><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7BenvironmentName%7D%7D/api/microsoft/runtime/beta/companies(%7B%7BcompanyId%7D%7D)/webhookSupportedResources\">https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/microsoft/runtime/beta/companies({companyId})/webhookSupportedResources</a></p>\n<p>The following image shows the result it should give us:</p>\n<img src=\"https://content.pstmn.io/85e923f8-81d8-407a-9fe6-54be2885f145/aW1hZ2UucG5n\" width=\"886\" height=\"286\" />\n\n<p>In these results you can see all the Webhooks available in Business Central.</p>\n<p>It is possible to filter them in case we only want to connect to Webhooks of our Custom API, we only need to put this at the end of the URL: <strong>$filter=resource eq 'noray*'</strong></p>\n<img src=\"https://content.pstmn.io/1e2c2947-170b-4c03-82da-ff2f9cc5c667/aW1hZ2UucG5n\" width=\"886\" height=\"288\" />\n\n<h3 id=\"how-to-subscribe-to-a-webhook\">How to subscribe to a Webhook</h3>\n<p>Once we get the results and get the desired Webhook, we must send a POST request to the subscriptions.<br />The Microsoft documentation will inform you that the URL would be the following:</p>\n<p><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7BenvironmentName%7D%7D/api/v2.0/subscriptions\">https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/subscriptions</a></p>\n<p>But that URL only works for Webhooks of the standard that are version 2.0.</p>\n<p>The correct URL for our API would be the following:</p>\n<p><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7BenvironmentName%7D%7D/api/%7B%7BAPIPublisher%7D%7D/%7B%7BAPIGroup%7D%7D/%7B%7BAPIVersion%7D%7D/subscriptions\">https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/subscriptions</a></p>\n<p>These variables are found in the API page you want to subscribe to.<br />The POST must have the following body:</p>\n<img src=\"https://content.pstmn.io/069584c0-7c14-4437-ba1a-21b895fa3a30/aW1hZ2UucG5n\" alt height=\"95\" width=\"1203\" />\n\n<p>{<br />\"notificationUrl\": \"URL that can manage Webhooks\",</p>\n<p>\"resource\":\"/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/companies(companyId)/{{EntitySetName}} \",<br />\"clientState\": \"This field is optional, it is used so that if the URL that manages Webhooks receives something that is not equal to what was entered in this field does not accept it, but only if the URL that manages it has a verifier for it.\"<br />}</p>\n<p>The URL that is added in notification URL has to return to business central as a response status 200 and the validationToken that sends the Webhook, in case it does not do it Business Central will assume that the URL cannot manage the request and will not allow to subscribe.</p>\n<p>The URL must be Https and cannot be a localhost unless the Business Central is installed On-Premise and is on the same network as the URL being called.</p>\n<h3 id=\"check-subscriptions\">Check Subscriptions</h3>\n<p>To see which Webhooks you are subscribed to, you must make a GET request to the same URL you subscribe to:<br /><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7BenvironmentName%7D%7D/api/%7B%7BAPIPublisher%7D%7D/%7B%7BAPIGroup%7D%7D/%7B%7BAPIVersion%7D%7D/subscriptions\">https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/subscriptions</a></p>\n<h3 id=\"subscription-renewal\">Subscription Renewal</h3>\n<p>Subscriptions to Webhooks last for three days, to renew them you must make a PATCH request with the same body as when subscribing and specifying in the URL the subscription ID between single quotes ‘’:<br /><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7BenvironmentName%7D%7D/api/%7B%7BAPIPublisher%7D%7D/%7B%7BAPIGroup%7D%7D/%7B%7BAPIVersion%7D%7D/subscriptions('subscriptionId')\">https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/subscriptions('subscriptionId')</a></p>\n<p>As it is the same body in case you need it, you only need to look at how to get it, keep in mind that you can edit that body in the patch to, for example, change the notification URL or the clientState in case you are looking for another secret key different from the existing one or add one that did not exist.<br />You have to be careful because if in the resource you subscribe to an API, for example bookings, and I the patch to edit that subscription instead of bookings you put guest, the subscription would renew the expiration date but you would no longer be subscribed to bookings but to guest.</p>\n<h3 id=\"unsubscribe\">Unsubscribe</h3>\n<p>To stop receiving notifications from specific Webhook, a DELETE request must be made to the same URL as in the renewal. In this request, nothing needs to be added to the body.<br />When the deletion is done, the response will not send any data.</p>\n<p>For the PATCH and DELETE request the following headers are mandatory:</p>\n<p>Key: Content-Type       Value : application/json<br />Key: If-Match            Value: *</p>\n<img src=\"https://content.pstmn.io/11d07494-b35d-4526-b1d2-33ccb70a96a8/aW1hZ2UucG5n\" width=\"862\" height=\"99\" />\n\n<h3 id=\"webhook-notification\">Webhook Notification</h3>\n<p>When notifying any change in the subscribed tables, the Webhooks with a 30 seconds delay will send the following:<br />{<br />\"value\": [<br />{<br />\"subscriptionId\": \"28ced1483e784596bcbe61afc389d84b\",<br />\"expirationDateTime\": \"2023-09-02T10:16:37Z\",<br />\"resource\":\"/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/companies(companyId)/{{EntitySetName}}(1b4e02fa-1f47-ee11-8736-48e7da0f2437)\",<br />\"changeType\": \"created\",<br />\"lastModifiedDateTime\": \"2023-08-30T10:28:36.91Z\"<br />},<br />{<br />\"subscriptionId\": \"3032ca9d5e9f4b6a922ff68d38063edc \",<br />\"clientState\": \"optionalValueOf2048\",<br />\"expirationDateTime\": \"2018-10-20T10:55:01Z\",<br />\"resource\":\"/api/{{APIPublisher}}/{{APIGroup}}/{{APIVersion}}/companies(companyId)/{{EntitySetName}}(1f4e02fa-1f47-ee11-8736-48e7da0f2437)?$filter=lastDateTimeModified gt 2018-10-15T11:00:00Z\", \"changeType\": \"collection\",<br />\"lastModifiedDateTime\": \"2018-10-26T12:54:30.503Z\",<br />}<br />]<br />}</p>\n<p>The URL given in resource is the one that must be accessed as a client to obtain the new data.<br />The variable changeType determines which action has been performed. In case of collection, which happens when a lot of data has been inserted/modified/deleted, it will put a filter in the resource URL so that the changes can be located.</p>\n","_postman_id":"5575fb82-43db-48a9-abbe-81ea6ddb9a44","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"To be taken into account","item":[],"id":"8c9e2466-88c0-4346-8219-a44b7dd1abb5","description":"<h3 id=\"filters\">Filters:</h3>\n<p>Normally the Webhooks have filters so that the information of all the modifications that are made is not sent, unfortunately Business Central has not implemented the function, so until they implement it in the future, the client will have to manage the information according to their needs.</p>\n","_postman_id":"8c9e2466-88c0-4346-8219-a44b7dd1abb5","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"615d7d79-e767-4629-ad2d-ecf4c19d11d1","description":"<h3 id=\"what-are-webhooks\">What are Webhooks?</h3>\n<p>A <strong>Webhook</strong>, or reverse API, is an<br />automatic communication system that Works through HTTP requests and allows the exchange of data between web applications, or between web applications and websites, in real time.</p>\n<p><strong>Webhooks</strong> act as a hooks on the web that trigger alerts or notifications on a given evento in other systems that are linked or subscribed to.</p>\n<h3 id=\"requirements\">Requirements</h3>\n<p>Do I need to configure anything in businesscentral to be able to use <strong>Webhooks</strong>?</p>\n<p>No, Business Central has the integration for both standard API and Custom API.</p>\n<h3 id=\"documentation\">Documentation</h3>\n<p>Documentation of Microsoft Webhooks: <a href=\"https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/api-reference/v2.0/dynamics-subscriptions\">Business Central Webhooks</a></p>\n","_postman_id":"615d7d79-e767-4629-ad2d-ecf4c19d11d1","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Frequently Asked Questions","item":[{"name":"What is the value of the companyId?","item":[],"id":"62aadb39-5378-4d59-b96d-a08d46a9db5d","description":"<p>The companyId is the unique identifier of each company (hotel) within a Dynamics 365 Business Central tenant. To get a list of the different companyIds associated with a tenant, you need to make an HTTP GET call. The complete documentation on this endpoint is available at the following link:<br />Official Microsoft Documentation</p>\n<p>Request URL Example</p>\n<p><a href=\"https://api.businesscentral.dynamics.com/v2.0/%7B%7Btenant%7D%7D/%7B%7Benvironmentname%7D%7D/api/v2.0/companies\">https://api.businesscentral.dynamics.com/v2.0/{{tenantId}}/{environmentName}/api/v2.0/companies</a></p>\n<p>Notes:</p>\n<ul>\n<li><p>Replace {tenant} with the tenantId provided by your client.</p>\n</li>\n<li><p>Replace {environmentName} with the environmentNameprovided by your client.</p>\n</li>\n<li><p>ApiPublisher is not required on calls provided by Business Central 365.</p>\n</li>\n</ul>\n","_postman_id":"62aadb39-5378-4d59-b96d-a08d46a9db5d","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"What is the value of the apipublisher?","item":[],"id":"3fdcd6b0-3497-4eb3-ae7e-3ab9c25a439d","description":"<h2 id=\"what-is-the-value-of-the-apipublisher\"><strong>What is the value of the apipublisher?</strong></h2>\n<p>The ones who created and published the api were us, Noray, so the api publisher is noray.</p>\n","_postman_id":"3fdcd6b0-3497-4eb3-ae7e-3ab9c25a439d","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"When i do a request, how can i know the company of the results?","item":[],"id":"153f92cf-41b5-4edd-8294-67f34e3de8b9","description":"<p>When you add the companies(System ID of the selected company) in the url, all the results will be only the values that comes from that company.</p>\n","_postman_id":"153f92cf-41b5-4edd-8294-67f34e3de8b9","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Do i need to fill every field in a PATCH to change only one or two of them?","item":[],"id":"646718a5-ecd5-4c50-a566-114242518bbc","description":"<p>No, you just need to add in the body the fields that will change in a PATCH, for example in PATCH guests if i want to change the email i will fill the body like this:</p>\n<p>{</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"email\": \"emailtochange@email.com\"\n\n</code></pre><p>}<br />And with that only the email will change.</p>\n","_postman_id":"646718a5-ecd5-4c50-a566-114242518bbc","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"How can i use the parameters Client ID, Client Secret, Scope that you sent to me?","item":[],"id":"6e406d6c-8faa-4192-bef9-1564ab277e8f","description":"<p>In Postman you should go to the API folder, Authorization:</p>\n<img src=\"https://content.pstmn.io/c6cfd923-7a2b-48c5-816f-efa97dac90c4/aW1hZ2UucG5n\" width=\"848\" height=\"102\" />\n\n<p>Then you will see Type, you should mark OAuth 2.0</p>\n<img src=\"https://content.pstmn.io/0a995e3c-b387-4f0a-a5cc-a4da00b9244a/aW1hZ2UucG5n\" width=\"640\" height=\"169\" />\n\n<p>After that we need to reach the Configure New Token section in Authorization:</p>\n<img src=\"https://content.pstmn.io/bab8933e-570a-47c8-8133-b76bed71fbb8/aW1hZ2UucG5n\" width=\"551\" height=\"376\" />\n\n<p>And fill the values according to what we sent to you. In case of not having the Access Token URL it should be <a href=\"https://login.microsoftonline.com/TenantID/oauth2/v2.0/token\">https://login.microsoftonline.com/TenantID/oauth2/v2.0/token</a></p>\n<p>Before proceding to the token generation we recommend to press save:</p>\n<img src=\"https://content.pstmn.io/836bd721-1fa4-4831-98f4-40a6a1a2d780/aW1hZ2UucG5n\" width=\"1003\" height=\"55\" />\n\n<p>Once we have every field filled, we need to use the Get New Access Token button:</p>\n<img src=\"https://content.pstmn.io/271d6fea-086f-464a-bba6-e8a7d7cd0206/aW1hZ2UucG5n\" width=\"416\" height=\"180\" />\n\n<p>When we press the button it will load for a few seconds and then the token that we need to use will be available:</p>\n<img src=\"https://content.pstmn.io/f642398e-add1-4ae2-bd10-bf4d119105f5/aW1hZ2UucG5n\" width=\"413\" height=\"285\" />\n\n<p>Once we see that, we press the Proceed button and it will redirect us to the token management windows, where we can set a name to the token:</p>\n<img src=\"https://content.pstmn.io/2983f486-9f4f-4cea-b8e6-3d76d9def7bf/aW1hZ2UucG5n\" width=\"744\" height=\"297\" />\n\n<p>When we press the Use Token Button, the new token will be set in the authorization as the selected token to use.</p>\n<p>The token will expire in approximately 30 minutes. When it occurs we just need to do the same process, press the Get New Access Token button and generate a new token.</p>\n","_postman_id":"6e406d6c-8faa-4192-bef9-1564ab277e8f","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"The filter is returning error when i introduce valid values.","item":[],"id":"9a4e3da2-5bee-4d69-86c0-0179eed6188f","description":"<p>When the url have filters applied, the data can vary from string to integer/date/..., so we need to filter accordingly to the type of values that we are searching.</p>\n<p>If we want to filter a Code/String, we should use the ' ' so the url should look like this: /bookings?$filter=no eq 'PR000013'</p>\n<p>But the criteria changes if we are looking for another type of value like arrivalDate, that is a Date type field.</p>\n<p>If we want to search for an integer/decimal/date field, we must avoid the use of the ' ' so the url should be like this /bookings?$filter=no eq 2022-09-01.</p>\n","_postman_id":"9a4e3da2-5bee-4d69-86c0-0179eed6188f","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"I have a lot of results but i am missing data","item":[],"id":"e54c3a0f-d847-455b-87ce-9128552a7759","description":"<p>There is a limit of results in the api of 5000 table rows, so at the end of the call there is a field called @odata.nextLink that attaches in a URL continuation of the results:</p>\n<img src=\"https://content.pstmn.io/324564be-251c-4cb1-bb42-5b51885aacc9/aW1hZ2UucG5n\" width=\"1626\" height=\"72\" />","_postman_id":"e54c3a0f-d847-455b-87ce-9128552a7759","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"78587cfd-6a33-4508-a7c8-8e50696a2518","_postman_id":"78587cfd-6a33-4508-a7c8-8e50696a2518","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Differences between SaaS and On-Premise","item":[{"name":"URL","item":[],"id":"28c57bf5-7d2e-4528-8865-d00066520402","description":"<p>The URL is determined by the business central installation<br />The SaaS URL looks like this: <a href=\"https://api.businesscentral.dynamics.com/v2.0/tenant/environmentName/api/apiPublisher/entityName/apiVersion/companies(companyID)/endpoint\">https://api.businesscentral.dynamics.com/v2.0/tenant/environmentName/api/apiPublisher/entityName/apiVersion/companies(companyID)/endpoint</a></p>\n<p>The On-Premise URL looks like this:<br />http://&lt; IP &gt;:&lt; Port &gt;/&lt; Business central version &gt;/api/apiPublisher/entityName/apiVersion/companies(companyID)/endpoint</p>\n<p>The On-Premise URL could be Http or Https</p>\n","_postman_id":"28c57bf5-7d2e-4528-8865-d00066520402","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Authentication","item":[],"id":"66bb7410-93ad-4db5-86ca-9476b746d769","description":"<p>In SaaS the mandatory authentication is OAuth 2.0, that requires secret id and client secret to generate an Oauth token that is used afterwards to make the api calls.<br />On-Premise can use OAuth and our intention is to convince our On-Premise clients to use that before Microsoft forces then to do so. But if the user doesnt have configured the OAuth credentials, On-Premise accepts Basic authentication to make the api calls.</p>\n","_postman_id":"66bb7410-93ad-4db5-86ca-9476b746d769","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"5ac03554-b475-45fe-be06-8eaf5eac2f16","description":"<p>There are two differences between both business central instalations, the URL and the Authentication</p>\n","_postman_id":"5ac03554-b475-45fe-be06-8eaf5eac2f16","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Where is the documentation for the standard API?","item":[],"id":"a21c220b-a2bb-4dc5-8095-3953d53e3f43","description":"<p>Here you can learn the standar api:  </p>\n<p><a href=\"https://learn.microsoft.com/es-es/dynamics365/business-central/dev-itpro/api-reference/v2.0/\">https://learn.microsoft.com/es-es/dynamics365/business-central/dev-itpro/api-reference/v2.0/</a></p>\n","_postman_id":"a21c220b-a2bb-4dc5-8095-3953d53e3f43","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}},{"name":"Noray Htl: TimeSharing","item":[{"name":"Timesharing","item":[{"name":"Interval","id":"fc0a4961-8a3e-484b-a907-776630c3bf8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/interval","description":"<p>Represents the intervals (or timeshare units) available in the system. Each interval corresponds to a time-based ownership or reservation block. This entity includes details about the unit, status, and other characteristics. It also exposes a sub-entity: <strong>intervalMembers</strong>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>Guid</td>\n<td>System identifier</td>\n</tr>\n<tr>\n<td>no</td>\n<td>String</td>\n<td>Interval identifier</td>\n</tr>\n<tr>\n<td>system</td>\n<td>String</td>\n<td>System type or category</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>Status of the interval</td>\n</tr>\n<tr>\n<td>memberNo</td>\n<td>String</td>\n<td>Member identifier</td>\n</tr>\n<tr>\n<td>memberName</td>\n<td>String</td>\n<td>Member name</td>\n</tr>\n<tr>\n<td>establishment</td>\n<td>String</td>\n<td>Establishment code or name</td>\n</tr>\n<tr>\n<td>week</td>\n<td>Integer</td>\n<td>Week number of the interval</td>\n</tr>\n<tr>\n<td>checkInWeekdayESP</td>\n<td>String</td>\n<td>Check-in weekday (localized)</td>\n</tr>\n<tr>\n<td>roomNo</td>\n<td>String</td>\n<td>Room or apartment number</td>\n</tr>\n<tr>\n<td>roomType</td>\n<td>String</td>\n<td>Room type</td>\n</tr>\n<tr>\n<td>seasonType</td>\n<td>String</td>\n<td>Season category of the interval (e.g., High, Mid, Low)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","interval"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"89b808ed-1723-4878-9f8d-b2c0c8729a72","name":"Interval","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/interval({intervalId})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"b3209af2-80b2-4ae0-83f1-6be3be86ad47\",\r\n  \"no\": \"INT-0001\",\r\n  \"system\": \"Timeshare\",\r\n  \"status\": \"Available\",\r\n  \"memberNo\": \"MEM001\",\r\n  \"memberName\": \"John Doe\",\r\n  \"establishment\": \"Hotel Las Dunas\",\r\n  \"week\": 1,\r\n  \"checkInWeekdayESP\": \"Monday\",\r\n  \"roomNo\": \"A101\",\r\n  \"roomType\": \"Double\",\r\n  \"seasonType\": \"High\"\r\n}"}],"_postman_id":"fc0a4961-8a3e-484b-a907-776630c3bf8c"},{"name":"Extend IntervalMembers","id":"ee8db39e-eb6a-47eb-b4a0-6990d23a7576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/interval({intervalId})?$expand=intervalMember","description":"<p>Represents the individual members linked to an interval, including ownership percentages and membership type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>Guid</td>\n<td>Identifier linking to the interval</td>\n</tr>\n<tr>\n<td>memberNo</td>\n<td>String</td>\n<td>Member identifier</td>\n</tr>\n<tr>\n<td>memberName</td>\n<td>String</td>\n<td>Name of the member</td>\n</tr>\n<tr>\n<td>membershipType</td>\n<td>String</td>\n<td>Type of membership (e.g., Member, Authorized)</td>\n</tr>\n<tr>\n<td>ownershipShare</td>\n<td>Decimal</td>\n<td>Ownership percentage</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"enum-values\">Enum values</h2>\n<h3 id=\"seasontype\">seasonType</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>High</td>\n<td>High season</td>\n</tr>\n<tr>\n<td>Mid</td>\n<td>Mid season</td>\n</tr>\n<tr>\n<td>Low</td>\n<td>Low season</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"membershiptype\">membershipType</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Member</td>\n<td>Full Member</td>\n</tr>\n<tr>\n<td>Authorized</td>\n<td>Authorized Member</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","interval({intervalId})"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$expand","value":"intervalMember"}],"variable":[]}},"response":[{"id":"3086a00c-48b8-426f-8cc3-046bbec76030","name":"Interval","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/interval({intervalId})?$expand=intervalMembers","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","companies({companyId})","interval({intervalId})"],"query":[{"key":"$expand","value":"intervalMembers"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"b3209af2-80b2-4ae0-83f1-6be3be86ad47\",\r\n  \"no\": \"INT-0001\",\r\n  \"system\": \"Timeshare\",\r\n  \"status\": \"Available\",\r\n  \"memberNo\": \"MEM001\",\r\n  \"memberName\": \"John Doe\",\r\n  \"establishment\": \"Hotel Las Dunas\",\r\n  \"week\": 1,\r\n  \"checkInWeekdayESP\": \"Monday\",\r\n  \"roomNo\": \"A101\",\r\n  \"roomType\": \"Double\",\r\n  \"seasonType\": \"High\",\r\n  \"intervalMembers\": [\r\n    {\r\n      \"systemId\": \"b3209af2-80b2-4ae0-83f1-6be3be86ad47\",\r\n      \"memberNo\": \"MEM001\",\r\n      \"memberName\": \"John Doe\",\r\n      \"membershipType\": \"Member\",\r\n      \"ownershipShare\": 100.0\r\n    }\r\n  ]\r\n}"}],"_postman_id":"ee8db39e-eb6a-47eb-b4a0-6990d23a7576"},{"name":"Interval Usage Entry","id":"7f49eb6d-37a1-4f54-bb6b-92420cdb7bad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/intervalUsageEntries({intervalUsageEntryId})","description":"<p>Represents the actual usage records associated with an interval entry. These entries may include room type, product and member-related usage, allowing analysis of occupancy and consumption within the timesharing model</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>GUID</td>\n<td>SystemId</td>\n</tr>\n<tr>\n<td>entryNo</td>\n<td>integer</td>\n<td>Entry No.</td>\n</tr>\n<tr>\n<td>intervalNo</td>\n<td>integer</td>\n<td>Interval No.</td>\n</tr>\n<tr>\n<td>groupOfEstablishments</td>\n<td>string</td>\n<td>Group of Resorts</td>\n</tr>\n<tr>\n<td>establishment</td>\n<td>string</td>\n<td>Establishment</td>\n</tr>\n<tr>\n<td>pending</td>\n<td>boolean</td>\n<td>Pending</td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td>date</td>\n<td>Posting Date</td>\n</tr>\n<tr>\n<td>year</td>\n<td>integer</td>\n<td>Year</td>\n</tr>\n<tr>\n<td>entryType</td>\n<td>string</td>\n<td>Entry Type</td>\n</tr>\n<tr>\n<td>transferType</td>\n<td>string</td>\n<td>Type of Transfer</td>\n</tr>\n<tr>\n<td>documentNo</td>\n<td>string</td>\n<td>Nro. Documento</td>\n</tr>\n<tr>\n<td>documentDate</td>\n<td>date</td>\n<td>Document Date</td>\n</tr>\n<tr>\n<td>bookingNo</td>\n<td>string</td>\n<td>Booking No.</td>\n</tr>\n<tr>\n<td>bookingStatus</td>\n<td>string</td>\n<td>Booking Status</td>\n</tr>\n<tr>\n<td>memberNoCambiado</td>\n<td>string</td>\n<td>Member No. Cambiado</td>\n</tr>\n<tr>\n<td>previousSwapMemberNo</td>\n<td>string</td>\n<td>Previous Member</td>\n</tr>\n<tr>\n<td>previousSwapEstablishment</td>\n<td>string</td>\n<td>Prev. Transfer Establishment</td>\n</tr>\n<tr>\n<td>previousSwapRoomNo</td>\n<td>string</td>\n<td>Prev. Transfer Room/Apto. No.</td>\n</tr>\n<tr>\n<td>previousSwapRoomType</td>\n<td>string</td>\n<td>Prev. Transfer Room Type</td>\n</tr>\n<tr>\n<td>previousSwapWeek</td>\n<td>integer</td>\n<td>Prev. Transfer Week.</td>\n</tr>\n<tr>\n<td>swapEstablishment</td>\n<td>string</td>\n<td>Transfer Establishment</td>\n</tr>\n<tr>\n<td>swapRoomNo</td>\n<td>string</td>\n<td>Transfer Room/Apto. No.</td>\n</tr>\n<tr>\n<td>swapWeek</td>\n<td>integer</td>\n<td>Transfer Week.</td>\n</tr>\n<tr>\n<td>reason</td>\n<td>string</td>\n<td>Reason</td>\n</tr>\n<tr>\n<td>points</td>\n<td>decimal</td>\n<td>Points</td>\n</tr>\n<tr>\n<td>pointsExpirationDate</td>\n<td>date</td>\n<td>Points Expiration Date</td>\n</tr>\n<tr>\n<td>remainingPoints</td>\n<td>decimal</td>\n<td>Remaining Points</td>\n</tr>\n<tr>\n<td>remainingPointsExpDate</td>\n<td>date</td>\n<td>Remaining Points Exp. Date</td>\n</tr>\n<tr>\n<td>bulkDepositEntryNo</td>\n<td>integer</td>\n<td>Bulk Deposit Entry No.</td>\n</tr>\n<tr>\n<td>exchangeCenter</td>\n<td>string</td>\n<td>Exchange Center</td>\n</tr>\n<tr>\n<td>weekDeposited</td>\n<td>integer</td>\n<td>Week Deposited</td>\n</tr>\n<tr>\n<td>depositStatus</td>\n<td>string</td>\n<td>Deposit Status</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"enum-values\">Enum values</h2>\n<h3 id=\"entrytype-from-intervalentrytypeusageesp\"><code>entryType</code> (from <code>IntervalEntryTypeUsageESP</code>)</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Booking</td>\n<td>Booking</td>\n</tr>\n<tr>\n<td>Relinquish</td>\n<td>Relinquish</td>\n</tr>\n<tr>\n<td>Ownership Change</td>\n<td>Ownership Change</td>\n</tr>\n<tr>\n<td>On Hold</td>\n<td>On Hold</td>\n</tr>\n<tr>\n<td>Transfer</td>\n<td>Transfer</td>\n</tr>\n<tr>\n<td>Points Acquisition</td>\n<td>Points Acquisition</td>\n</tr>\n<tr>\n<td>Points Usage</td>\n<td>Points Usage</td>\n</tr>\n<tr>\n<td>Exchange Deposit</td>\n<td>Exchange Deposit</td>\n</tr>\n<tr>\n<td>Grace Period</td>\n<td>Courtesy Week</td>\n</tr>\n<tr>\n<td>Transfer Cancelled</td>\n<td>Transfer Cancelled</td>\n</tr>\n<tr>\n<td>Relinquish Cancelled</td>\n<td>Relinquish Cancelled</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","intervalUsageEntries({intervalUsageEntryId})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"30c480c4-2148-4f89-a6f0-7d9e68cf0623","name":"IntervalUsageEntry","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/intervalUsageEntries({intervalUsageEntryId})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"\",\r\n  \"entryNo\": 123,\r\n  \"intervalNo\": 123,\r\n  \"groupOfEstablishments\": \"Sample\",\r\n  \"establishment\": \"Sample\",\r\n  \"pending\": true,\r\n  \"postingDate\": \"2025-01-01\",\r\n  \"year\": 123,\r\n  \"entryType\": \"Sample\",\r\n  \"transferType\": \"Sample\",\r\n  \"documentNo\": \"Sample\",\r\n  \"documentDate\": \"2025-01-01\",\r\n  \"bookingNo\": \"Sample\",\r\n  \"bookingStatus\": \"Sample\",\r\n  \"memberNoCambiado\": \"Sample\",\r\n  \"previousSwapMemberNo\": \"Sample\",\r\n  \"previousSwapEstablishment\": \"Sample\",\r\n  \"previousSwapRoomNo\": \"Sample\",\r\n  \"previousSwapRoomType\": \"Sample\",\r\n  \"previousSwapWeek\": 123,\r\n  \"swapEstablishment\": \"Sample\",\r\n  \"swapRoomNo\": \"Sample\",\r\n  \"swapWeek\": 123,\r\n  \"reason\": \"Sample\",\r\n  \"points\": 100.0,\r\n  \"pointsExpirationDate\": \"2025-01-01\",\r\n  \"remainingPoints\": 100.0,\r\n  \"remainingPointsExpDate\": \"2025-01-01\",\r\n  \"bulkDepositEntryNo\": 123,\r\n  \"exchangeCenter\": \"Sample\",\r\n  \"weekDeposited\": 123,\r\n  \"depositStatus\": \"Sample\"\r\n}"}],"_postman_id":"7f49eb6d-37a1-4f54-bb6b-92420cdb7bad"},{"name":"Member","id":"4e0d38f2-8606-4c27-a914-526003e5d875","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/members({id})","description":"<p>Represents a member (customer) registered in the TimeSharing module. Members are based on the standard Business Central Customer entity, and this API extends it with specific fields used in memberships and billing structures</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>GUID</td>\n<td>System Id</td>\n</tr>\n<tr>\n<td>no</td>\n<td>String</td>\n<td>Member No.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Name</td>\n</tr>\n<tr>\n<td>name2</td>\n<td>String</td>\n<td>Name 2</td>\n</tr>\n<tr>\n<td>userIDWebSite</td>\n<td>String</td>\n<td>Member's unique ID within the Club. This ID is also used to identify the member when accessing the website.</td>\n</tr>\n<tr>\n<td>billToCustomerNo</td>\n<td>String</td>\n<td>Bill-To Customer No</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","members({id})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"26e78842-5c97-42ca-8461-abf923ebdc15","name":"Member","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/members({id})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"6fdc5123-12ab-4c91-b872-e36b1d27e8c5\",\r\n  \"no\": \"M001\",\r\n  \"name\": \"John Smith\",\r\n  \"name2\": \"Smith Holdings\",\r\n  \"userIDWebSiteESP\": \"USR123456\",\r\n  \"billToCustomerNoESP\": \"CUST-BILL-01\"\r\n}"}],"_postman_id":"4e0d38f2-8606-4c27-a914-526003e5d875"},{"name":"Bound Action: ChangePassword","id":"a54867dd-a132-4866-8f0a-800b8fce2392","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"newPassword\": \"P@ssw0rd2025\"\r\n}","options":{"raw":{"language":"json"}}},"url":"businesscentral/companies({companyId})/members({memberId})/Microsoft.NAV.ChangePassword","description":"<p>Trigger the change of password for the specified member. This action allows the member's password to be updated securely via the API.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>newPassword</td>\n<td>String</td>\n<td>The new password value</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"path":["companies({companyId})","members({memberId})","Microsoft.NAV.ChangePassword"],"host":["businesscentral"],"query":[],"variable":[]}},"response":[{"id":"67e07578-dd09-4b84-8376-153c50404c12","name":"Bound Action: ChangePassword","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"newPassword\": \"P@ssw0rd2025\"\r\n}","options":{"raw":{"language":"json"}}},"url":"businesscentral/companies({companyId})/members({memberId})/Microsoft.NAV.ChangePassword"},"status":"No Content","code":204,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"a54867dd-a132-4866-8f0a-800b8fce2392"},{"name":"Member Balance","id":"bf8aebe5-3ae5-431f-a621-fd9f4cd11db3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/memberBalance","description":"<p>Represents a member entity with selected customer-related fields. This API exposes a minimal view focused on integration with balance details via interval entries.</p>\n<p>Retrieves the basic member information and allows expanding related interval entries.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>GUID</td>\n<td>System identifier of the member</td>\n</tr>\n<tr>\n<td>memberNo</td>\n<td>String</td>\n<td>Member No.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Member name</td>\n</tr>\n<tr>\n<td>userIDWebSiteESP</td>\n<td>String</td>\n<td>Member's unique ID within the Club. This ID is also used to identify the member when accessing the website.</td>\n</tr>\n<tr>\n<td>memberBalance</td>\n<td>Decimal</td>\n<td>Member's balance amount</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","memberBalance"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"4fe4678d-9712-406f-8aae-4fa53f6fa2de","name":"MemberBalance","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/memberBalance"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"9f25e5d2-29a0-4f75-91de-2d65f8f1b234\",\r\n  \"memberNo\": \"MBR-2025-01\",\r\n  \"name\": \"John Doe\",\r\n  \"userIdWebSite\": \"User123\",\r\n  \"memberBalance\": 800.00\r\n}\r\n"}],"_postman_id":"bf8aebe5-3ae5-431f-a621-fd9f4cd11db3"},{"name":"Expand IntervalEntries","id":"7973bb1e-0503-491f-bcb9-e393208c8a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/memberBalance({systemId})?$expand=intervalEntries","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>GUID</td>\n<td>Unique identifier of the interval entry</td>\n</tr>\n<tr>\n<td>intervalNo</td>\n<td>String</td>\n<td>Code of the interval associated with the entry</td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td>Date</td>\n<td>Posting date of the entry</td>\n</tr>\n<tr>\n<td>groupOfEstablishment</td>\n<td>String</td>\n<td>Code of the group of establishments related to the interval</td>\n</tr>\n<tr>\n<td>establishment</td>\n<td>String</td>\n<td>Code of the establishment related to the interval</td>\n</tr>\n<tr>\n<td>year</td>\n<td>Integer</td>\n<td>Year associated with the interval entry</td>\n</tr>\n<tr>\n<td>remainingAmount</td>\n<td>Decimal</td>\n<td>Remaining amount pending for the interval entry</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","companies({companyId})","memberBalance({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$expand","value":"intervalEntries"}],"variable":[]}},"response":[{"id":"540171a7-1426-47bf-a398-83d2a05c2507","name":"Expand IntervalEntries","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/companies({companyId})/memberBalance({systemId})?$expand=intervalEntries","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","companies({companyId})","memberBalance({systemId})"],"query":[{"key":"$expand","value":"intervalEntries"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"9f25e5d2-29a0-4f75-91de-2d65f8f1b234\",\r\n  \"memberNo\": \"MBR-2025-01\",\r\n  \"name\": \"John Doe\",\r\n  \"userIdWebSite\": \"User123\",\r\n  \"memberBalance\": 800.00,\r\n  \"intervalEntries\": [\r\n    {\r\n      \"systemId\": \"b93d54b7-7ddf-ec11-bb3c-000d3ac4d4b0\",\r\n      \"intervalNo\": \"INT-001\",\r\n      \"postingDate\": \"2025-01-10\",\r\n      \"groupOfEstablishment\": \"CAN001\",\r\n      \"establishment\": \"HTL001\",\r\n      \"year\": 2025,\r\n      \"remainingAmount\": 800.00\r\n    }\r\n  ]\r\n}\r\n"}],"_postman_id":"7973bb1e-0503-491f-bcb9-e393208c8a7c"},{"name":"Member Payment","id":"03065f1d-4ab9-46ab-8e6d-2f71c9588d36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}","description":"<p>Represents the payments registered for a timesharing member. Payments are associated with a specific policy and journal, and can be extended with dimension values.</p>\n<h2 id=\"methods\">Methods</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Method</th>\n<th>Return Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td>memberPayment</td>\n<td>Returns the memberPayment entity.</td>\n</tr>\n<tr>\n<td>POST</td>\n<td>memberPayment</td>\n<td>Creates a new memberPayment.</td>\n</tr>\n<tr>\n<td>PATCH</td>\n<td>memberPayment</td>\n<td>Updates an existing memberPayment.</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>None</td>\n<td>Deletes an existing memberPayment.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"properties\">Properties</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>systemId</td>\n<td>GUID</td>\n<td>System Id</td>\n</tr>\n<tr>\n<td>journalId</td>\n<td>GUID</td>\n<td>Journal Id</td>\n</tr>\n<tr>\n<td>journalName</td>\n<td>String</td>\n<td>Journal Description</td>\n</tr>\n<tr>\n<td>entryNo</td>\n<td>Integer</td>\n<td>Entry No.</td>\n</tr>\n<tr>\n<td>documentNo</td>\n<td>String</td>\n<td>Document No.</td>\n</tr>\n<tr>\n<td>postingDate</td>\n<td>Date</td>\n<td>Posting Date</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Decimal</td>\n<td>Amount</td>\n</tr>\n<tr>\n<td>memberNo</td>\n<td>String</td>\n<td>Member No.</td>\n</tr>\n<tr>\n<td>memberName</td>\n<td>String</td>\n<td>Member Name</td>\n</tr>\n<tr>\n<td>policyNo</td>\n<td>String</td>\n<td>Policy No.</td>\n</tr>\n<tr>\n<td>comment</td>\n<td>String</td>\n<td>Comment</td>\n</tr>\n<tr>\n<td>groupEstablishments</td>\n<td>String</td>\n<td>Group of Establishments</td>\n</tr>\n<tr>\n<td>intervalNo</td>\n<td>String</td>\n<td>Interval No.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"}],"variable":[]}},"response":[{"id":"759abfc8-bf65-4ade-86f1-0cf4dde086b6","name":"Member Payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"b4fc167e-d332-4e5b-a8b0-510fdfed47a1\",\r\n  \"journalId\": \"77c8a456-d72e-4657-8cf5-b5e55d8e3c87\",\r\n  \"journalName\": \"PAYMENTS 2025\",\r\n  \"entryNo\": 12456,\r\n  \"documentNo\": \"PAY-2025-1234\",\r\n  \"postingDate\": \"2025-07-20\",\r\n  \"amount\": 750.00,\r\n  \"memberNo\": \"MBR00012\",\r\n  \"memberName\": \"John Smith\",\r\n  \"policyNo\": \"POL2025-77\",\r\n  \"comment\": \"Online transfer\",\r\n  \"groupEstablishments\": \"GRP-HOT-01\",\r\n  \"intervalNo\": \"INT-2025-001\"\r\n}\r\n"}],"_postman_id":"03065f1d-4ab9-46ab-8e6d-2f71c9588d36"},{"name":"expand dimensionSetLines","id":"f008df78-c7cb-4132-8136-20231935b354","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}&$expand=dimensionSetLines","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"},{"key":"$expand","value":"dimensionSetLines"}],"variable":[]}},"response":[{"id":"24e312af-57a8-4890-ba5e-47e15e5de227","name":"expand dimensionSetLines","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}&$expand=dimensionSetLines","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"},{"key":"$expand","value":"dimensionSetLines"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"b4fc167e-d332-4e5b-a8b0-510fdfed47a1\",\r\n  ...\r\n  \"dimensionSetLines\": [\r\n    {\r\n      \"id\": \"cc1d3133-b3cf-4c62-a672-f31f7707d02a\",\r\n      \"consolidationCode\": \"ACCOUNTS\",\r\n      \"parentId\": \"b4fc167e-d332-4e5b-a8b0-510fdfed47a1\",\r\n      \"parentType\": \"Member Payment\",\r\n      \"displayName\": \"Department\",\r\n      \"valueId\": \"22a487ab-85e2-4aa9-baa3-0b1be240e655\",\r\n      \"valueCode\": \"FIN\",\r\n      \"valueConsolidationCode\": \"FINANCE\",\r\n      \"valueDisplayName\": \"Finance Department\"\r\n    }\r\n  ]\r\n}"}],"_postman_id":"f008df78-c7cb-4132-8136-20231935b354"},{"name":"Create Member Payment","id":"e60f530e-0e3f-4847-9982-d6ce6eedff2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"journalId\": \"77c8a456-d72e-4657-8cf5-b5e55d8e3c87\",\r\n  \"postingDate\": \"2025-07-20\",\r\n  \"amount\": 750.00,\r\n  \"memberNo\": \"MBR00012\",\r\n  \"policyNo\": \"POL2025-77\",\r\n  \"comment\": \"Online transfer\",\r\n  \"groupEstablishments\": \"GRP-HOT-01\",\r\n  \"intervalNo\": \"INT-2025-001\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"478e0bb6-3838-4502-88ed-77860223b0ed","name":"Create Member Payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"journalId\": \"77c8a456-d72e-4657-8cf5-b5e55d8e3c87\",\r\n  \"postingDate\": \"2025-07-20\",\r\n  \"amount\": 750.00,\r\n  \"memberNo\": \"MBR00012\",\r\n  \"policyNo\": \"POL2025-77\",\r\n  \"comment\": \"Online transfer\",\r\n  \"groupEstablishments\": \"GRP-HOT-01\",\r\n  \"intervalNo\": \"INT-2025-001\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"Returns the created memberPayment"}],"_postman_id":"e60f530e-0e3f-4847-9982-d6ce6eedff2e"},{"name":"Update Member Payment","id":"73c8ec95-dad8-41b8-952e-696f044efe82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 800.00,\r\n  \"comment\": \"Updated via API\",\r\n  \"intervalNo\": \"INT-2025-002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"dd43e9e8-c45a-419b-8cb5-461f52078736","name":"Update Member Payment","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"amount\": 800.00,\r\n  \"comment\": \"Updated via API\",\r\n  \"intervalNo\": \"INT-2025-002\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"Returns the updated memberPayment"}],"_postman_id":"73c8ec95-dad8-41b8-952e-696f044efe82"},{"name":"Delete Member Payment","id":"520af138-b995-4cea-8bd9-eaf0a1f1a41e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[]},"isInherited":false},"method":"DELETE","header":[{"key":"If-Match","value":"Required","type":"text"}],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}","urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"}],"variable":[]}},"response":[{"id":"87b12902-bf4e-4dae-8662-5b3f0da8fba9","name":"Delete Member Payment","originalRequest":{"method":"DELETE","header":[{"key":"If-Match","value":"Required","type":"text"}],"url":{"raw":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/memberPayments({systemId})?$filter=journalId eq {{jnlBatchID}}","protocol":"https","host":["api","businesscentral","dynamics","com"],"path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","memberPayments({systemId})"],"query":[{"key":"$filter","value":"journalId eq {{jnlBatchID}}"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"520af138-b995-4cea-8bd9-eaf0a1f1a41e"},{"name":"Web Payment Journal","id":"1b0563cc-67f0-4446-89d2-94e6d8b84af0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/webPaymentJournals({id})","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","v2.0","companies({companyId})","webPaymentJournals({id})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"cc5e9eb4-902a-4f77-bf3f-b5212ccb4827","name":"Web Payment Journal","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/v2.0/companies({companyId})/webPaymentJournals({id})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"journalBatchId\": \"00000000-0000-0000-0000-000000000000\",\r\n  \"establishment\": \"establishment sample\",\r\n  \"jnlTemplWebPayments\": \"jnlTemplWebPayments sample\",\r\n  \"jnlBatchWebPayments\": \"jnlBatchWebPayments sample\"\r\n}"}],"_postman_id":"1b0563cc-67f0-4446-89d2-94e6d8b84af0"},{"name":"Booking fee production","id":"cdfe5b19-1fb7-4f59-9c00-492cb0ed633a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/timesharing/v1.0/companies({companyId})/bookingFeeProductions({systemId})","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}},"urlObject":{"protocol":"https","path":["v2.0","{tenant}","{environmentName}","api","noray","timesharing","v1.0","companies({companyId})","bookingFeeProductions({systemId})"],"host":["api","businesscentral","dynamics","com"],"query":[],"variable":[]}},"response":[{"id":"284b1592-5874-42b5-abd1-da5adce25690","name":"Booking fee production","originalRequest":{"method":"GET","header":[],"url":"https://api.businesscentral.dynamics.com/v2.0/{tenant}/{environmentName}/api/noray/timesharing/v1.0/companies({companyId})/bookingFeeProductions({systemId})"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n  \"systemId\": \"b3209af2-80b2-4ae0-83f1-6be3be86ad47\",\r\n  \"companyName\": \"Example Company\",\r\n  \"intervalNo\": \"2025-08\",\r\n  \"bookingNo\": 0,\r\n  \"postingDate\": \"2025-08-26\",\r\n  \"hotelItemNo\": 0,\r\n  \"amountWithTax\": 0.0,\r\n  \"amountWithoutTax\": 0.0,\r\n  \"vat\": 0.0\r\n}"}],"_postman_id":"cdfe5b19-1fb7-4f59-9c00-492cb0ed633a"}],"id":"369fe001-fd87-46ac-95d6-58a7033a5cd3","_postman_id":"369fe001-fd87-46ac-95d6-58a7033a5cd3","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"id":"4ed8922d-2876-4335-abc6-1c2d41dd698e","_postman_id":"4ed8922d-2876-4335-abc6-1c2d41dd698e","description":"","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]},"isInherited":true,"source":{"_postman_id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","id":"8e0ea5d7-6977-4953-beea-1a689b0c2d9e","name":"Noray API","type":"collection"}}}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"clientId","value":"{clientID}"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"scope","value":"<scope>"},{"key":"clientSecret","value":"<client-secret>"},{"key":"grant_type","value":"<grant_type>"},{"key":"authUrl","value":"<auth-url>"},{"key":"client_authentication","value":"<client_authentication>"}]}},"event":[{"listen":"prerequest","script":{"id":"f1eda230-cda4-43dd-9420-c932289159a3","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"e420bc2c-028e-4378-af8e-5149d1c08096","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.businesscentral.dynamics.com/v2.0"},{"key":"tenant","value":"{tenant}"},{"key":"environmentName","value":"{environmentName}"},{"key":"apiPublisher","value":"noray"},{"key":"companyId","value":"{companyId}"},{"key":"clientID","value":"{clientID}"},{"key":"clientSecret","value":"{clientSecret}"}]}